From 364918d056a900116f1d48b47e7739a2b36fa0f5 Mon Sep 17 00:00:00 2001 From: bferturk Date: Sat, 2 Jul 2016 11:10:07 +0300 Subject: [PATCH] wine add repo --- hardware/emulator/component.xml | 3 + hardware/emulator/wine/actions.py | 79 + .../emulator/wine/files/menu/Wine.directory | 3 + .../emulator/wine/files/menu/taskmgr.desktop | 10 + .../wine/files/menu/uninstaller.desktop | 10 + .../wine/files/menu/wine-mime-msi.desktop | 7 + .../wine/files/menu/wine-oleview.desktop | 11 + .../wine/files/menu/wine-winemine.desktop | 10 + .../wine/files/menu/wine-winhelp.desktop | 11 + hardware/emulator/wine/files/menu/wine.menu | 13 + .../emulator/wine/files/menu/winecfg.desktop | 10 + .../emulator/wine/files/menu/winefile.desktop | 10 + .../wine/files/menu/winetricks.desktop | 12 + hardware/emulator/wine/files/winetricks | 19085 ++ hardware/emulator/wine/files/wisotool | 9293 + hardware/emulator/wine/pspec.xml | 262 + hardware/emulator/wine/translations.xml | 20 + pisi-index.xml | 171735 ++++++++------- pisi-index.xml.sha1sum | 2 +- pisi-index.xml.xz | Bin 385556 -> 387320 bytes pisi-index.xml.xz.sha1sum | 2 +- 21 files changed, 114852 insertions(+), 85736 deletions(-) create mode 100644 hardware/emulator/component.xml create mode 100644 hardware/emulator/wine/actions.py create mode 100644 hardware/emulator/wine/files/menu/Wine.directory create mode 100644 hardware/emulator/wine/files/menu/taskmgr.desktop create mode 100644 hardware/emulator/wine/files/menu/uninstaller.desktop create mode 100644 hardware/emulator/wine/files/menu/wine-mime-msi.desktop create mode 100755 hardware/emulator/wine/files/menu/wine-oleview.desktop create mode 100644 hardware/emulator/wine/files/menu/wine-winemine.desktop create mode 100755 hardware/emulator/wine/files/menu/wine-winhelp.desktop create mode 100644 hardware/emulator/wine/files/menu/wine.menu create mode 100644 hardware/emulator/wine/files/menu/winecfg.desktop create mode 100644 hardware/emulator/wine/files/menu/winefile.desktop create mode 100755 hardware/emulator/wine/files/menu/winetricks.desktop create mode 100644 hardware/emulator/wine/files/winetricks create mode 100644 hardware/emulator/wine/files/wisotool create mode 100644 hardware/emulator/wine/pspec.xml create mode 100644 hardware/emulator/wine/translations.xml diff --git a/hardware/emulator/component.xml b/hardware/emulator/component.xml new file mode 100644 index 0000000000..38e7d938d7 --- /dev/null +++ b/hardware/emulator/component.xml @@ -0,0 +1,3 @@ + + hardware.emulator + diff --git a/hardware/emulator/wine/actions.py b/hardware/emulator/wine/actions.py new file mode 100644 index 0000000000..b249ada8e5 --- /dev/null +++ b/hardware/emulator/wine/actions.py @@ -0,0 +1,79 @@ +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +def setup(): + shelltools.system("install=wine.keyring") + # For 32bit machines: + # * It get compiled with the normal options below. The emul32 are ignored + # on 32bit machines. Nothing is added to options variable. + # + # For 64bit machines: + # * First we compile for 64bit with the option --enable-win64. These build + # files are stored in the normal "work" dir + # * In the second run (for emul32 buildType), the 32bit part is compiled + # with the spesific libdir and the --with-wine64 options that is pointing + # to the 64bit files that was compiled in the first step (files in the work) + # + # More info can be obtained here: http://wiki.winehq.org/Wine64 + # shelltools.export("CPPFLAGS", "-D_FORTIFY_SOURCE=2 -D_FORTIFY_SOURCE=0") + + shelltools.system("make -C ./wine-staging-%s/patches DESTDIR=$(pwd) install" %get.srcVERSION()) + pisitools.flags.add("-fno-omit-frame-pointer") + autotools.autoreconf("-vif") + options = "--without-capi \ + --with-curses \ + --without-hal \ + --without-gstreamer \ + --with-dbus \ + --with-opengl \ + --with-alsa \ + --with-x \ + --with-xattr \ + --prefix=/usr" + + if get.buildTYPE() == "emul32": + shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") + options += " --with-wine64=%s/work/wine-%s/build-wine \ + --libdir=/usr/lib32 \ + " % (get.pkgDIR(), get.srcVERSION()) + + shelltools.system("mkdir build-wine") + shelltools.cd("build-wine") + shelltools.system(". ../configure %s" %options) + + elif get.ARCH() == "x86_64": + options += " --enable-win64 \ + --libdir=/usr/lib \ + " + shelltools.system("mkdir build-wine") + shelltools.cd("build-wine") + shelltools.system(". ../configure %s" %options) + + + +def build(): + shelltools.cd("build-wine") + autotools.make() + +def install(): + # We need especially specify libdir and dlldir prefixes. Otherwise the + # 32bit parts overwrite the 64bit files under /usr/lib + + shelltools.cd("build-wine") + + if get.buildTYPE() == "emul32": + autotools.install("UPDATE_DESKTOP_DATABASE=/bin/true libdir=%s/usr/lib32 dlldir=%s/usr/lib32/wine" % (get.installDIR(), get.installDIR())) + else: + autotools.install("UPDATE_DESKTOP_DATABASE=/bin/true libdir=%s/usr/lib dlldir=%s/usr/lib/wine" % (get.installDIR(), get.installDIR())) + + shelltools.cd("..") + + pisitools.dodoc("ANNOUNCE", "AUTHORS", "COPYING.LIB", "LICENSE*", "README", "documentation/README.*") + diff --git a/hardware/emulator/wine/files/menu/Wine.directory b/hardware/emulator/wine/files/menu/Wine.directory new file mode 100644 index 0000000000..d050e19208 --- /dev/null +++ b/hardware/emulator/wine/files/menu/Wine.directory @@ -0,0 +1,3 @@ +[Desktop Entry] +Icon=wine +Name=Wine diff --git a/hardware/emulator/wine/files/menu/taskmgr.desktop b/hardware/emulator/wine/files/menu/taskmgr.desktop new file mode 100644 index 0000000000..4b6d002c85 --- /dev/null +++ b/hardware/emulator/wine/files/menu/taskmgr.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Wine Task Manager +Exec=wine taskmgr +Icon=utilities-system-monitor +Terminal=false +Type=Application +Categories=Application;X-Wine; + +Name[tr]=Wine Görev Yöneticisi diff --git a/hardware/emulator/wine/files/menu/uninstaller.desktop b/hardware/emulator/wine/files/menu/uninstaller.desktop new file mode 100644 index 0000000000..313b19e27f --- /dev/null +++ b/hardware/emulator/wine/files/menu/uninstaller.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Add/Remove Windows Programs +Exec=wine uninstaller +Icon=user-trash +Terminal=false +Type=Application +Categories=Application;X-Wine; + +Name[tr]=Windows Programlarını Ekle/Kaldır diff --git a/hardware/emulator/wine/files/menu/wine-mime-msi.desktop b/hardware/emulator/wine/files/menu/wine-mime-msi.desktop new file mode 100644 index 0000000000..60e7bef92e --- /dev/null +++ b/hardware/emulator/wine/files/menu/wine-mime-msi.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=Windows Installer File +Name[ar]=مثبت حزم واين +Exec=wine %f +MimeType=application/x-ole-storage;text/mspg-legacyinfo; +Hidden=true diff --git a/hardware/emulator/wine/files/menu/wine-oleview.desktop b/hardware/emulator/wine/files/menu/wine-oleview.desktop new file mode 100755 index 0000000000..aa40393fb7 --- /dev/null +++ b/hardware/emulator/wine/files/menu/wine-oleview.desktop @@ -0,0 +1,11 @@ +#!/usr/bin/env xdg-open +[Desktop Entry] +Name=Wine OLE View +Comment=Windows OLE View +Name[ar]=عارض العناصر +Comment[ar]=لعرض العناصر البيئية في واين +Exec=wine oleview +Icon=wine +Terminal=false +Type=Application +Categories=X-Wine; diff --git a/hardware/emulator/wine/files/menu/wine-winemine.desktop b/hardware/emulator/wine/files/menu/wine-winemine.desktop new file mode 100644 index 0000000000..a7816de770 --- /dev/null +++ b/hardware/emulator/wine/files/menu/wine-winemine.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Name=WineMine +Comment=Wine Minesweeper +Name[ar]=كانسة ألغام واين +Comment[ar]=لعبة كانسة ألغام واين +Exec=winemine +Icon=winemine +Terminal=false +Type=Application +Categories=Game;LogicGame; diff --git a/hardware/emulator/wine/files/menu/wine-winhelp.desktop b/hardware/emulator/wine/files/menu/wine-winhelp.desktop new file mode 100755 index 0000000000..6463ff72c0 --- /dev/null +++ b/hardware/emulator/wine/files/menu/wine-winhelp.desktop @@ -0,0 +1,11 @@ +#!/usr/bin/env xdg-open +[Desktop Entry] +Name=Wine Help +Comment=Windows Help Browser +Name[ar]=أداة المساعدة في واين +Comment[ar]=استعراض ملفات المساعدة بتنسيقات وندوز +Exec=wine winhlp32 +Icon=winhelp +Terminal=false +Type=Application +Categories=X-Wine; diff --git a/hardware/emulator/wine/files/menu/wine.menu b/hardware/emulator/wine/files/menu/wine.menu new file mode 100644 index 0000000000..5fdb60fc47 --- /dev/null +++ b/hardware/emulator/wine/files/menu/wine.menu @@ -0,0 +1,13 @@ + + + Applications + + wine-wine + Wine.directory + + X-Wine + + + diff --git a/hardware/emulator/wine/files/menu/winecfg.desktop b/hardware/emulator/wine/files/menu/winecfg.desktop new file mode 100644 index 0000000000..acffaab80c --- /dev/null +++ b/hardware/emulator/wine/files/menu/winecfg.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Wine Configuration +Exec=winecfg +Icon=configure +Terminal=false +Type=Application +Categories=Application;X-Wine; + +Name[tr]=Wine Ayarları diff --git a/hardware/emulator/wine/files/menu/winefile.desktop b/hardware/emulator/wine/files/menu/winefile.desktop new file mode 100644 index 0000000000..b793c62b18 --- /dev/null +++ b/hardware/emulator/wine/files/menu/winefile.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Wine File Manager +Exec=winefile +Icon=system-file-manager +Terminal=false +Type=Application +Categories=Application;X-Wine; + +Name[tr]=Wine Dosya Yöneticisi diff --git a/hardware/emulator/wine/files/menu/winetricks.desktop b/hardware/emulator/wine/files/menu/winetricks.desktop new file mode 100755 index 0000000000..731829fbc1 --- /dev/null +++ b/hardware/emulator/wine/files/menu/winetricks.desktop @@ -0,0 +1,12 @@ +#!/usr/bin/env xdg-open + +[Desktop Entry] +Name=Winetricks +X-GNOME-FullName=Winetricks +Comment=Wine +Exec=/usr/bin/winetricks +Terminal=false +Type=Application +StartupNotify=false +Icon=wine +Categories=System diff --git a/hardware/emulator/wine/files/winetricks b/hardware/emulator/wine/files/winetricks new file mode 100644 index 0000000000..fd9005f124 --- /dev/null +++ b/hardware/emulator/wine/files/winetricks @@ -0,0 +1,19085 @@ +#!/bin/sh + +# Name of this version of winetricks (YYYYMMDD) +# (This doesn't change often, use the sha1sum of the file when reporting problems) +WINETRICKS_VERSION=20160329 + +# This is a utf-8 file +# You should see an o with two dots over it here [ö] +# You should see a micro (u with a tail) here [µ] +# You should see a trademark symbol here [™] + +#-------------------------------------------------------------------- +# +# Winetricks is a package manager for win32 dlls and applications on posix. +# Features: +# - Consists of a single shell script - no installation required +# - Downloads packages automatically from original trusted sources +# - Points out and works around known wine bugs automatically +# - Both commandline and GUI operation +# - Can install many packages in silent (unattended) mode +# - Multiplatform; written for Linux, but supports MacOSX and Cygwin, too +# +# Uses the following non-Posix system tools: +# - wine is used to execute win32 apps except on cygwin. +# - cabextract, unrar, unzip, and 7z are needed by some verbs. +# - aria2c, wget, or curl is needed for downloading. +# - sha1sum or openssl is needed for verifying downloads. +# - zenity is needed by the GUI, though it can limp along somewhat with kdialog. +# - xdg-open (if present) or open (for Mac OSX) is used to open download pages +# for the user when downloads cannot be fully automated. +# - sudo is used to mount .iso images if the user cached them with -k option. +# - perl is used to munge steam config files +# On ubuntu, the following lines can be used to install all the prereqs: +# sudo add-apt-repository ppa:ubuntu-wine/ppa +# sudo apt-get update +# sudo apt-get install cabextract p7zip unrar unzip wget wine1.7 zenity +# +# See http://winetricks.org for documentation and tutorials, including +# how to contribute changes to winetricks. +# +#-------------------------------------------------------------------- +# +# Copyright +# Copyright (C) 2007-2014 Dan Kegel +# Copyright (C) 2008-2016 Austin English +# Copyright (C) 2010-2011 Phil Blankenship +# Copyright (C) 2010-2015 Shannon VanWagner +# Copyright (C) 2010 Belhorma Bendebiche +# Copyright (C) 2010 Eleazar Galano +# Copyright (C) 2010 Travis Athougies +# Copyright (C) 2010 Andrew Nguyen +# Copyright (C) 2010 Detlef Riekenberg +# Copyright (C) 2010 Maarten Lankhorst +# Copyright (C) 2010 Rico Schüller +# Copyright (C) 2011 Scott Jackson +# Copyright (C) 2011 Trevor Johnson +# Copyright (C) 2011 Franco Junio +# Copyright (C) 2011 Craig Sanders +# Copyright (C) 2011 Matthew Bauer +# Copyright (C) 2011 Giuseppe Dia +# Copyright (C) 2011 Łukasz Wojniłowicz +# Copyright (C) 2011 Matthew Bozarth +# Copyright (C) 2013-2014 Andrey Gusev +# Copyright (C) 2013-2015 Hillwood Yang +# Copyright (C) 2013,2016 André Hentschel +# +# License +# This program 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. +# 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 Lesser General Public License for more details. +# You should have received a copy of the GNU Lesser General Public +# along with this program. If not, see . +# +#-------------------------------------------------------------------- +# Coding standards: +# +# Portability: +# - Portability matters, as this script is run on many operating systems +# - No bash, zsh, or csh extensions; only use features from +# the Posix standard shell and utilities; see +# http://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html +# - 'checkbashisms -p -x winetricks' should show no warnings (per Debian policy) +# - Prefer classic sh idioms as described in e.g. +# "Portable Shell Programming" by Bruce Blinn, ISBN: 0-13-451494-7 +# - If there is no universally available program for a needed function, +# support the two most frequently available programs. +# e.g. fall back to wget if curl is not available; likewise, support +# both sha1sum and openssl. +# - When using unix commands like cp, put options before filenames so it will +# work on systems like MacOSX. e.g. "rm -f foo.dat", not "rm foo.dat -f" +# +# Formatting: +# - Your terminal and editor must be configured for utf-8 +# If you do not see an o with two dots over it here [ö], stop! +# - Do not use tabs in this file or any verbs. +# - Indent 4 spaces. +# - Try to keep line length below 80 (makes printing easier) +# - Open curly braces ('{') and 'then' at beginning of line, +# close curlies ('}') and 'fi' should line up with the matching { or if, +# cases aligned with 'case' and 'esac'. For instance, +# +# if test "$FOO" = "bar" +# then +# echo "FOO is bar" +# fi +# case "$FOO" of +# bar) echo "FOO is still bar" ;; +# esac +# +# Commenting: +# - Comments should explain intent in English +# - Keep functions short and well named to reduce need for comments +# +# Naming: +# Public things defined by this script, for use by verbs: +# - Variables have uppercase names starting with W_ +# - Functions have lowercase names starting with w_ +# +# Private things internal to this script, not for use by verbs: +# - Local variables have lowercase names starting with uppercase _W_ +# - Global variables have uppercase names starting with WINETRICKS_ +# - Functions have lowercase names starting with winetricks_ +# FIXME: A few verbs still use winetricks-private functions or variables. +# +# Internationalization / localization: +# - Important or frequently used message should be internationalized +# so translations can be easily added. For example: +# case $LANG in +# de*) echo "Das ist die deutsche Meldung" ;; +# *) echo "This is the English message" ;; +# esac +# +#-------------------------------------------------------------------- + +XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}" +XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}" + +W_PREFIXES_ROOT="${WINE_PREFIXES:-$XDG_DATA_HOME/wineprefixes}" + +# For temp files before $WINEPREFIX is available: +if [ -x "`which mktemp 2>/dev/null`" ] +then + W_TMP_EARLY="`mktemp -d "${TMPDIR:-/tmp}/winetricks.XXXXXXXX"`" + W_TMP_EARLY_CLEAN=1 +elif [ -w "$TMPDIR" ] +then + W_TMP_EARLY="$TMPDIR" +else + W_TMP_EARLY="/tmp" +fi + +#---- Public Functions ---- + +# Ask permission to continue +w_askpermission() +{ + echo "------------------------------------------------------" + echo "$@" + echo "------------------------------------------------------" + + if test $W_OPT_UNATTENDED + then + _W_timeout="--timeout 5" + fi + + case $WINETRICKS_GUI in + zenity) $WINETRICKS_GUI $_W_timeout --question --title=winetricks --text="`echo $@ | sed 's,\\\\,\\\\\\\\,g'`" --no-wrap;; + kdialog) $WINETRICKS_GUI --title winetricks --warningcontinuecancel "$@" ;; + none) printf %s "Press Y or N, then Enter: " ; read response ; test "$response" = Y || test "$response" = y;; + esac + + if test $? -ne 0 + then + w_die "Operation cancelled, quitting." + exec false + fi + + unset _W_timeout +} + +# Display info message. Time out quickly if user doesn't click. +w_info() +{ + echo "------------------------------------------------------" + echo "$@" + echo "------------------------------------------------------" + + _W_timeout="--timeout 3" + + case $WINETRICKS_GUI in + zenity) $WINETRICKS_GUI $_W_timeout --info --title=winetricks --text="`echo $@ | sed 's,\\\\,\\\\\\\\,g'`" --no-wrap;; + kdialog) $WINETRICKS_GUI --title winetricks --msgbox "$@" ;; + none) ;; + esac + + unset _W_timeout +} + +# Display warning message to stderr (since it is called inside redirected code) +w_warn() +{ + echo "------------------------------------------------------" >&2 + echo "$@" >&2 + echo "------------------------------------------------------" >&2 + + if test $W_OPT_UNATTENDED + then + _W_timeout="--timeout 5" + fi + + case $WINETRICKS_GUI in + zenity) $WINETRICKS_GUI $_W_timeout --error --title=winetricks --text="`echo $@ | sed 's,\\\\,\\\\\\\\,g'`";; + kdialog) $WINETRICKS_GUI --title winetricks --error "$@" ;; + none) ;; + esac + + unset _W_timeout +} + +# Display warning message to stderr (since it is called inside redirected code) +# And give gui user option to cancel (for when used in a loop) +# If user cancels, exit status is 1 +w_warn_cancel() +{ + echo "------------------------------------------------------" >&2 + echo "$@" >&2 + echo "------------------------------------------------------" >&2 + + if test $W_OPT_UNATTENDED + then + _W_timeout="--timeout 5" + fi + + # Zenity has no cancel button, but will set status to 1 if you click the go-away X + case $WINETRICKS_GUI in + zenity) $WINETRICKS_GUI $_W_timeout --error --title=winetricks --text="`echo $@ | sed 's,\\\\,\\\\\\\\,g'`";; + kdialog) $WINETRICKS_GUI --title winetricks --warningcontinuecancel "$@" ;; + none) ;; + esac + + # can't unset, it clears status +} + +# Display fatal error message and terminate script +w_die() +{ + w_warn "$@" + + exit 1 +} + +# Kill all instances of a process in a safe way (Solaris killall kills _everything_) +w_killall() +{ + kill -s KILL `pgrep $1` +} + +# Execute with error checking +# Put this in front of any command that might fail +w_try() +{ + # "VAR=foo w_try cmd" fails to put VAR in the environment + # with some versions of bash if w_try is a shell function?! + # This is a problem when trying to pass environment variables to e.g. wine. + # Adding an explicit export here works around it, so add any we use. + export WINEDLLOVERRIDES + printf '%s\n' "Executing $*" + + # On Vista, we need to jump through a few hoops to run commands in cygwin. + # First, .exe's need to have the executable bit set. + # Second, only cmd can run setup programs (presumably for security). + # If $1 ends in .exe, we know we're running on real windows, otherwise + # $1 would be 'wine'. + case "$1" in + *.exe) + chmod +x "$1" || true # don't care if it fails + cmd /c "$@" + ;; + *) + "$@" + ;; + esac + status=$? + if test $status -ne 0 + then + w_die "Note: command '$@' returned status $status. Aborting." + fi +} + +w_try_7z() +{ + # $1 - directory to extract to + # $2 - file to extract + # Not always installed, use Windows 7-zip as a fallback: + if test -x "`which 7z 2>/dev/null`" + then + w_try 7z x "$2" -o"$1" + else + w_warn "Cannot find 7z. Using Windows 7-zip instead. (You can avoid this by installing 7z, e.g. 'sudo apt-get install p7zip-full' or 'sudo yum install p7zip p7zip-plugins')." + WINETRICKS_OPT_SHAREDPREFIX=1 w_call 7zip + # errors out if there is a space between -o and path + w_try "$WINE" "$W_PROGRAMS_X86_WIN\\7-Zip\\7z.exe" x "`w_pathconv -w $2`" -o"`w_pathconv -w $1`" + fi +} + +w_try_cabextract() +{ + # Not always installed, but shouldn't be fatal unless it's being used + if test ! -x "`which cabextract 2>/dev/null`" + then + w_die "Cannot find cabextract. Please install it (e.g. 'sudo apt-get install cabextract' or 'sudo yum install cabextract')." + fi + + w_try cabextract -q "$@" +} + +w_try_msiexec64() +{ + if test "$W_ARCH" != "win64" + then + w_die "bug: 64-bit msiexec called from a $W_ARCH prefix." + fi + + w_try "$WINE" start /wait "$W_SYSTEM64_DLLS_WIN32/msiexec.exe" $W_UNATTENDED_SLASH_Q "$@" +} + +w_try_regedit() +{ + # on windows, doesn't work without cmd /c + case "$OS" in + "Windows_NT") cmdc="cmd /c";; + *) unset cmdc ;; + esac + + w_try winetricks_early_wine $cmdc regedit $W_UNATTENDED_SLASH_S "$@" +} + +w_try_regsvr() +{ + w_try "$WINE" regsvr32 $W_UNATTENDED_SLASH_S $@ +} + +w_try_unrar() +{ + # $1 - zipfile to extract (keeping internal paths, in cwd) + + # Not always installed, use Windows 7-zip as a fallback: + if test -x "`which unrar 2>/dev/null`" + then + w_try unrar x "$@" + else + w_warn "Cannot find unrar. Using Windows 7-zip instead. (You can avoid this by installing unrar, e.g. 'sudo apt-get install unrar' or 'sudo yum install unrar')." + WINETRICKS_OPT_SHAREDPREFIX=1 w_call 7zip + w_try "$WINE" "$W_PROGRAMS_X86_WIN\\7-Zip\\7z.exe" x "`w_pathconv -w $1`" + fi +} + +w_try_unzip() +{ + # $1 - directory to extract to + # $2 - zipfile to extract + # $3 .. $n - files to extract from the archive + + destdir="$1" + zipfile="$2" + shift 2 + + # Not always installed, use Windows 7-zip as a fallback: + if test -x "`which unzip 2>/dev/null`" + then + # FreeBSD ships unzip, but it doesn't support self compressed executables + # If it fails ,fall back to 7-zip: + unzip -o -q -d"$destdir" "$zipfile" "$@" + ret=$? + case $ret in + 0) return ;; + 1|*) w_warn "Unzip failed, trying Windows 7-zip instead." ;; + esac + else + w_warn "Cannot find unzip. Using Windows 7-zip instead. (You can avoid this by installing unzip, e.g. 'sudo apt-get install unzip' or 'sudo yum install unzip')." + fi + + WINETRICKS_OPT_SHAREDPREFIX=1 w_call 7zip + # errors out if there is a space between -o and path + w_try "$WINE" "$W_PROGRAMS_X86_WIN\\7-Zip\\7z.exe" x "`w_pathconv -w $zipfile`" -o"`w_pathconv -w $destdir`" "$@" +} + +w_read_key() +{ + if test ! "$W_OPT_UNATTENDED" + then + W_KEY=dummy_to_make_autohotkey_happy + return 0 + fi + + mkdir -p "$W_CACHE/$W_PACKAGE" + + # backwards compatible location + # Auth doesn't belong in cache, since restoring it requires user input + _W_keyfile="$W_CACHE/$W_PACKAGE/key.txt" + if ! test -f "$_W_keyfile" + then + _W_keyfile="$WINETRICKS_AUTH/$W_PACKAGE/key.txt" + fi + if ! test -f "$_W_keyfile" + then + # read key from user + case $LANG in + da*) _W_keymsg="Angiv venligst registrerings-nøglen for pakken '$_PACKAGE'" + _W_nokeymsg="Ingen nøgle angivet" + ;; + de*) _W_keymsg="Bitte einen Key für Paket '$W_PACKAGE' eingeben" + _W_nokeymsg="Keinen Key eingegeben?" + ;; + pl*) _W_keymsg="Proszę podać klucz dla programu '$W_PACKAGE'" + _W_nokeymsg="Nie podano klucza" + ;; + ru*) _W_keymsg="Пожалуйста, введите ключ для приложения '$W_PACKAGE'" + _W_nokeymsg="Ключ не введён" + ;; + uk*) _W_keymsg="Будь ласка, введіть ключ для додатка '$W_PACKAGE'" + _W_nokeymsg="Ключ не надано" + ;; + zh_CN*) _W_keymsg="按任意键为 '$W_PACKAGE'" + _W_nokeymsg="No key given" + ;; + zh_TW*|zh_HK*) _W_keymsg="按任意鍵為 '$W_PACKAGE'" + _W_nokeymsg="No key given" + ;; + *) _W_keymsg="Please enter the key for app '$W_PACKAGE'" + _W_nokeymsg="No key given" + ;; + esac + case $WINETRICKS_GUI in + *zenity) W_KEY=`zenity --entry --text "$_W_keymsg"` ;; + *kdialog) W_KEY=`kdialog --inputbox "$_W_keymsg"` ;; + *xmessage) w_die "sorry, can't read key from gui with xmessage" ;; + none) printf %s "$_W_keymsg": ; read W_KEY ;; + esac + if test "$W_KEY" = "" + then + w_die "$_W_nokeymsg" + fi + echo "$W_KEY" > "$_W_keyfile" + fi + W_RAW_KEY=`cat "$_W_keyfile"` + W_KEY=`echo $W_RAW_KEY | tr -d '[:blank:][=-=]'` + unset _W_keyfile _W_keymsg _W_nokeymsg +} + +# Convert a Windows path to a Unix path quickly. +# $1 is an absolute Windows path starting with c:\ or C:/ +# with no funny business, so we can use the simplest possible +# algorithm. +winetricks_wintounix() +{ + _W_winp_="$1" + # Remove drive letter and colon + _W_winp="${_W_winp_#??}" + # Prepend the location of drive c + printf %s "$WINEPREFIX"/dosdevices/c: + # Change backslashes to slashes + echo $_W_winp | sed 's,\\,/,g' +} + +# Convert between Unix path and Windows path +# Usage is lowest common denominator of cygpath/winepath +# so -u to convert to unix, and -w to convert to windows +w_pathconv() +{ + case "$OS" in + "Windows_NT") + # for some reason, cygpath turns some spaces into newlines?! + cygpath "$@" | tr '\012' '\040' | sed 's/ $//' + ;; + *) + case "$@" in + -u?c:\\*|-u?C:\\*|-u?c:/*|-u?C:/*) winetricks_wintounix "$2" ;; + *) winetricks_early_wine winepath "$@" ;; + esac + ;; + esac +} + +# Expand an environment variable and print it to stdout +w_expand_env() +{ + winetricks_early_wine cmd.exe /c echo "%$1%" +} + +# get sha1sum string and set $_W_gotsum to it +w_get_sha1sum() +{ + local _W_file="$1" + _W_gotsum=`$WINETRICKS_SHA1SUM < "$_W_file" | sed 's/(stdin)= //;s/ .*//'` +} + +# verify an sha1sum +w_verify_sha1sum() +{ + _W_vs_wantsum=$1 + _W_vs_file=$2 + + w_get_sha1sum "$_W_vs_file" + if [ "$_W_gotsum"x != "$_W_vs_wantsum"x ] + then + w_die "sha1sum mismatch! Rename $_W_vs_file and try again." + fi + unset _W_vs_wantsum _W_vs_file _W_gotsum +} + +# wget outputs progress messages that look like this: +# 0K .......... .......... .......... .......... .......... 0% 823K 40s +# This function replaces each such line with the pair of lines +# 0% +# # Downloading... 823K (40s) +# It uses minimal buffering, so each line is output immediately +# and the user can watch progress as it happens. + +winetricks_parse_wget_progress() +{ + # Parse a percentage, a size, and a time into $1, $2 and $3 + # then use them to create the output line. + perl -p -e \ + '$| = 1; s/^.* +([0-9]+%) +([0-9,.]+[GMKB]) +([0-9hms,.]+).*$/\1\n# Downloading... \2 (\3)/' +} + +# Execute wget, and if in gui mode, also show a graphical progress bar +winetricks_wget_progress() +{ + case $WINETRICKS_GUI in + zenity) + # Usa a subshell so if the user clicks 'Cancel', + # the --auto-kill kills the subshell, not the current shell + ( + ${torify} wget "$@" 2>&1 | + winetricks_parse_wget_progress | \ + $WINETRICKS_GUI --progress --width 400 --title="$_W_file" --auto-kill --auto-close + ) + err=$? + if test $err -gt 128 + then + # 129 is 'killed by SIGHUP' + # Sadly, --auto-kill only applies to parent process, + # which was the subshell, not all the elements of the pipeline... + # have to go find and kill the wget. + # If we ran wget in the background, we could kill it more directly, perhaps... + if pid=`ps augxw | grep ."$_W_file" | grep -v grep | awk '{print $2}'` + then + echo User aborted download, killing wget + kill $pid + fi + fi + return $err + ;; + *) ${torify} wget "$@" ;; + esac +} + +w_dotnet_verify() +{ + case $1 in + dotnet11) version="1.1" ;; + dotnet11sp1) version="1.1 SP1" ;; + dotnet20) version="2.0" ;; + dotnet20sp1) version="2.0 SP1" ;; + dotnet20sp2) version="2.0 SP2" ;; + dotnet30) version="3.0" ;; + dotnet30sp1) version="3.0 SP1" ;; + dotnet35) version="3.5" ;; + dotnet35sp1) version="3.5 SP1" ;; + dotnet40) version="4 Client" ;; + dotnet45) version="4.5" ;; + dotnet452) version="4.5.2" ;; + *) echo error ; exit 1 ;; + esac + w_call dotnet_verifier + # FIXME: The logfile may be useful somewhere (or at least print the location) + w_ahk_do " + SetTitleMatchMode, 2 + ; FIXME; this only works the first time? Check if it's already verified somehow.. + run, netfx_setupverifier.exe /q:a /c:"setupverifier2.exe" + winwait, Verification Utility + ControlClick, Button1 + Control, ChooseString, NET Framework $version, ComboBox1 + ControlClick, Button1 ; Verify + loop, 60 + { + sleep 1000 + process, exist, setupverifier2.exe + dn_pid=%ErrorLevel% + if dn_pid = 0 + { + break + } + ifWinExist, Verification Utility, Product verification failed + { + process, close, setupverifier2.exe + exit 1 + } + ifWinExist, Verification Utility, Product verification succeeded + { + process, close, setupverifier2.exe + break + } + } + " + dn_status=$? +} + +# Checks if the user can run the self-update/rollback commands +winetricks_check_update_availability() +{ + # Prevents the development file overwrite: + if test -d "../.git" + then + w_warn "You're running in a dev environment. Please make a copy of the file before running this command." + exit; + fi + + # Checks read/write permissions on update directories + if ! (test -r $0 && test -w $0 && test -w ${0%/*} && test -x ${0%/*}) + then + w_warn "You don't have the proper permissions to run this command. Try again with sudo or as root." + exit; + fi +} + +winetricks_selfupdate() +{ + winetricks_check_update_availability + + _W_filename="${0##*/}" + _W_rollback_file="${0}.bak" + _W_update_file="${0}.update" + + _W_tmpdir=${TMPDIR:-/tmp} + _W_tmpdir="`mktemp -d "$_W_tmpdir/$_W_filename.XXXXXXXX"`" + + w_download_to $_W_tmpdir https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks + w_try mv $_W_tmpdir/$_W_filename $_W_update_file.gz + w_try gunzip $_W_update_file.gz + w_try rmdir $_W_tmpdir + + w_try cp $0 $_W_rollback_file + w_try chmod -x $_W_rollback_file + + w_try mv $_W_update_file $0 + w_try chmod +x $0 + + w_warn "Update finished! The current version is '`$0 -V`'. Use 'winetricks --update-rollback' to return to the previous version." + + exit; +} + +winetricks_selfupdate_rollback() +{ + winetricks_check_update_availability + + _W_rollback_file="${0}.bak" + + if test -f $_W_rollback_file + then + w_try mv $_W_rollback_file $0 + w_try chmod +x $0 + w_warn "Rollback finished! The current version is '`$0 -V`'." + else + w_warn "Nothing to rollback." + fi + exit; +} + +# Download a file +# Usage: w_download_to packagename url [sha1sum [filename [cookie jar]]] +# Caches downloads in winetrickscache/$packagename +w_download_to() +{ + _W_packagename="$1" + _W_url="$2" + _W_sum="$3" + _W_file="$4" + _W_cookiejar="$5" + + case $_W_packagename in + .) w_die "bug: please do not download packages to top of cache" ;; + esac + + if echo "$_W_url" | grep ' ' + then + w_die "bug: please use %20 instead of literal spaces in urls, curl rejects spaces, and they make life harder for linkcheck.sh" + fi + if [ "$_W_file"x = ""x ] + then + _W_file=`basename "$_W_url"` + fi + _W_cache="$W_CACHE/$_W_packagename" + + if test ! -d "$_W_cache" + then + w_try mkdir -p "$_W_cache" + fi + + # Try download twice + checksum_ok="" + tries=0 + while test $tries -lt 2 + do + tries=`expr $tries + 1` + + if test -s "$_W_cache/$_W_file" + then + if test "$3" + then + if test $tries = 1 + then + # The cache was full. If the file is larger than 500MB, + # don't checksum it, that just annoys the user. + if test `du -k "$_W_cache/$_W_file" | cut -f1` -gt 500000 + then + checksum_ok=1 + break + fi + fi + # If checksum matches, declare success and exit loop + w_get_sha1sum "$_W_cache/$_W_file" + if [ "$_W_gotsum"x = "$3"x ] + then + checksum_ok=1 + break + fi + if test ! "$WINETRICKS_CONTINUE_DOWNLOAD" + then + w_warn "Checksum for $_W_cache/$_W_file did not match, retrying download" + mv -f "$_W_cache/$_W_file" "$_W_cache/$_W_file".bak + fi + else + # file exists, no checksum known, declare success and exit loop + break + fi + elif test -f "$_W_cache/$_W_file" + then + # zero length file, just delete before retrying + rm "$_W_cache/$_W_file" + fi + + _W_dl_olddir=`pwd` + cd "$_W_cache" + # Mac folks tend to have curl rather than wget + # On Mac, 'which' doesn't return good exit status + # Need to jam in --header "Accept-Encoding: gzip,deflate" else + # redhat.com decompresses liberation-fonts.tar.gz! + # Note: this causes other sites to compress downloads, hence + # the kludge further down. See http://code.google.com/p/winezeug/issues/detail?id=77 + echo Downloading $_W_url to $_W_cache + + # For sites that prefer mozilla in the useragent, set W_BROWSERAGENT=1 + case "$W_BROWSERAGENT" in + 1) _W_agent="Mozilla/5.0 (compatible; Konqueror/2.1.1; X11)" ;; + *) _W_agent= ;; + esac + + case "$WINETRICKS_OPT_TORIFY" in + 1) torify=torify ; if [ ! -x "$(which torify 2>/dev/null)" ] ; then + w_die "--torify was used, but torify is not installed, please install it." ; exit 1 ; fi ;; + *) torify= ;; + esac + + if [ -x "$(which aria2c 2>/dev/null)" ] + then + # (Slightly fancy) aria2c support + # See https://github.com/Winetricks/winetricks/issues/612 + # --daemon=false --enable-rpc=false to ensure aria2c doesnt go into the background after starting + # and prevent any attempts to rebind on the RPC interface specified in someone's config. + # --input-file='' if the user config has a input-file specified then aria2 will read it and + # attempt to download everything in that input file again. + # --save-session='' if the user has specified save-session in their config, their session will be + # ovewritten by the new aria2 process + # http-accept-gzip=true (still needed) ? + + # torify needs --async-dns=false, see https://github.com/tatsuhiro-t/aria2/issues/613 + case $WINETRICKS_OPT_TORIFY in + 1) torify aria2c --async-dns=false --continue --daemon=false --dir "$_W_cache" --enable-rpc=false --input-file='' \ + --max-connection-per-server=5 --out "$_W_file" --save-session='' --stream-piece-selector=geom "$_W_url" ;; + *) aria2c --continue --daemon=false --dir "$_W_cache" --enable-rpc=false --input-file='' \ + --max-connection-per-server=5 --out "$_W_file" --save-session='' --stream-piece-selector=geom "$_W_url" ;; + esac + elif [ -x "`which wget 2>/dev/null`" ] + then + # Use -nd to insulate ourselves from people who set -x in WGETRC + # [*] --retry-connrefused works around the broken sf.net mirroring + # system when downloading corefonts + # [*] --read-timeout is useful on the adobe server that doesn't + # close the connection unless you tell it to (control-C or closing + # the socket) + winetricks_wget_progress \ + -O "$_W_file" -nd \ + -c --read-timeout=300 --retry-connrefused \ + --header "Accept-Encoding: gzip,deflate" \ + ${_W_cookiejar:+--load-cookies "$_W_cookiejar"} \ + ${_W_agent:+--user-agent="$_W_agent"} \ + "$_W_url" + elif [ -x "`which curl 2>/dev/null`" ] + then + # curl doesn't get filename from the location given by the server! + # fortunately, we know it + $torify curl -L -o "$_W_file" -C - \ + --header "Accept-Encoding: gzip,deflate" \ + ${_W_cookiejar:+--cookie "$_W_cookiejar"} \ + ${_W_agent:+--user-agent "$_W_agent"} \ + "$_W_url" + else + w_die "Please install wget or aria2c (or, if those aren't available, curl)" + fi + if test $? = 0 + then + # Need to decompress .exe's that are compressed, else cygwin fails + # Also affects ttf files on github + _W_filetype=`which file 2>/dev/null` + case $_W_filetype-$_W_file in + /*-*.exe|/*-*.ttf|/*-*.zip) + case `file "$_W_file"` in + *:*gzip*) mv "$_W_file" "$_W_file.gz"; gunzip < "$_W_file.gz" > "$_W_file";; + esac + esac + + # On cygwin, .exe's must be marked +x + case "$_W_file" in + *.exe) chmod +x "$_W_file" ;; + esac + + cd "$_W_dl_olddir" + unset _W_dl_olddir + elif test $tries = 2 + then + test -f "$_W_file" && rm "$_W_file" + w_die "Downloading $_W_url failed" + fi + # Download from the Wayback Machine on second try + _W_url="https://web.archive.org/web/$_W_url" + done + + if test "$3" && test ! "$checksum_ok" + then + w_verify_sha1sum $3 "$_W_cache/$_W_file" + fi +} + +# Open a folder for the user in the specified directory +# Usage: w_open_folder directory +w_open_folder() +{ + for _W_cmd in xdg-open open cygstart true + do + _W_cmdpath=`which $_W_cmd` + if test -n "$_W_cmdpath" + then + break + fi + done + $_W_cmd "$1" & + unset _W_cmd _W_cmdpath +} + +# Open a web browser for the user to the given page +# Usage: w_open_webpage url +w_open_webpage() +{ + # See http://www.dwheeler.com/essays/open-files-urls.html + for _W_cmd in xdg-open sdtwebclient cygstart open firefox true + do + _W_cmdpath=`which $_W_cmd` + if test -n "$_W_cmdpath" + then + break + fi + done + $_W_cmd "$1" & + unset _W_cmd _W_cmdpath +} + +# Download a file +# Usage: w_download url [sha1sum [filename [cookie jar]]] +# Caches downloads in winetrickscache/$W_PACKAGE +w_download() +{ + w_download_to $W_PACKAGE "$@" +} + +# Download one or more files via bittorrent +# Usage: w_download_torrent [foo.torrent] +# Caches downloads in $W_CACHE/$W_PACKAGE, torrent files are assumed to be there +# If no foo.torrent is given, will add ALL .torrent files in $W_CACHE/$W_PACKAGE +w_download_torrent() +{ + # FIXME: figure out how to extract the filename from the .torrent file + # so callers don't need to check if the files are already downloaded. + + w_call utorrent + + UT_WINPATH="$W_CACHE_WIN\\$W_PACKAGE" + cd "$W_CACHE/$W_PACKAGE" + + if [ "$2"x != ""x ] # foo.torrent parameter supplied + then + w_try "$WINE" utorrent "/DIRECTORY" "$UT_WINPATH" "$UT_WINPATH\\$2" & + else # grab all torrents + for torrent in `ls *.torrent` + do + w_try "$WINE" utorrent "/DIRECTORY" "$UT_WINPATH" "$UT_WINPATH\\$torrent" & + done + fi + + # Start uTorrent, have it wait until all downloads are finished + w_ahk_do " + SetTitleMatchMode, 2 + winwait, Torrent + Loop + { + sleep 6000 + ifwinexist, Torrent, default + { + ;should uTorrent be the default torrent app? + controlclick, Button1, Torrent, default ; yes + continue + } + ifwinexist, Torrent, already + { + ;torrent already registered, fine + controlclick, Button1, Torrent, default ; yes + continue + } + ifwinexist, Torrent, Bandwidth + { + ;Cancels bandwidth test on first run of uTorrent + controlclick, Button5, Torrent, Bandwidth + continue + } + ifwinexist, Torrent, version + { + ;Decline upgrade to newer version + controlclick, Button3, Torrent, version + controlclick, Button2, Torrent, version + continue + } + break + } + ;Sets parameter to close uTorrent once all downloads are complete + winactivate, Torrent 2.0 + send !o + send a{Down}{Enter} + winwaitclose, Torrent 2.0 + " +} + +w_download_manual_to() +{ + _W_packagename="$1" + _W_url="$2" + _W_file="$3" + _W_sha1sum="$4" + + case "$media" in + "download") + w_info "FAIL: bug: media type is download, but w_download_manual was called. Programmer, please change verb's media type to manual_download." + ;; + esac + + case $LANG in + da*) _W_dlmsg="Hent venligst filen $_W_file fra $_W_url og placér den i $W_CACHE/$_W_packagename, kør derefter dette skript.";; + de*) _W_dlmsg="Bitte laden Sie $_W_file von $_W_url runter, stellen Sie's in $W_CACHE/$_W_packagename, dann wiederholen Sie dieses Kommando.";; + pl*) _W_dlmsg="Proszę pobrać plik $_W_file z $_W_url, następnie umieścić go w $W_CACHE/$_W_packagename, a na końcu uruchomić ponownie ten skrypt.";; + ru*) _W_dlmsg="Пожалуйста, скачайте файл $_W_file по адресу $_W_url, и поместите его в $W_CACHE/$_W_packagename, а затем запустите winetricks заново.";; + uk*) _W_dlmsg="Будь ласка, звантажте $_W_file з $_W_url, розташуйте в $W_CACHE/$_W_packagename, потім запустіть скрипт знову.";; + zh_CN*) _W_dlmsg="请从 $_W_url 下载 $_W_file,并置放于 $W_CACHE/$_W_packagename, 然后重新运行 winetricks.";; + zh_TW*|zh_HK*) _W_dlmsg="請從 $_W_url 下載 $_W_file,并置放於 $W_CACHE/$_W_packagename, 然后重新執行 winetricks.";; + *) _W_dlmsg="Please download $_W_file from $_W_url, place it in $W_CACHE/$_W_packagename, then re-run this script.";; + esac + + if ! test -f "$W_CACHE/$_W_packagename/$_W_file" + then + mkdir -p "$W_CACHE/$_W_packagename" + w_open_folder "$W_CACHE/$_W_packagename" + w_open_webpage "$_W_url" + sleep 3 # give some time for browser to open + w_die "$_W_dlmsg" + # FIXME: wait in loop until file is finished? + fi + + if test "$_W_sha1sum" + then + w_verify_sha1sum $_W_sha1sum "$W_CACHE/$_W_packagename/$_W_file" + fi + + unset _W_url _W_file _W_sha1sum _W_dlmsg +} + +w_download_manual() +{ + w_download_manual_to $W_PACKAGE "$@" +} + +# Turn off news, overlays, and friend interaction in steam +# Run from inside c:\Program Files\Steam +w_steam_safemode() +{ + cat > "$W_TMP/steamconfig.pl" <<"_EOF_" +#!/usr/bin/env perl +# Parse steam's localconfig.vcf, add settings to it, and write it out again +# The file is a recursive dictionary +# +# FILE :== CONTAINER +# +# VALUE :== "name" "value" NEWLINE +# +# CONTAINER :== "name" NEWLINE "{" NEWLINE ( VALUE | CONTAINER ) * "}" NEWLINE +# +# We load it into a recursive hash. + +use strict; +use warnings; + +sub read_into_container{ + my( $pcontainer ) = @_; + + $_ = || w_die "Can't read first line of container"; + /{/ || w_die "First line of container was not {"; + while () { + chomp; + if (/"([^"]*)"\s*"([^"]*)"$/) { + ${$pcontainer}{$1} = $2; + } elsif (/"([^"]*)"$/) { + my( %newcon, $name ); + $name = $1; + read_into_container(\%newcon); + ${$pcontainer}{$name} = \%newcon; + } elsif (/}/) { + return; + } else { + w_die "huh?"; + } + } +} + +sub dump_container{ + my( $pcontainer, $indent ) = @_; + foreach (sort(keys(%{$pcontainer}))) { + my( $val ) = ${$pcontainer}{$_}; + if (ref $val eq 'HASH') { + print "${indent}\"$_\"\n"; + print "${indent}{\n"; + dump_container($val, "$indent\t"); + print "${indent}}\n"; + } else { + print "${indent}\"${_}\"\t\t\"$val\"\n"; + } + } +} + +# Disable anything unsafe or annoying +sub disable_notifications{ + my( $pcontainer ) = @_; + ${$pcontainer}{"friends"}{"PersonaStateDesired"} = "1"; + ${$pcontainer}{"friends"}{"Notifications_ShowIngame"} = "0"; + ${$pcontainer}{"friends"}{"Sounds_PlayIngame"} = "0"; + ${$pcontainer}{"friends"}{"Notifications_ShowOnline"} = "0"; + ${$pcontainer}{"friends"}{"Sounds_PlayOnline"} = "0"; + ${$pcontainer}{"friends"}{"Notifications_ShowMessage"} = "0"; + ${$pcontainer}{"friends"}{"Sounds_PlayMessage"} = "0"; + ${$pcontainer}{"friends"}{"AutoSignIntoFriends"} = "0"; + ${$pcontainer}{"News"}{"NotifyAvailableGames"} = "0"; + ${$pcontainer}{"system"}{"EnableGameOverlay"} = "0"; +} + +# Read the file +my(%top); +open FILE, $ARGV[0] || w_die "can't open ".$ARGV[0]; +my($line); +$line = || w_die "Could not read first line from ".$ARGV[0]; +$line =~ /"UserLocalConfigStore"/ || w_die "this is not a localconfig.vdf file"; +read_into_container(\%top); + +# Modify it +disable_notifications(\%top); + +# Write modified file +print "\"UserLocalConfigStore\"\n"; +print "{\n"; +dump_container(\%top, "\t"); +print "}\n"; +_EOF_ + +for file in userdata/*/config/localconfig.vdf +do + cp "$file" "$file.old" + perl "$W_TMP"/steamconfig.pl "$file.old" > "$file" +done +} + +w_question() +{ + case $WINETRICKS_GUI in + *zenity) $WINETRICKS_GUI --entry --text "$1" ;; + *kdialog) $WINETRICKS_GUI --inputbox "$1" ;; + *xmessage) w_die "sorry, can't ask question with xmessage" ;; + none) echo -n "$1" >&2 ; read W_ANSWER ; echo $W_ANSWER; unset W_ANSWER;; + esac +} + +# Reads steam username and password from environment, cache, or user +# If had to ask user, cache answer. +w_steam_getid() +{ + #TODO: Translate + _W_steamidmsg="Please enter your Steam login ID (not email)" + _W_steampasswordmsg="Please enter your Steam password" + + if test ! "$W_STEAM_ID" + then + if test -f "$W_CACHE"/steam_userid.txt + then + W_STEAM_ID=`cat "$W_CACHE"/steam_userid.txt` + else + W_STEAM_ID=`w_question "$_W_steamidmsg"` + echo "$W_STEAM_ID" > "$W_CACHE"/steam_userid.txt + chmod 600 "$W_CACHE"/steam_userid.txt + fi + fi + if test ! "$W_STEAM_PASSWORD" + then + if test -f "$W_CACHE"/steam_password.txt + then + W_STEAM_PASSWORD=`cat "$W_CACHE"/steam_password.txt` + else + W_STEAM_PASSWORD=`w_question "$_W_steampasswordmsg"` + echo "$W_STEAM_PASSWORD" > "$W_CACHE"/steam_password.txt + chmod 600 "$W_CACHE"/steam_password.txt + fi + fi +} + +# Usage: +# w_steam_install_game steamidnum windowtitle +w_steam_install_game() +{ + _W_steamid=$1 + _W_steamtitle="$2" + + w_steam_getid + + # Install the steam runtime + WINETRICKS_OPT_SHAREDPREFIX=1 w_call steam + + # Steam puts up a bunch of windows. Here's the sequence: + # "Steam - Updating" - wait for it to close. May appear twice in a row. + # "Steam - Login" - wait for it to close (credentials already given on cmdline) + # "Steam" (small window) - connecting, wait for it to close + # "Steam" (large window) - the main window + # "Steam - Updates News" - close it forcefully + # "Install - $title" - send enter, click a couple checkboxes, send enter again + # "Updating $title" - small download progress dialog + # "Steam - Ready" game install done. (Only comes up if main window not up.) + + cd "$W_PROGRAMS_X86_UNIX/Steam" + w_ahk_do " + SetTitleMatchMode 2 + SetWinDelay 500 + ; Run steam once until it finishes its initial update. + ; For me, this exits at 26%. + run steam.exe -applaunch $_W_steamid -login $W_STEAM_ID $W_STEAM_PASSWORD + Loop + { + ifWinExist, Steam - Updating + { + winwaitclose, Steam + process close, Steam.exe + sleep 1000 + ; Run a second time; let it finish updating, then kill it. + run steam.exe + winwait Steam - Updating + winwaitclose + process close, Steam.exe + ; Run a third time, have it log in, wait until it has finished connecting + run steam.exe -applaunch $_W_steamid -login $W_STEAM_ID $W_STEAM_PASSWORD + } + ifWinExist, Steam Login + { + break + } + sleep 500 + } + ; wait for login window to close + winwaitclose + + winwait Steam ; wait for small <> window + winwaitclose + " + +if [ "$STEAM_DVD" = "TRUE" ] +then + w_ahk_do " + ; Run a fourth time, have it install the app. + run steam.exe -install ${W_ISO_MOUNT_LETTER}:\\ + " +else + w_ahk_do " + ; Run a fourth time, have it install the app. + run steam.exe -applaunch $_W_steamid + " +fi + + w_ahk_do " + winwait Install - $_W_steamtitle + if ( w_opt_unattended > 0 ) { + send {enter} ; next (for 1st of 3 pages of install dialog) + sleep 1000 + click 32, 91 ; uncheck create menu item? + click 32, 119 ; check create desktop icon? + send {enter} ; next (for 2nd of 3 pages of install dialog) + ; dismiss any news dialogs, and click 'next' on third page of install dialog + loop + { + sleep 1000 + ifwinexist Steam - Updates News + { + winclose + continue + } + ifwinexist Install - $_W_steamtitle + { + winactivate + send {enter} ; next (for 3rd of 3 pages of install dialog) + } + ifwinnotexist Install - $_W_steamtitle + { + sleep 1000 + ifwinnotexist Install - $_W_steamtitle + break + } + } + } + " + +if [ "$STEAM_DVD" = "TRUE" ] +then + # Wait for install to finish + while true + do + grep "SetHasAllLocalContent(true) called for $_W_steamid" "$W_PROGRAMS_X86_UNIX/Steam/logs/download_log.txt" && break + sleep 5 + done +fi + + w_ahk_do " + ; For DVD's: theoretically, it should be installed now, but most games want to download updates. Do that now. + ; For regular downloads: relaunch to coax steam into showing its nice small download progress dialog + process close, Steam.exe + run steam.exe -login $W_STEAM_ID $W_STEAM_PASSWORD -applaunch $_W_steamid + winwait Ready - + process close, Steam.exe + " + + # Not all users need this disabled, but let's play it safe for now + if w_workaround_wine_bug 22053 "Disabling ingame notifications to prevent game crashes on some machines." + then + w_steam_safemode + fi + + unset _W_steamid _W_steamtitle +} + +#---------------------------------------------------------------- + +# Generic GOG.com installer +# Usage: game_id game_title [other_files,size [reader_control [run_command [download_id [install_dir [installer_size_and_sha1]]]]]] +# game_id +# Used for main installer name and download url. +# game_title +# Used for AutoHotKey and installation path in bat script. +# other_files +# Extra installer files, in one string, space-separated. +# reader_control +# If set, the control id of the configuration panel checkbox controling +# Adobe Reader installation. +# Some games don't have it, some games do with different ids. +# run_command +# Used for bat script, relative to installation path. +# download_id +# For games which download url doesn't match their game_id +# install_dir +# If different from game_title +# installer_size_and_sha1 +# exe file SHA1. +winetricks_load_gog() +{ + game_id="$1" + game_title="$2" + other_files="$3" + reader_control="$4" + run_command="$5" + download_id="$6" + install_dir="$7" + installer_size_and_sha1="$8" + + if [ "$download_id"x = ""x ] + then + download_id="$game_id" + fi + if [ "$install_dir"x = ""x ] + then + install_dir="$game_title" + fi + + installer_path="$W_CACHE/$W_PACKAGE" + mkdir -p "$installer_path" + installer="setup_$game_id.exe" + + if test "$installer_size_and_sha1"x = ""x + then + files="$installer $other_files" + else + files="$installer,$installer_size_and_sha1 $other_files" + fi + + file_id=0 + for file_and_size_and_sha1 in $files + do + case "$file_and_size_and_sha1" in + *,*,*) + sha1sum=`echo $file_and_size_and_sha1 | sed "s/.*,//"` + minsize=`echo $file_and_size_and_sha1 | sed 's/[^,]*,\([^,]*\),.*/\1/'` + file=`echo $file_and_size_and_sha1 | sed 's/,.*//'` + ;; + *,*) + sha1sum="" + minsize=`echo $file_and_size_and_sha1 | sed 's/.*,//'` + file=`echo $file_and_size_and_sha1 | sed 's/,.*//'` + ;; + *) + sha1sum="" + minsize=1 + file=$file_and_size_and_sha1 + ;; + esac + file_path="$installer_path/$file" + if ! test -s "$file_path" || test `stat -Lc%s "$file_path"` -lt $minsize + then + # FIXME: bring back automated download + w_info "You have to be logged in to gog, and you have to own the game, for the following URL to work. Otherwise it gets a 404." + w_download_manual "https://www.gog.com/en/download/game/$download_id/$file_id" "$file" + check_sha1=1 + filesize=`stat -Lc%s "$file_path"` + if test $minsize -gt 1 && test $filesize -ne $minsize + then + check_sha1="" + w_warn "Expected file size $minsize, please report new size $filesize." + fi + if test "$check_sha1" != "" && test "$sha1sum"x != ""x + then + w_verify_sha1sum "$sha1sum" "$file_path" + fi + fi + file_id=`expr $file_id + 1` + done + + cd "$installer_path" + w_ahk_do " + run $installer + WinWait, Setup - $game_title, Start installation + ControlGet, checkbox_state, Checked,, TCheckBox1 ; EULA + if (checkbox_state != 1) { + ControlClick, TCheckBox1 + } + if (\"$reader_control\") { + ControlClick, TMCoPShadowButton1 ; Options + Loop, 10 + { + ControlGet, visible, Visible,, $reader_control + if (visible) + { + break + } + Sleep, 1000 + } + ControlGet, checkbox_state, Checked,, $reader_control ; Unckeck Adobe/Foxit Reader + if (checkbox_state != 0) { + ControlClick, $reader_control + } + } + ControlClick, TMCoPShadowButton2 ; Start Installation + WinWait, Setup - $game_title, Exit Installer + ControlClick, TMCoPShadowButton1 ; Exit Installer + " +} + +#---------------------------------------------------------------- + + +# Usage: w_mount "volume name" [filename-to-check [discnum]] +# Some games have two volumes with identical volume names. +# For these, please specify discnum 1 for first disc, discnum 2 for 2nd, etc., +# else caching can't work. +# FIXME: should take mount option 'unhide' for poorly mastered discs +w_mount() +{ + if test "$3" + then + WINETRICKS_IMG="$W_CACHE/$W_PACKAGE/$1-$3.iso" + else + WINETRICKS_IMG="$W_CACHE/$W_PACKAGE/$1.iso" + fi + mkdir -p "$W_CACHE/$W_PACKAGE" + + if test -f "$WINETRICKS_IMG" + then + winetricks_mount_cached_iso + else + if test "$WINETRICKS_OPT_KEEPISOS" = 0 || test "$2" + then + while true + do + winetricks_mount_real_volume "$1" + if test "$2" = "" || test -f "$W_ISO_MOUNT_ROOT/$2" + then + break + else + w_warn "Wrong disc inserted, $2 not found" + fi + done + fi + + case "$WINETRICKS_OPT_KEEPISOS" in + 1) + winetricks_cache_iso "$1" + winetricks_mount_cached_iso + ;; + esac + fi +} + +w_umount() +{ + if test "$WINE" = "" + then + # Windows + winetricks_load_vcdmount + cd "$VCD_DIR" + w_try vcdmount.exe /u + else + echo "Running $WINETRICKS_SUDO umount $W_ISO_MOUNT_ROOT" + case "$WINETRICKS_SUDO" in + gksudo) + # -l lazy unmount in case executable still running + $WINETRICKS_SUDO "umount -l $W_ISO_MOUNT_ROOT" + w_try $WINETRICKS_SUDO "rm -rf $W_ISO_MOUNT_ROOT" + ;; + *) + $WINETRICKS_SUDO umount -l $W_ISO_MOUNT_ROOT + w_try $WINETRICKS_SUDO rm -rf $W_ISO_MOUNT_ROOT + ;; + esac + "$WINE" eject ${W_ISO_MOUNT_LETTER}: + rm -f "$WINEPREFIX"/dosdevices/${W_ISO_MOUNT_LETTER}: + rm -f "$WINEPREFIX"/dosdevices/${W_ISO_MOUNT_LETTER}:: + fi +} + +w_ahk_do() +{ + if ! test -f "$W_CACHE/ahk/AutoHotkey.exe" + then + W_BROWSERAGENT=1 \ + w_download_to ahk http://www.autohotkey.com/download/AutoHotkey104805.zip b3981b13fbc45823131f69d125992d6330212f27 + w_try_unzip "$W_CACHE/ahk" "$W_CACHE/ahk/AutoHotkey104805.zip" AutoHotkey.exe AU3_Spy.exe + chmod +x "$W_CACHE/ahk/AutoHotkey.exe" + fi + + _W_CR=`printf \\\\r` + cat <<_EOF_ | sed "s/\$/$_W_CR/" > "$W_TMP"/tmp.ahk +w_opt_unattended = ${W_OPT_UNATTENDED:-0} +$@ +_EOF_ + w_try "$WINE" "$W_CACHE_WIN\\ahk\\AutoHotkey.exe" "$W_TMP_WIN"\\tmp.ahk + unset _W_CR +} + +# Function to protect wine-specific sections of code. +# Outputs a message to console explaining what's being skipped. +# Usage: +# if w_skip_windows name-of-operation +# then +# return +# fi +# ... do something that doesn't make sense on windows ... + +w_skip_windows() +{ + case "$OS" in + "Windows_NT") + echo "Skipping operation '$1' on Windows" + return 0 + ;; + esac + return 1 +} + +w_override_dlls() +{ + w_skip_windows w_override_dlls && return + + _W_mode=$1 + case $_W_mode in + *=*) + w_die "w_override_dlls: unknown mode $_W_mode. +Usage: 'w_override_dlls mode[,mode] dll ...'." ;; + disabled) + _W_mode="" ;; + esac + shift + echo Using $_W_mode override for following DLLs: $@ + cat > "$W_TMP"/override-dll.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\DllOverrides] +_EOF_ + while test "$1" != "" + do + case "$1" in + comctl32) + rm -rf "$W_WINDIR_UNIX"/winsxs/manifests/x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef.manifest + ;; + esac + + if [ "$_W_mode" = default ] + then + # To delete a registry key, give an unquoted dash as value + echo "\"*$1\"=-" >> "$W_TMP"/override-dll.reg + else + # Note: if you want to override even DLLs loaded with an absolute + # path, you need to add an asterisk: + echo "\"*$1\"=\"$_W_mode\"" >> "$W_TMP"/override-dll.reg + #echo "\"$1\"=\"$_W_mode\"" >> "$W_TMP"/override-dll.reg + fi + + shift + done + + w_try_regedit "$W_TMP_WIN"\\override-dll.reg + + unset _W_mode +} + +w_override_no_dlls() +{ + w_skip_windows override && return + + "$WINE" regedit /d 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' +} + +w_override_all_dlls() +{ + # Disable all known native Microsoft DLLs in favor of Wine's builtin ones + # Generated with + # find ~/wine-git/dlls -maxdepth 1 -type d -print | sed 's,.*/,,' | sort | fmt -50 | sed 's/$/ \\/' + # Last updated: 2015-09-28 + w_override_dlls builtin \ + acledit aclui activeds actxprxy adsiid advapi32 \ + advpack amstream api-ms-win-core-com-l1-1-0 \ + api-ms-win-core-console-l1-1-0 \ + api-ms-win-core-datetime-l1-1-0 \ + api-ms-win-core-datetime-l1-1-1 \ + api-ms-win-core-debug-l1-1-0 \ + api-ms-win-core-debug-l1-1-1 \ + api-ms-win-core-errorhandling-l1-1-0 \ + api-ms-win-core-errorhandling-l1-1-1 \ + api-ms-win-core-errorhandling-l1-1-2 \ + api-ms-win-core-fibers-l1-1-0 \ + api-ms-win-core-fibers-l1-1-1 \ + api-ms-win-core-file-l1-1-0 \ + api-ms-win-core-file-l1-2-0 \ + api-ms-win-core-file-l2-1-0 \ + api-ms-win-core-file-l2-1-1 \ + api-ms-win-core-handle-l1-1-0 \ + api-ms-win-core-heap-l1-1-0 \ + api-ms-win-core-heap-l1-2-0 \ + api-ms-win-core-heap-obsolete-l1-1-0 \ + api-ms-win-core-interlocked-l1-1-0 \ + api-ms-win-core-interlocked-l1-2-0 \ + api-ms-win-core-io-l1-1-1 \ + api-ms-win-core-kernel32-legacy-l1-1-0 \ + api-ms-win-core-libraryloader-l1-1-0 \ + api-ms-win-core-libraryloader-l1-1-1 \ + api-ms-win-core-localization-l1-2-0 \ + api-ms-win-core-localization-l1-2-1 \ + api-ms-win-core-localization-obsolete-l1-1-0 \ + api-ms-win-core-localregistry-l1-1-0 \ + api-ms-win-core-memory-l1-1-0 \ + api-ms-win-core-memory-l1-1-1 \ + api-ms-win-core-misc-l1-1-0 \ + api-ms-win-core-namedpipe-l1-1-0 \ + api-ms-win-core-namedpipe-l1-2-0 \ + api-ms-win-core-processenvironment-l1-1-0 \ + api-ms-win-core-processenvironment-l1-2-0 \ + api-ms-win-core-processthreads-l1-1-0 \ + api-ms-win-core-processthreads-l1-1-1 \ + api-ms-win-core-processthreads-l1-1-2 \ + api-ms-win-core-profile-l1-1-0 \ + api-ms-win-core-psapi-l1-1-0 \ + api-ms-win-core-registry-l1-1-0 \ + api-ms-win-core-rtlsupport-l1-1-0 \ + api-ms-win-core-rtlsupport-l1-2-0 \ + api-ms-win-core-shlwapi-legacy-l1-1-0 \ + api-ms-win-core-string-l1-1-0 \ + api-ms-win-core-synch-l1-1-0 \ + api-ms-win-core-synch-l1-2-0 \ + api-ms-win-core-sysinfo-l1-1-0 \ + api-ms-win-core-sysinfo-l1-2-0 \ + api-ms-win-core-sysinfo-l1-2-1 \ + api-ms-win-core-threadpool-legacy-l1-1-0 \ + api-ms-win-core-timezone-l1-1-0 \ + api-ms-win-core-url-l1-1-0 \ + api-ms-win-core-util-l1-1-0 \ + api-ms-win-core-winrt-error-l1-1-0 \ + api-ms-win-core-winrt-error-l1-1-1 \ + api-ms-win-core-winrt-l1-1-0 \ + api-ms-win-core-winrt-string-l1-1-0 \ + api-ms-win-core-xstate-l2-1-0 \ + api-ms-win-crt-conio-l1-1-0 \ + api-ms-win-crt-convert-l1-1-0 \ + api-ms-win-crt-environment-l1-1-0 \ + api-ms-win-crt-filesystem-l1-1-0 \ + api-ms-win-crt-heap-l1-1-0 \ + api-ms-win-crt-locale-l1-1-0 \ + api-ms-win-crt-math-l1-1-0 \ + api-ms-win-crt-multibyte-l1-1-0 \ + api-ms-win-crt-private-l1-1-0 \ + api-ms-win-crt-process-l1-1-0 \ + api-ms-win-crt-runtime-l1-1-0 \ + api-ms-win-crt-stdio-l1-1-0 \ + api-ms-win-crt-string-l1-1-0 \ + api-ms-win-crt-time-l1-1-0 \ + api-ms-win-crt-utility-l1-1-0 \ + api-ms-win-downlevel-advapi32-l1-1-0 \ + api-ms-win-downlevel-advapi32-l2-1-0 \ + api-ms-win-downlevel-normaliz-l1-1-0 \ + api-ms-win-downlevel-ole32-l1-1-0 \ + api-ms-win-downlevel-shell32-l1-1-0 \ + api-ms-win-downlevel-shlwapi-l1-1-0 \ + api-ms-win-downlevel-shlwapi-l2-1-0 \ + api-ms-win-downlevel-user32-l1-1-0 \ + api-ms-win-downlevel-version-l1-1-0 \ + api-ms-win-eventing-provider-l1-1-0 \ + api-ms-win-ntuser-dc-access-l1-1-0 \ + api-ms-win-security-base-l1-1-0 \ + api-ms-win-security-base-l1-2-0 \ + api-ms-win-security-sddl-l1-1-0 \ + api-ms-win-service-core-l1-1-1 \ + api-ms-win-service-management-l1-1-0 \ + api-ms-win-service-winsvc-l1-2-0 apphelp \ + appwiz.cpl atl atl100 atl110 atl80 atl90 authz \ + avicap32 avifil32 avifile.dll16 avrt bcrypt \ + browseui cabinet capi2032 cards cfgmgr32 clusapi \ + combase comcat comctl32 comdlg32 commdlg.dll16 \ + comm.drv16 compobj.dll16 compstui comsvcs connect \ + credui crtdll crypt32 cryptdlg cryptdll cryptext \ + cryptnet cryptui ctapi32 ctl3d32 ctl3d.dll16 \ + ctl3dv2.dll16 d2d1 d3d10 d3d10_1 d3d10core \ + d3d11 d3d8 d3d9 d3dcompiler_33 d3dcompiler_34 \ + d3dcompiler_35 d3dcompiler_36 d3dcompiler_37 \ + d3dcompiler_38 d3dcompiler_39 d3dcompiler_40 \ + d3dcompiler_41 d3dcompiler_42 d3dcompiler_43 \ + d3dcompiler_46 d3dcompiler_47 d3dim d3drm \ + d3dx10_33 d3dx10_34 d3dx10_35 d3dx10_36 d3dx10_37 \ + d3dx10_38 d3dx10_39 d3dx10_40 d3dx10_41 d3dx10_42 \ + d3dx10_43 d3dx11_42 d3dx11_43 d3dx9_24 d3dx9_25 \ + d3dx9_26 d3dx9_27 d3dx9_28 d3dx9_29 d3dx9_30 \ + d3dx9_31 d3dx9_32 d3dx9_33 d3dx9_34 d3dx9_35 \ + d3dx9_36 d3dx9_37 d3dx9_38 d3dx9_39 d3dx9_40 \ + d3dx9_41 d3dx9_42 d3dx9_43 d3dxof davclnt \ + dbgeng dbghelp dciman32 ddeml.dll16 ddraw \ + ddrawex devenum dhcpcsvc difxapi dinput \ + dinput8 dispdib.dll16 dispex display.drv16 \ + dlls dmband dmcompos dmime dmloader dmscript \ + dmstyle dmsynth dmusic dmusic32 dnsapi dplay \ + dplayx dpnaddr dpnet dpnhpast dpnlobby dpvoice \ + dpwsockx drmclien dsound dssenh dswave dwmapi \ + dwrite dxdiagn dxerr8 dxerr9 dxgi dxguid dxva2 \ + evr explorerframe ext-ms-win-gdi-devcaps-l1-1-0 \ + faultrep fltlib fntcache fontsub fusion fwpuclnt \ + gameux gdi32 gdi.exe16 gdiplus glu32 gphoto2.ds \ + gpkcsp hal hhctrl.ocx hid hidclass.sys hlink \ + hnetcfg httpapi iccvid icmp ieframe ifsmgr.vxd \ + imaadp32.acm imagehlp imm32 imm.dll16 inetcomm \ + inetcpl.cpl inetmib1 infosoft initpki inkobj \ + inseng iphlpapi itircl itss joy.cpl jscript \ + jsproxy kernel32 keyboard.drv16 krnl386.exe16 \ + ksuser ktmw32 loadperf localspl localui lz32 \ + lzexpand.dll16 mapi32 mapistub mciavi32 mcicda \ + mciqtz32 mciseq mciwave mf mfplat mfreadwrite \ + mgmtapi midimap mlang mmcndmgr mmdevapi \ + mmdevldr.vxd mmsystem.dll16 monodebg.vxd \ + mountmgr.sys mouse.drv16 mpr mprapi msacm32 \ + msacm32.drv msacm.dll16 msadp32.acm msasn1 \ + mscat32 mscms mscoree msctf msctfp msdaps \ + msdmo msftedit msg711.acm msgsm32.acm mshtml \ + mshtml.tlb msi msident msimg32 msimsg msimtf \ + msisip msisys.ocx msls31 msnet32 mspatcha msrle32 \ + msscript.ocx mssign32 mssip32 mstask msvcirt \ + msvcm80 msvcm90 msvcp100 msvcp110 msvcp120 \ + msvcp120_app msvcp60 msvcp70 msvcp71 msvcp80 \ + msvcp90 msvcr100 msvcr110 msvcr120 msvcr120_app \ + msvcr70 msvcr71 msvcr80 msvcr90 msvcrt msvcrt20 \ + msvcrt40 msvcrtd msvfw32 msvidc32 msvideo.dll16 \ + mswsock msxml msxml2 msxml3 msxml4 msxml6 \ + nddeapi ndis.sys netapi32 netcfgx netprofm \ + newdev normaliz npmshtml npptools ntdll ntdsapi \ + ntoskrnl.exe ntprint objsel odbc32 odbccp32 \ + odbccu32 ole2conv.dll16 ole2disp.dll16 ole2.dll16 \ + ole2nls.dll16 ole2prox.dll16 ole2thk.dll16 \ + ole32 oleacc oleaut32 olecli32 olecli.dll16 \ + oledb32 oledlg olepro32 olesvr32 olesvr.dll16 \ + olethk32 openal32 opencl opengl32 packager pdh \ + photometadatahandler pidgen powrprof printui \ + prntvpt propsys psapi pstorec qcap qedit qmgr \ + qmgrprxy quartz query rasapi16.dll16 rasapi32 \ + rasdlg regapi resutils riched20 riched32 \ + rpcrt4 rsabase rsaenh rstrtmgr rtutils \ + samlib sane.ds scarddlg sccbase schannel \ + schedsvc scrrun scsiport.sys secur32 security \ + sensapi serialui setupapi setupx.dll16 sfc \ + sfc_os shdoclc shdocvw shell32 shell.dll16 \ + shfolder shlwapi slbcsp slc snmpapi softpub \ + sound.drv16 spoolss stdole2.tlb stdole32.tlb \ + sti storage.dll16 stress.dll16 strmbase strmiids \ + svrapi sxs system.drv16 t2embed tapi32 taskschd \ + toolhelp.dll16 traffic twain_32 twain.dll16 \ + typelib.dll16 ucrtbase unicows updspapi url \ + urlmon usbd.sys user32 userenv user.exe16 usp10 \ + uuid uxtheme vbscript vcomp vcomp100 vcomp110 \ + vcomp90 vdhcp.vxd vdmdbg ver.dll16 version \ + vmm.vxd vnbt.vxd vnetbios.vxd vssapi vtdapi.vxd \ + vwin32.vxd w32skrnl w32sys.dll16 wbemdisp \ + wbemprox webservices wer wevtapi wiaservc \ + win32s16.dll16 win87em.dll16 winaspi.dll16 \ + windebug.dll16 windowscodecs windowscodecsext \ + winealsa.drv winecoreaudio.drv winecrt0 wined3d \ + winegstreamer winejoystick.drv winemac.drv \ + winemapi winemp3.acm wineoss.drv wineps16.drv16 \ + wineps.drv wineqtdecoder winex11.drv wing32 \ + wing.dll16 winhttp wininet winmm winnls32 \ + winnls.dll16 winscard winsock.dll16 winspool.drv \ + winsta wintab32 wintab.dll16 wintrust wlanapi \ + wldap32 wmi wmiutils wmp wmvcore wnaspi32 wow32 \ + wpcap ws2_32 wshom.ocx wsnmp32 wsock32 wtsapi32 \ + wuapi wuaueng x3daudio1_1 x3daudio1_2 x3daudio1_3 \ + x3daudio1_4 x3daudio1_5 x3daudio1_6 x3daudio1_7 \ + xapofx1_1 xapofx1_3 xapofx1_4 xapofx1_5 xaudio2_7 \ + xaudio2_8 xinput1_1 xinput1_2 xinput1_3 xinput1_4 \ + xinput9_1_0 xmllite xolehlp xpsprint xpssvcs \ + + # blank line so you don't have to remove the extra trailing \ +} + +w_override_app_dlls() +{ + w_skip_windows w_override_app_dlls && return + + _W_app=$1 + shift + _W_mode=$1 + shift + + # Fixme: handle comma-separated list of modes + case $_W_mode in + b|builtin) _W_mode=builtin ;; + n|native) _W_mode=native ;; + default) _W_mode=default ;; + d|disabled) + _W_mode="" ;; + *) + w_die "w_override_app_dlls: unknown mode $_W_mode. (want native, builtin, default, or disabled) +Usage: 'w_override_app_dlls app mode dll ...'." ;; + esac + + echo Using $_W_mode override for following DLLs when running $_W_app: $@ + ( + echo REGEDIT4 + echo "" + echo "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\$_W_app\\DllOverrides]" + ) > "$W_TMP"/override-dll.reg + + while test "$1" != "" + do + case "$1" in + comctl32) + rm -rf "$W_WINDIR_UNIX"/winsxs/manifests/x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef.manifest + ;; + esac + if [ "$_W_mode" = default ] + then + # To delete a registry key, give an unquoted dash as value + echo "\"*$1\"=-" >> "$W_TMP"/override-dll.reg + else + # Note: if you want to override even DLLs loaded with an absolute + # path, you need to add an asterisk: + echo "\"*$1\"=\"$_W_mode\"" >> "$W_TMP"/override-dll.reg + #echo "\"$1\"=\"$_W_mode\"" >> "$W_TMP"/override-dll.reg + fi + shift + done + + w_try_regedit "$W_TMP_WIN"\\override-dll.reg + rm "$W_TMP"/override-dll.reg + unset _W_app _W_mode +} + +# Has to be set in a few places... +w_set_winver() +{ + w_skip_windows w_set_winver && return + # FIXME: This should really be done with winecfg, but it has no CLI options. + + # First, delete any lingering version info, otherwise it may conflict: + ( + "$WINE" reg delete "HKLM\Software\Microsoft\Windows\CurrentVersion" /v SubVersionNumber /f || true + "$WINE" reg delete "HKLM\Software\Microsoft\Windows\CurrentVersion" /v VersionNumber /f || true + "$WINE" reg delete "HKLM\Software\Microsoft\Windows NT\CurrentVersion" /v CSDVersion /f || true + "$WINE" reg delete "HKLM\Software\Microsoft\Windows NT\CurrentVersion" /v CurrentBuildNumber /f || true + "$WINE" reg delete "HKLM\Software\Microsoft\Windows NT\CurrentVersion" /v CurrentVersion /f || true + "$WINE" reg delete "HKLM\System\CurrentControlSet\Control\ProductOptions" /v ProductType /f || true + "$WINE" reg delete "HKLM\System\CurrentControlSet\Control\ServiceCurrent" /v OS /f || true + "$WINE" reg delete "HKLM\System\CurrentControlSet\Control\Windows" /v CSDVersion /f || true + "$WINE" reg delete "HKCU\Software\Wine" /v Version /f || true + "$WINE" reg delete "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /f || true + ) > /dev/null 2>&1 + + case $1 in + win31) + echo "Setting Windows version to $1" + cat > "$W_TMP"/set-winver.reg <<_EOF_ +REGEDIT4 + +[HKEY_USERS\S-1-5-4\Software\Wine] +"Version"="win31" + +_EOF_ + + w_try_regedit "$W_TMP_WIN"\\set-winver.reg + return + ;; + win95) + # This key is only used for win 95/98: + + echo "Setting Windows version to $1" + cat > "$W_TMP"/set-winver.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion] +"ProductName"="Microsoft Windows 95" +"SubVersionNumber"="" +"VersionNumber"="4.0.950" + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\set-winver.reg + return + ;; + win98) + # This key is only used for win 95/98: + + echo "Setting Windows version to $1" + cat > "$W_TMP"/set-winver.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion] +"ProductName"="Microsoft Windows 98" +"SubVersionNumber"=" A " +"VersionNumber"="4.10.2222" + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\set-winver.reg + return + ;; + nt40) + # Similar to modern version, but sets two extra keys: + + echo "Setting Windows version to $1" + cat > "$W_TMP"/set-winver.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion] +"CSDVersion"="Service Pack 6a" +"CurrentBuildNumber"="1381" +"CurrentVersion"="4.0" + +[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ProductOptions] +"ProductType"="WinNT" + +[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ServiceCurrent] +"OS"="Windows_NT" + +[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows] +"CSDVersion"=dword:00000600 + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\set-winver.reg + return + ;; + win2k) + csdversion="Service Pack 4" + currentbuildnumber="2195" + currentversion="5.0" + csdversion_hex=dword:00000400 + ;; + winxp) + csdversion="Service Pack 3" + currentbuildnumber="2600" + currentversion="5.1" + csdversion_hex=dword:00000300 + ;; + win2k3) + csdversion="Service Pack 2" + currentbuildnumber="3790" + currentversion="5.2" + csdversion_hex=dword:00000200 + "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "ServerNT" /f + ;; + vista) + csdversion="Service Pack 2" + currentbuildnumber="6002" + currentversion="6.0" + csdversion_hex=dword:00000200 + "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f + ;; + win7) + csdversion="Service Pack 1" + currentbuildnumber="7601" + currentversion="6.1" + csdversion_hex=dword:00000100 + "$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f + ;; + *) + w_die "Invalid Windows version given." + ;; + esac + + echo "Setting Windows version to $1" + cat > "$W_TMP"/set-winver.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion] +"CSDVersion"="$csdversion" +"CurrentBuildNumber"="$currentbuildnumber" +"CurrentVersion"="$currentversion" + +[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Windows] +"CSDVersion"=$csdversion_hex + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\set-winver.reg +} + +w_unset_winver() +{ + w_set_winver winxp +} + +# Present app $1 with the Windows personality $2 +w_set_app_winver() +{ + w_skip_windows w_set_app_winver && return + + _W_app="$1" + _W_version="$2" + echo "Setting $_W_app to $_W_version mode" + ( + echo REGEDIT4 + echo "" + echo "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\$_W_app]" + echo "\"Version\"=\"$_W_version\"" + ) > "$W_TMP"/set-winver.reg + + w_try_regedit "$W_TMP_WIN"\\set-winver.reg + rm "$W_TMP"/set-winver.reg + unset _W_app +} + +# Usage: w_wine_version OP VALUE +# All the integer comparison operators of 'test' are supported, since 'test' does the work. +# Example: +# if w_wine_version -gt 1.3.2 +# then +# ... +# fi +w_wine_version() +{ + # Parse major/minor/micro/nano fields of VALUE. Ignore nano. Abort if major is not 1. + case $2 in + 0*|1.0|1.0.*) w_die "bug: $2 is before 1.1, we don't bother with bugs fixed that long ago" ;; + 1.1.*) _W_minor=1; _W_micro=`echo $2 | sed 's/.*\.//'`;; + 1.2) _W_minor=2; _W_micro=0;; + 1.2.*) _W_minor=2; _W_micro=`echo $2 | sed 's/.*\.//'`;; + 1.3.*) _W_minor=3; _W_micro=`echo $2 | sed 's/.*\.//'`;; + 1.4) _W_minor=4; _W_micro=0;; + 1.4.*) _W_minor=4; _W_micro=`echo $2 | sed 's/.*\.//'`;; + 1.5.*) _W_minor=5; _W_micro=`echo $2 | sed 's/.*\.//'`;; + 1.6|1.6-rc*) _W_minor=6; _W_micro=0;; + 1.6.*) _W_minor=6; _W_micro=`echo $2 | sed 's/.*\.//'`;; + 1.7.*) _W_minor=7; _W_micro=`echo $2 | sed 's/.*\.//'`;; + 1.8.*) _W_minor=8; _W_micro=`echo $2 | sed 's/.*\.//'`;; + *) w_die "bug: unrecognized version $2";; + esac + + # Comparing current wine version 1.$WINETRICKS_WINE_MINOR.$WINETRICKS_WINE_MICRO against 1.$_W_minor.$_W_micro + if test $WINETRICKS_WINE_MINOR = $_W_minor + then + test $WINETRICKS_WINE_MICRO $1 $_W_micro || return 1 + else + test $WINETRICKS_WINE_MINOR $1 $_W_minor || return 1 + fi +} + +# Built-in self test for w_wine_version +#echo Verify that version 1.3.4 is equal to itself +#WINETRICKS_WINE_MINOR=3 WINETRICKS_WINE_MICRO=4 w_wine_version -eq 1.3.4 || w_die "fail test case wine-1.3.4 = 1.3.4" +#echo Verify that version 1.3.4 is greater than 1.2 +#WINETRICKS_WINE_MINOR=3 WINETRICKS_WINE_MICRO=4 w_wine_version -gt 1.2 || w_die "fail test case wine-1.3.4 > wine-1.2" +#echo Verify that version 1.6 is greater than 1.2 +#WINETRICKS_WINE_MINOR=6 WINETRICKS_WINE_MICRO=0 w_wine_version -gt 1.2 || w_die "fail test case wine-1.6 > wine-1.2" + +# Usage: w_wine_version_in range ... +# True if wine version in any of the given ranges +# 'range' can be +# val1, (for >= val1) +# ,val2 (for <= val2) +# val1,val2 (for >= val1 && <= val2) +w_wine_version_in() +{ + for _W_range + do + _W_val1=`echo $_W_range | sed 's/,.*//'` + _W_val2=`echo $_W_range | sed 's/.*,//'` + + # If in this range, return true + case $_W_range in + ,*) w_wine_version -le "$_W_val2" && unset _W_range _W_val1 _W_val2 && return 0;; + *,) w_wine_version -ge "$_W_val1" && unset _W_range _W_val1 _W_val2 && return 0;; + *) w_wine_version -ge "$_W_val1" && w_wine_version -le "$_W_val2" && unset _W_range _W_val1 _W_val2 && return 0;; + esac + done + unset _W_range _W_val1 _W_val2 + return 1 +} + +# Built-in self test for w_wine_version_in +#w_wine_version_in_test() +#{ +# WINETRICKS_WINE_MINOR=$1 WINETRICKS_WINE_MICRO=$2 w_wine_version_in $3 $4 $5 $6 || w_die "fail test case wine-1.$1.$2 in $3 $4 $5 $6" +#} +#w_wine_version_not_in_test() +#{ +# WINETRICKS_WINE_MINOR=$1 WINETRICKS_WINE_MICRO=$2 w_wine_version_in $3 $4 $5 $6 && w_die "fail test case wine-1.$1.$2 in $3 $4 $5 $6" +#} +#echo Verify that version 1.2.0 is in the range 1.2, +#w_wine_version_in_test 2 0 1.2, +#echo Verify that version 1.3.4 is in the range 1.2, +#w_wine_version_in_test 3 4 1.2, +#echo Verify that version 1.3 is not in the range ,1.2 +#w_wine_version_not_in_test 3 0 ,1.2 +#echo Verify that version 1.6-rc1 is in the range 1.2, +#w_wine_version_in_test 6 0 1.2, +#echo test passed + +# Usage: workaround_wine_bug bugnumber [message] [good-wine-version-range ...] +# Returns true and outputs given msg if the workaround needs to be applied. +# For debugging: if you want to skip a bug's workaround, put the bug number in +# the environment variable WINETRICKS_BLACKLIST to disable it. +w_workaround_wine_bug() +{ + if test "$WINE" = "" + then + echo No need to work around wine bug $1 on windows + return 1 + fi + case "$2" in + [0-9]*) w_die "bug: want message in w_workaround_wine_bug arg 2, got $2" ;; + "") _W_msg="";; + *) _W_msg="-- $2";; + esac + + if test "$3" && w_wine_version_in $3 $4 $5 $6 + then + echo Current wine does not have wine bug $1, so not applying workaround + return 1 + fi + + case $1 in + "$WINETRICKS_BLACKLIST") + echo wine bug $1 workaround blacklisted, skipping + return 1 + ;; + esac + case $LANG in + da*) w_warn "Arbejder uden om wine-fejl ${1} $_W_msg" ;; + de*) w_warn "Wine-Fehler ${1} wird umgegangen $_W_msg" ;; + pl*) w_warn "Obchodzenie błędu w wine ${1} $_W_msg" ;; + ru*) w_warn "Обход ошибки ${1} $_W_msg" ;; + uk*) w_warn "Обхід помилки ${1} $_W_msg" ;; + zh_CN*) w_warn "绕过 wine bug ${1} $_W_msg" ;; + zh_TW*|zh_HK*) w_warn "繞過 wine bug ${1} $_W_msg" ;; + *) w_warn "Working around wine bug ${1} $_W_msg" ;; + esac + winetricks_stats_log_command w_workaround_wine_bug-$1 + return 0 +} + +# Function for verbs to register themselves so they show up in the menu. +# Example: +# w_metadata wog games \ +# title="World of Goo Demo" \ +# pub="2D Boy" \ +# year="2008" \ +# media="download" \ +# file1="WorldOfGooDemo.1.0.exe" + +w_metadata() +{ + case $WINETRICKS_OPT_VERBOSE in + 2) set -x ;; + *) set +x ;; + esac + + if test "$installed_exe1" || test "$installed_file1" || test "$publisher" || test "$year" + then + w_die "bug: stray metadata tags set: somebody forgot a backslash in a w_metadata somewhere. Run with sh -x to see where." + fi + if winetricks_metadata_exists $1 + then + w_die "bug: a verb named $1 already exists." + fi + + _W_md_cmd="$1" + _W_category=$2 + file="$WINETRICKS_METADATA/$_W_category/$1.vars" + shift + shift + # Echo arguments to file, with double quotes around the values. + # Used to use perl here, but that was too slow on cygwin. + for arg + do + case "$arg" in + installed_exe1=/*) + w_die "bug: w_metadata $_W_md_cmd has a unix path for installed_exe1, should be a windows path";; + installed_file1=/*) + w_die "bug: w_metadata $_W_md_cmd has a unix path for installed_file1, should be a windows path";; + media=download_manual) + w_die "bug: verb $_W_md_cmd has media=download_manual, should be manual_download" ;; + esac + # Use longest match when stripping value, + # and shortest match when stripping name, + # so descriptions can have embedded equals signs + # FIXME: backslashes get interpreted here. This screws up + # installed_file1 fairly often. Fortunately, we can use forward + # slashes in that variable instead of backslashes. + echo ${arg%%=*}=\"${arg#*=}\" + done > "$file" + echo category='"'$_W_category'"' >> "$file" + # If the problem described above happens, you'd see errors like this: + # /tmp/w.dank.4650/metadata/dlls/comctl32.vars: 6: Syntax error: Unterminated quoted string + # so check for lines that aren't properly quoted. + + # Do sanity check unless running on cygwin, where it's way too slow. + case "$OS" in + "Windows_NT") + ;; + *) + if grep '[^"]$' "$file" + then + w_die "bug: w_metadata $_W_md_cmd corrupt, might need forward slashes?" + fi + ;; + esac + unset _W_md_cmd + + # Restore verbosity: + case $WINETRICKS_OPT_VERBOSE in + 1|2) set -x ;; + *) set +x ;; + esac +} + +# Function for verbs to register their main executable [or, if name is given, other executables] +# Deprecated. No-op for backwards compatibility +w_declare_exe() +{ + w_warn "w_declare_exe is deprecated, now a noop" +} + +# Checks that a conflicting verb is not already installed in the prefix +# Usage: w_conflicts verb_to_install conflicts +w_conflicts() +{ + for x in $2 + do + if grep -qw "$x" "$WINEPREFIX/winetricks.log" + then + w_die "error: $1 conflicts with $x, which is already installed." + fi + done +} + +# Call a verb, don't let it affect environment +# Hope that subshell passes through exit status +# Usage: w_do_call foo [bar] (calls load_foo bar) +# Or: w_do_call foo=bar (also calls load_foo bar) +# Or: w_do_call foo (calls load_foo) +w_do_call() +{ + ( + # Hack.. + if test $cmd = vd + then + load_vd $arg + _W_status=$? + test "$W_OPT_NOCLEAN" = 1 || rm -rf "$W_TMP" + mkdir -p "$W_TMP" + return $_W_status + fi + + case $1 in + *=*) arg=`echo $1 | sed 's/.*=//'`; cmd=`echo $1 | sed 's/=.*//'`;; + *) cmd=$1; arg=$2 ;; + esac + + # Kludge: use Temp instead of temp to avoid \t expansion in w_try + # but use temp in unix path because that's what wine creates, and having both temp and Temp + # causes confusion (e.g. makes vc2005trial fail) + # FIXME: W_TMP is also set in winetricks_set_wineprefix, can we avoid the duplication? + W_TMP="$W_DRIVE_C/windows/temp/_$1" + W_TMP_WIN="C:\\windows\\Temp\\_$1" + test "$W_OPT_NOCLEAN" = 1 || rm -rf "$W_TMP" + mkdir -p "$W_TMP" + + # Unset all known used metadata values, in case this is a nested call + unset conflicts installed_file1 installed_exe1 + + if winetricks_metadata_exists $1 + then + . "$WINETRICKS_METADATA"/*/$1.vars + elif winetricks_metadata_exists $cmd + then + . "$WINETRICKS_METADATA"/*/$cmd.vars + elif test $cmd = native || test $cmd = disabled || test $cmd = builtin || test $cmd = default + then + # ugly special case - can't have metadata for these verbs until we allow arbitrary parameters + w_override_dlls $cmd $arg + _W_status=$? + test "$W_OPT_NOCLEAN" = 1 || rm -rf "$W_TMP" + mkdir -p "$W_TMP" + return $_W_status + else + w_die "No such verb $1" + fi + + # If needed, set the app's wineprefix + case "$OS" in + Windows_NT) + ;; + *) + case "$category"-"$WINETRICKS_OPT_SHAREDPREFIX" in + apps-0|benchmarks-0|games-0) + winetricks_set_wineprefix "$cmd" + # If it's a new wineprefix, give it metadata + if test ! -f "$WINEPREFIX"/wrapper.cfg + then + echo ww_name=\"$title\" > "$WINEPREFIX"/wrapper.cfg + fi + ;; + esac + ;; + esac + + test "$W_OPT_NOCLEAN" = 1 || rm -rf "$W_TMP" + mkdir -p "$W_TMP" + + # Don't install if already installed + if test "$WINETRICKS_FORCE" != 1 && winetricks_is_installed $1 + then + echo "$1 already installed, skipping" + return 0 + fi + + # Don't install if a conflicting verb is already installed: + if test "$WINETRICKS_FORCE" != 1 && test "$conflicts" && test -f "$WINEPREFIX/winetricks.log" + then + for x in $conflicts + do + w_conflicts $1 $x + done + fi + + # We'd like to get rid of W_PACKAGE, but for now, just set it as late as possible. + W_PACKAGE=$1 + w_try load_$cmd $arg + winetricks_stats_log_command $* + + # User-specific postinstall hook. + # Source it so the script can call w_download() if needed. + postfile="$WINETRICKS_POST/$1/$1-postinstall.sh" + if test -f "$postfile" + then + chmod +x "$postfile" + . "$postfile" + fi + + # Verify install + if test "$installed_exe1" || test "$installed_file1" + then + if ! winetricks_is_installed $1 + then + w_die "$1 install completed, but installed file $_W_file_unix not found" + fi + fi + + # If the user specified --verify, also run gui tests: + if test "$WINETRICKS_VERIFY" = 1 && type verify_$cmd 2> /dev/null + then + w_try verify_$cmd + fi + + # Clean up after this verb + test "$W_OPT_NOCLEAN" = 1 || rm -rf "$W_TMP" + mkdir -p "$W_TMP" + + # Calling subshell must explicitly propagate error code with exit $? + ) || exit $? +} + +# If you want to check exit status yourself, use w_do_call +w_call() +{ + w_try w_do_call $@ +} + +w_register_font() +{ + file=$1 + shift + font=$1 + + case "$file" in + *.TTF|*.ttf) font="$font (TrueType)";; + esac + + # Kludge: use _r to avoid \r expansion in w_try + cat > "$W_TMP"/_register-font.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Fonts] +"$font"="$file" +_EOF_ + # too verbose + w_try_regedit "$W_TMP_WIN"\\_register-font.reg + cp "$W_TMP"/*.reg "$W_TMP_EARLY"/_reg$$.reg + + # Wine also updates the win9x fonts key, so let's do that, too + cat > "$W_TMP"/_register-font.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Fonts] +"$font"="$file" +_EOF_ + w_try_regedit "$W_TMP_WIN"\\_register-font.reg + cp "$W_TMP"/*.reg "$W_TMP_EARLY"/_reg$$-2.reg +} + +w_register_font_replacement() +{ + _W_alias=$1 + shift + _W_font=$1 + # Kludge: use _r to avoid \r expansion in w_try + cat > "$W_TMP"/_register-font-replacements.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] +"$_W_alias"="$_W_font" +_EOF_ + w_try_regedit "$W_TMP_WIN"\\_register-font-replacements.reg + unset _W_alias _W_font +} + +w_append_path() +{ + # Prepend $1 to the windows path in the registry. + # Use printf %s to avoid interpreting backslashes. + _W_NEW_PATH="`printf %s $1| sed 's,\\\\,\\\\\\\\,g'`" + _W_WIN_PATH="`w_expand_env PATH | sed 's,\\\\,\\\\\\\\,g'`" + + sed 's/$/\r/' > "$W_TMP"/path.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Session Manager\\Environment] +"PATH"="$_W_NEW_PATH;$_W_WIN_PATH" +_EOF_ + + w_try_regedit "$W_TMP_WIN"\\path.reg + rm -f "$W_TMP"/path.reg + unset _W_NEW_PATH _W_WIN_PATH +} + +#---- Private Functions ---- + +winetricks_get_sha1sum_prog() { + # Mac folks tend to not have sha1sum, but we can make do with openssl + if [ -x "`which sha1sum 2>/dev/null`" ] + then + WINETRICKS_SHA1SUM="sha1sum" + elif [ -x "`which openssl 2>/dev/null`" ] + then + WINETRICKS_SHA1SUM="openssl dgst -sha1" + else + w_die "No sha1sum utility available." + fi +} + +winetricks_print_version() { + # normally done by winetricks_init, but we don't want to set up the WINEPREFIX + # just to get the winetricks version: + winetricks_get_sha1sum_prog + + w_get_sha1sum $0 + echo "$WINETRICKS_VERSION - sha1sum: $_W_gotsum" +} + +# Run a small wine command for internal use +# Handy place to put small workarounds +winetricks_early_wine() +{ + # The sed works around http://bugs.winehq.org/show_bug.cgi?id=25838 + # which unfortunately got released in wine-1.3.12 + # We would like to use DISPLAY= to prevent virtual desktops from + # popping up, but that causes autohotkey's tray icon to not show up. + # We used to use WINEDLLOVERRIDES=mshtml= here to suppress the gecko + # autoinstall, but that yielded wineprefixes that *never* autoinstalled + # gecko (winezeug bug 223). + # The tr removes carriage returns so expanded variables don't have crud on the end + # The grep works around using new wineprefixes with old wine + WINEDEBUG=-all "$WINE" "$@" 2> "$W_TMP_EARLY"/early_wine.err.txt | ( sed 's/.*1h.=//' | tr -d '\r' | grep -v "Module not found" || true) +} + +winetricks_detect_gui() +{ + if test -x "`which zenity 2>/dev/null`" + then + WINETRICKS_GUI=zenity + + WINETRICKS_MENU_HEIGHT=500 + WINETRICKS_MENU_WIDTH=1010 + elif test -x "`which kdialog 2>/dev/null`" + then + echo "Zenity not found! Using kdialog as poor substitute." + WINETRICKS_GUI=kdialog + else + echo "No arguments given, so tried to start GUI, but zenity not found." + echo "Please install zenity if you want a graphical interface, or " + echo "run with --help for more options." + exit 1 + fi +} + +# Detect which sudo to use +winetricks_detect_sudo() +{ + WINETRICKS_SUDO=sudo + if test "$WINETRICKS_GUI" = "none" + then + return + fi + if test x"$DISPLAY" != x"" + then + if test -x "`which gksudo 2>/dev/null`" + then + WINETRICKS_SUDO=gksudo + elif test -x "`which kdesudo 2>/dev/null`" + then + WINETRICKS_SUDO=kdesudo + # fall back to the su versions if sudo isn't available (Fedora, etc.): + elif test -x "`which gksu 2>/dev/null`" + then + WINETRICKS_SUDO=gksu + elif test -x "`which kdesu 2>/dev/null`" + then + WINETRICKS_SUDO=kdesu + fi + fi +} + +winetricks_get_prefix_var() +{ + ( + . "$W_PREFIXES_ROOT/$p/wrapper.cfg" + # The cryptic sed is there to turn ' into '\'' + eval echo \$ww_$1 | sed "s/'/'\\\''/" + ) +} + +# Display prefix menu, get which wineprefix the user wants to work with +winetricks_prefixmenu() +{ + case $LANG in + ru*) _W_msg_title="Winetricks - выберите путь wine (wineprefix)" + _W_msg_body='Что вы хотите сделать?' + _W_msg_apps='Установить программу' + _W_msg_games='Установить игру' + _W_msg_benchmarks='Установить приложение для оценки производительности' + _W_msg_default="Выберите путь для wine по умолчанию" + _W_msg_unattended0="Отключить автоматическую установку" + _W_msg_unattended1="Включить автоматическую установку" + _W_msg_showbroken0="Спрятать нерабочие программы (например, использующие DRM)" + _W_msg_showbroken1="Отобразить нерабочие программы (например, использующие DRM)" + _W_msg_help="Просмотр справки (в веб браузере)" + ;; + uk*) _W_msg_title="Winetricks - виберіть wineprefix" + _W_msg_body='Що Ви хочете зробити?' + _W_msg_apps='Встановити додаток' + _W_msg_games='Встановити гру' + _W_msg_benchmarks='Встановити benchmark' + _W_msg_default="Вибрати wineprefix за замовчуванням" + _W_msg_unattended0="Вимкнути автоматичну установку" + _W_msg_unattended1="Включити автоматичну установку" + _W_msg_showbroken0="Сховати нестабільні додатки (наприклад з проблемами з DRM)" + _W_msg_showbroken1="Показати нестабільні додатки (наприклад з проблемами з DRM)" + _W_msg_help="Переглянути довідку" + ;; + zh_CN*) _W_msg_title="Windows 应用安装向导 - 选择一个 wine 容器" + _W_msg_body='君欲何为?' + _W_msg_apps='安装一个 windows 应用' + _W_msg_games='安装一个游戏' + _W_msg_benchmarks='安装一个基准测试软件' + _W_msg_default="选择默认的 wine 容器" + _W_msg_unattended0="禁用静默安装" + _W_msg_unattended1="启用静默安装" + _W_msg_showbroken0="隐藏有问题的程序 (例如那些有数字版权问题)" + _W_msg_showbroken1="有问题的程序 (例如那些有数字版权问题)" + _W_msg_help="查看帮助" + ;; + zh_TW*|zh_HK*) _W_msg_title="Windows 應用安裝向導 - 選取一個 wine 容器" + _W_msg_body='君欲何為?' + _W_msg_apps='安裝一個 windows 應用' + _W_msg_games='安裝一個游戲' + _W_msg_benchmarks='安裝一個基准測試軟體' + _W_msg_default="選取預設的 wine 容器" + _W_msg_unattended0="禁用靜默安裝" + _W_msg_unattended1="啟用靜默安裝" + _W_msg_showbroken0="隱藏有問題的程式 (例如那些有數字版權問題)" + _W_msg_showbroken1="有問題的程式 (例如那些有數字版權問題)" + _W_msg_help="檢視輔助說明" + ;; + de*) _W_msg_title="Winetricks - wineprefix auswählen" + _W_msg_body='Was möchten Sie tun?' + _W_msg_apps='Eine Programm installieren' + _W_msg_games='Ein Spiel installieren' + _W_msg_benchmarks='Ein Benchmark installieren' + _W_msg_default="Standard wineprefix auswählen" + _W_msg_unattended0="Automatische Installation deaktivieren" + _W_msg_unattended1="Automatische Installation aktivieren" + _W_msg_showbroken0="Defekte Programme nicht anzeigen (z.B. solche mit DRM Problemen)" + _W_msg_showbroken1="Defekte Programme anzeigen (z.B. solche mit DRM Problemen)" + _W_msg_help="Hilfe anzeigen" + ;; + *) _W_msg_title="Winetricks - choose a wineprefix" + _W_msg_body='What do you want to do?' + _W_msg_apps='Install an application' + _W_msg_games='Install a game' + _W_msg_benchmarks='Install a benchmark' + _W_msg_default="Select the default wineprefix" + _W_msg_unattended0="Disable silent install" + _W_msg_unattended1="Enable silent install" + _W_msg_showbroken0="Hide broken apps (e.g. those with DRM problems)" + _W_msg_showbroken1="Show broken apps (e.g. those with DRM problems)" + _W_msg_help="View help" + ;; + esac + case "$W_OPT_UNATTENDED" in + 1) _W_cmd_unattended=attended; _W_msg_unattended="$_W_msg_unattended0" ;; + *) _W_cmd_unattended=unattended; _W_msg_unattended="$_W_msg_unattended1" ;; + esac + case "$W_OPT_SHOWBROKEN" in + 1) _W_cmd_showbroken=hidebroken; _W_msg_showbroken="$_W_msg_showbroken0" ;; + *) _W_cmd_showbroken=showbroken; _W_msg_showbroken="$_W_msg_showbroken1" ;; + esac + + case $WINETRICKS_GUI in + zenity) + printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --radiolist \ + --column '' \ + --column '' \ + --column '' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + --hide-column 2 \ + FALSE help '$_W_msg_help' \ + FALSE apps '$_W_msg_apps' \ + FALSE benchmarks '$_W_msg_benchmarks' \ + FALSE games '$_W_msg_games' \ + TRUE main '$_W_msg_default' \ + " \ + > "$WINETRICKS_WORKDIR"/zenity.sh + + if ls -d $W_PREFIXES_ROOT/*/dosdevices > /dev/null 2>&1 + then + for prefix in "$W_PREFIXES_ROOT"/*/dosdevices + do + q="${prefix%%/dosdevices}" + p="${q##*/}" + if test -f "$W_PREFIXES_ROOT/$p/wrapper.cfg" + then + _W_msg_name="$p (`winetricks_get_prefix_var name`)" + else + _W_msg_name="$p" + fi + case $LANG in + zh_CN*) printf %s " FALSE prefix='$p' '选择管理 $_W_msg_name' " ;; + zh_TW*|zh_HK*) printf %s " FALSE prefix='$p' '選擇管理 $_W_msg_name' " ;; + de*) printf %s " FALSE prefix='$p' '$_W_msg_name auswählen' " ;; + *) printf %s " FALSE prefix='$p' 'Select $_W_msg_name' " ;; + esac + done >> "$WINETRICKS_WORKDIR"/zenity.sh + fi + printf %s " FALSE $_W_cmd_unattended '$_W_msg_unattended'" >> "$WINETRICKS_WORKDIR"/zenity.sh + printf %s " FALSE $_W_cmd_showbroken '$_W_msg_showbroken'" >> "$WINETRICKS_WORKDIR"/zenity.sh + + sh "$WINETRICKS_WORKDIR"/zenity.sh | tr '|' ' ' + ;; + + kdialog) + ( + printf %s "kdialog \ + --geometry 600x400+100+100 \ + --title '$_W_msg_title' \ + --separate-output \ + --radiolist '$_W_msg_body' \ + help '$_W_msg_help' off \ + games '$_W_msg_games' off \ + benchmarks '$_W_msg_benchmarks' off \ + apps '$_W_msg_apps' off \ + main '$_W_msg_default' on " + if ls -d "$W_PREFIXES_ROOT"/*/dosdevices > /dev/null 2>&1 + then + for prefix in "$W_PREFIXES_ROOT"/*/dosdevices + do + q="${prefix%%/dosdevices}" + p="${q##*/}" + if test -f "$W_PREFIXES_ROOT/$p/wrapper.cfg" + then + _W_msg_name="$p (`winetricks_get_prefix_var name`)" + else + _W_msg_name="$p" + fi + printf %s "prefix='$p' 'Select $_W_msg_name' off " + done + fi + ) > "$WINETRICKS_WORKDIR"/kdialog.sh + sh "$WINETRICKS_WORKDIR"/kdialog.sh + ;; + esac + unset _W_msg_help _W_msg_body _W_msg_title _W_msg_new _W_msg_default _W_msg_name +} + +# Display main menu, get which submenu the user wants +winetricks_mainmenu() +{ + case $LANG in + da*) _W_msg_title='Vælg en pakke-kategori' + _W_msg_body='Hvad ønsker du at gøre?' + _W_msg_dlls="Install a Windows DLL" + _W_msg_fonts='Install a font' + _W_msg_settings='Change Wine settings' + _W_msg_winecfg='Run winecfg' + _W_msg_regedit='Run regedit' + _W_msg_taskmgr='Run taskmgr' + _W_msg_uninstaller='Run uninstaller' + _W_msg_shell='Run a commandline shell (for debugging)' + _W_msg_folder='Browse files' + _W_msg_annihilate="Delete ALL DATA AND APPLICATIONS INSIDE THIS WINEPREFIX" + ;; + de*) _W_msg_title='Pakettyp auswählen' + _W_msg_body='Was möchten Sie tun?' + _W_msg_dlls="Windows-DLL installieren" + _W_msg_fonts='Schriftart installieren' + _W_msg_settings='Wine Einstellungen ändern' + _W_msg_winecfg='winecfg starten' + _W_msg_regedit='regedit starten' + _W_msg_taskmgr='taskmgr starten' + _W_msg_uninstaller='uninstaller starten' + _W_msg_shell='Eine Kommandozeile zum debuggen starten' + _W_msg_folder='Ordner durchsuchen' + _W_msg_annihilate="ALLE DATEIEN UND PROGRAMME IN DIESEM WINEPREFIX Löschen" + ;; + pl*) _W_msg_title="Winetricks - obecny prefiks to \"$WINEPREFIX\"" + _W_msg_body='What would you like to do to this wineprefix?' + _W_msg_dlls="Zainstaluj Windowsową bibliotekę DLL lub komponent" + _W_msg_fonts='Zainstaluj czcionkę' + _W_msg_settings='Zmień ustawienia' + _W_msg_winecfg='Uruchom winecfg' + _W_msg_regedit='Uruchom regedit' + _W_msg_taskmgr='Uruchom taskmgr' + _W_msg_uninstaller='Run uninstaller' + _W_msg_shell='Uruchom powłokę wiersza poleceń (dla debugowania)' + _W_msg_folder='Przeglądaj pliki' + _W_msg_annihilate="Usuń WSZYSTKIE DANE I APLIKACJE WEWNĄTRZ TEGO WINEPREFIXA" + ;; + ru*) _W_msg_title="Winetricks - текущий путь для wine (wineprefix) \"$WINEPREFIX\"" + _W_msg_body='Что вы хотите сделать с этим wineprefix?' + _W_msg_dlls="Установить DLL библиотеку или компонент Windows" + _W_msg_fonts='Установить шрифт' + _W_msg_settings='Поменять настройки' + _W_msg_winecfg='Запустить winecfg (редактор настроек wine)' + _W_msg_regedit='Запустить regedit (редактор рееста)' + _W_msg_taskmgr='Запустить taskmgr (менеджер задач)' + _W_msg_uninstaller='Запустить uninstaller (деинсталятор)' + _W_msg_shell='Запустить графический терминал (для отладки)' + _W_msg_folder='Проводник файлов' + _W_msg_annihilate="Удалить ВСЕ ДАННЫЕ И ПРИЛОЖЕНИЯ В ЭТОМ WINEPREFIX" + ;; + uk*) _W_msg_title="Winetricks - поточний prefix \"$WINEPREFIX\"" + _W_msg_body='Що Ви хочете зробити для цього wineprefix?' + _W_msg_dlls="Встановити Windows DLL чи компонент(и)" + _W_msg_fonts='Встановити шрифт' + _W_msg_settings='Змінити налаштування' + _W_msg_winecfg='Запустити winecfg' + _W_msg_regedit='Запустити regedit' + _W_msg_taskmgr='Запустити taskmgr' + _W_msg_uninstaller='Run uninstaller' + _W_msg_shell='Запуск командної оболонки (для налагодження)' + _W_msg_folder='Перегляд файлів' + _W_msg_annihilate="Видалити УСІ ДАНІ ТА ПРОГРАМИ З ЦЬОГО WINEPREFIX" + ;; + zh_CN*) _W_msg_title="Windows 应用安装向导 - 当前容器路径是 \"$WINEPREFIX\"" + _W_msg_body='管理当前容器' + _W_msg_dlls="安装 Windows DLL 或组件" + _W_msg_fonts='安装字体' + _W_msg_settings='修改设置' + _W_msg_winecfg='运行 winecfg' + _W_msg_regedit='运行注册表' + _W_msg_taskmgr='运行任务管理器' + _W_msg_uninstaller='运行卸载程序' + _W_msg_shell='运行命令提示窗口 (作为调试)' + _W_msg_folder='浏览容器中的文件' + _W_msg_annihilate="删除当前容器所有相关文件,包括启动器,完全卸载" + ;; + zh_TW*|zh_HK*) _W_msg_title="Windows 應用裝載向導 - 目前容器路徑是 \"$WINEPREFIX\"" + _W_msg_body='管理目前容器' + _W_msg_dlls="裝載 Windows DLL 或套件" + _W_msg_fonts='裝載字型' + _W_msg_settings='修改設定' + _W_msg_winecfg='執行 winecfg' + _W_msg_regedit='執行註冊表' + _W_msg_taskmgr='執行工作管理者' + _W_msg_uninstaller='執行反安裝程式' + _W_msg_shell='執行指令輔助說明視窗 (作為除錯)' + _W_msg_folder='瀏覽容器中的檔案' + _W_msg_annihilate="移除目前容器所有相依檔案,包括啟動器,完全卸載" + ;; + *) _W_msg_title="Winetricks - current prefix is \"$WINEPREFIX\"" + _W_msg_body='What would you like to do to this wineprefix?' + _W_msg_dlls="Install a Windows DLL or component" + _W_msg_fonts='Install a font' + _W_msg_settings='Change settings' + _W_msg_winecfg='Run winecfg' + _W_msg_regedit='Run regedit' + _W_msg_taskmgr='Run taskmgr' + _W_msg_uninstaller='Run uninstaller' + _W_msg_shell='Run a commandline shell (for debugging)' + _W_msg_folder='Browse files' + _W_msg_annihilate="Delete ALL DATA AND APPLICATIONS INSIDE THIS WINEPREFIX" + ;; + esac + + case $WINETRICKS_GUI in + zenity) + ( + printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --radiolist \ + --column '' \ + --column '' \ + --column '' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + --hide-column 2 \ + FALSE dlls '$_W_msg_dlls' \ + FALSE fonts '$_W_msg_fonts' \ + FALSE settings '$_W_msg_settings' \ + FALSE winecfg '$_W_msg_winecfg' \ + FALSE regedit '$_W_msg_regedit' \ + FALSE taskmgr '$_W_msg_taskmgr' \ + FALSE uninstaller '$_W_msg_uninstaller' \ + FALSE shell '$_W_msg_shell' \ + FALSE folder '$_W_msg_folder' \ + FALSE annihilate '$_W_msg_annihilate' \ + " + ) > "$WINETRICKS_WORKDIR"/zenity.sh + sh "$WINETRICKS_WORKDIR"/zenity.sh | tr '|' ' ' + ;; + + kdialog) + $WINETRICKS_GUI --geometry 600x400+100+100 \ + --title "$_W_msg_title" \ + --separate-output \ + --radiolist \ + "$_W_msg_body"\ + dlls "$_W_msg_dlls" off \ + fonts "$_W_msg_fonts" off \ + settings "$_W_msg_settings" off \ + winecfg "$_W_msg_winecfg" off \ + regedit "$_W_msg_regedit" off \ + taskmgr "$_W_msg_taskmgr" off \ + uninstaller "$_W_msg_uninstaller" off \ + shell "$_W_msg_shell" off \ + folder "$_W_msg_folder" off \ + annihilate "$_W_msg_annihilate" off \ + $_W_cmd_unattended "$_W_msg_unattended" off \ + + ;; + esac + unset _W_msg_body _W_msg_title _W_msg_apps _W_msg_benchmarks _W_msg_dlls _W_msg_games _W_msg_settings +} + +winetricks_settings_menu() +{ + # FIXME: these translations should really be centralized/reused: + case $LANG in + da*) _W_msg_title='Vælg en pakke' + _W_msg_body='Which settings would you like to change?' + ;; + de*) _W_msg_title="Winetricks - Aktueller Prefix ist \"$WINEPREFIX\"" + _W_msg_body='Welche Einstellungen möchten Sie ändern?' + ;; + pl*) _W_msg_title="Winetricks - obecny prefiks to \"$WINEPREFIX\"" + _W_msg_body='Which settings would you like to change?' + ;; + ru*) _W_msg_title="Winetricks - текущий путь wine (wineprefix) \"$WINEPREFIX\"" + _W_msg_body='Какие настройки вы хотите изменить?' + ;; + uk*) _W_msg_title="Winetricks - поточний prefix \"$WINEPREFIX\"" + _W_msg_body='Які налаштування Ви хочете змінити?' + ;; + zh_CN*) _W_msg_title="Windows 应用安装向导 - 当前容器路径是 \"$WINEPREFIX\"" + _W_msg_body='君欲更改哪项设置?' + ;; + zh_TW*|zh_HK*) _W_msg_title="Windows 應用裝載向導 - 目前容器路徑是 \"$WINEPREFIX\"" + _W_msg_body='君欲變更哪項設定?' + ;; + *) _W_msg_title="Winetricks - current prefix is \"$WINEPREFIX\"" + _W_msg_body='Which settings would you like to change?' + ;; + esac + + case $WINETRICKS_GUI in + zenity) + case $LANG in + da*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Pakke \ + --column Navn \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + de*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Einstellung \ + --column Name \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + pl*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Ustawienie \ + --column Nazwa \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + ru*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Установка \ + --column Имя \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + uk*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Установка \ + --column Назва \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + zh_CN*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column 设置 \ + --column 标题 \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + zh_TW*|zh_HK*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column 設定 \ + --column 標題 \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + *) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Setting \ + --column Title \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + esac > "$WINETRICKS_WORKDIR"/zenity.sh + + for metadatafile in "$WINETRICKS_METADATA"/$WINETRICKS_CURMENU/*.vars + do + code=`winetricks_metadata_basename "$metadatafile"` + ( + title='?' + author='?' + . "$metadatafile" + # Begin 'title' strings localization code + case $LANG in + uk*) case "$title_uk" in + "") ;; + *) title="$title_uk";; + esac + esac + # End of code + printf "%s %s %s %s" " " FALSE \ + $code \ + "\"$title\"" + ) + done >> "$WINETRICKS_WORKDIR"/zenity.sh + + sh "$WINETRICKS_WORKDIR"/zenity.sh | tr '|' ' ' + ;; + + kdialog) + ( + printf %s "kdialog --geometry 600x400+100+100 --title '$_W_msg_title' --separate-output --checklist '$_W_msg_body' " + winetricks_list_all | sed 's/\([^ ]*\) *\(.*\)/\1 "\1 - \2" off /' | tr '\012' ' ' + ) > "$WINETRICKS_WORKDIR"/kdialog.sh + sh "$WINETRICKS_WORKDIR"/kdialog.sh + ;; + esac + + unset _W_msg_body _W_msg_title +} + +# Display the current menu, output list of verbs to execute to stdout +winetricks_showmenu() +{ + case $LANG in + da*) _W_msg_title='Vælg en pakke' + _W_msg_body='Vilken pakke vil du installere?' + _W_cached="cached" + ;; + de*) _W_msg_title="Winetricks - Aktueller Prefix ist \"$WINEPREFIX\"" + _W_msg_body='Welche Paket(e) möchten Sie installieren?' + _W_cached="gecached" + ;; + pl*) _W_msg_title="Winetricks - obecny prefiks to \"$WINEPREFIX\"" + _W_msg_body='Które paczki chesz zainstalować?' + _W_cached="zarchiwizowane" + ;; + ru*) _W_msg_title="Winetricks - текущий путь wine (wineprefix) \"$WINEPREFIX\"" + _W_msg_body='Какое приложение(я) вы хотите установить?' + _W_cached="в кэше" + ;; + uk*) _W_msg_title="Winetricks - поточний prefix \"$WINEPREFIX\"" + _W_msg_body='Які пакунки Ви хочете встановити?' + _W_cached="кешовано" + ;; + zh_CN*) _W_msg_title="Windows 应用安装向导 - 当前容器路径是 \"$WINEPREFIX\"" + _W_msg_body='君欲安装何种应用?' + _W_cached="已缓存" + ;; + zh_TW*|zh_HK*) _W_msg_title="Windows 應用裝載向導 - 目前容器路徑是 \"$WINEPREFIX\"" + _W_msg_body='君欲裝載何種應用?' + _W_cached="已緩存" + ;; + *) _W_msg_title="Winetricks - current prefix is \"$WINEPREFIX\"" + _W_msg_body='Which package(s) would you like to install?' + _W_cached="cached" + ;; + esac + + + case $WINETRICKS_GUI in + zenity) + case $LANG in + da*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Pakke \ + --column Navn \ + --column Udgiver \ + --column År \ + --column Medie \ + --column Status \ + --column 'Size (MB)' \ + --column 'Time (sec)' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + de*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Paket \ + --column Name \ + --column Herausgeber \ + --column Jahr \ + --column Media \ + --column Status \ + --column 'Größe (MB)' \ + --column 'Zeit (sec)' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + pl*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Paczka \ + --column Nazwa \ + --column Wydawca \ + --column Rok \ + --column Media \ + --column Status \ + --column 'Rozmiar (MB)' \ + --column 'Czas (sek)' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + ru*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Пакет \ + --column Название \ + --column Издатель \ + --column Год \ + --column Источник \ + --column Статус \ + --column 'Размер (МБ)' \ + --column 'Время (сек)' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + uk*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Пакунок \ + --column Назва \ + --column Видавець \ + --column Рік \ + --column Медіа \ + --column Статус \ + --column 'Розмір (МБ)' \ + --column 'Час (сек)' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + zh_CN*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column 包名 \ + --column 软件名 \ + --column 发行商 \ + --column 发行年 \ + --column 媒介 \ + --column 状态 \ + --column '文件大小 (MB)' \ + --column '时间 (秒)' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + zh_TW*|zh_HK*) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column 包名 \ + --column 軟體名 \ + --column 發行商 \ + --column 發行年 \ + --column 媒介 \ + --column 狀態 \ + --column '檔案大小 (MB)' \ + --column '時間 (秒)' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + *) printf %s "zenity \ + --title '$_W_msg_title' \ + --text '$_W_msg_body' \ + --list \ + --checklist \ + --column '' \ + --column Package \ + --column Title \ + --column Publisher \ + --column Year \ + --column Media \ + --column Status \ + --column 'Size (MB)' \ + --column 'Time (sec)' \ + --height $WINETRICKS_MENU_HEIGHT \ + --width $WINETRICKS_MENU_WIDTH \ + " + ;; + esac > "$WINETRICKS_WORKDIR"/zenity.sh + + > "$WINETRICKS_WORKDIR"/installed.txt + for metadatafile in "$WINETRICKS_METADATA"/$WINETRICKS_CURMENU/*.vars + do + code=`winetricks_metadata_basename "$metadatafile"` + ( + title='?' + author='?' + . "$metadatafile" + if test "$W_OPT_SHOWBROKEN" = 1 || test "$wine_showstoppers" = "" + then + # Compute cached and downloadable flags + flags="" + winetricks_is_cached $code && flags="$_W_cached" + installed=FALSE + if winetricks_is_installed $code + then + installed=TRUE + echo $code >> "$WINETRICKS_WORKDIR"/installed.txt + fi + printf %s " $installed \ + $code \ + \"$title\" \ + \"$publisher\" \ + \"$year\" \ + \"$media\" \ + \"$flags\" \ + \"$size_MB\" \ + \"$time_sec\" \ + " + fi + ) + done >> "$WINETRICKS_WORKDIR"/zenity.sh + + # Filter out any verb that's already installed + sh "$WINETRICKS_WORKDIR"/zenity.sh | + tr '|' '\012' | + fgrep -v -x -f "$WINETRICKS_WORKDIR"/installed.txt | + tr '\012' ' ' + ;; + + kdialog) + ( + printf %s "kdialog --geometry 600x400+100+100 --title '$_W_msg_title' --separate-output --checklist '$_W_msg_body' " + winetricks_list_all | sed 's/\([^ ]*\) *\(.*\)/\1 "\1 - \2" off /' | tr '\012' ' ' + ) > "$WINETRICKS_WORKDIR"/kdialog.sh + sh "$WINETRICKS_WORKDIR"/kdialog.sh + ;; + esac + + unset _W_msg_body _W_msg_title +} + +# Converts a metadata abolute path to its app code +winetricks_metadata_basename() +{ + # Classic, but too slow on cygwin + #basename $1 .vars + + # first, remove suffix .vars + _W_mb_tmp=${1%.vars} + # second, remove any directory prefix + echo ${_W_mb_tmp##*/} + unset _W_mb_tmp +} + +# Returns true if given verb has been registered +winetricks_metadata_exists() +{ + test -f "$WINETRICKS_METADATA"/*/$1.vars +} + +# Returns true if given verb has been cached +# You must have already loaded its metadata before calling +winetricks_is_cached() +{ + # FIXME: also check file2... if given + _W_path="$W_CACHE/$1/$file1" + case "$_W_path" in + *..*) + # Remove /foo/.. so verbs that don't have their own cache directories + # can refer to siblings + _W_path="`echo $_W_path | sed 's,/[^/]*/\.\.,,'`" + ;; + esac + if test -f "$_W_path" + then + unset _W_path + return 0 + fi + unset _W_path + return 1 +} + +# Returns true if given verb has been installed +# You must have already loaded its metadata before calling +winetricks_is_installed() +{ + unset _W_file _W_file_unix + if test "$installed_exe1" + then + _W_file="$installed_exe1" + elif test "$installed_file1" + then + _W_file="$installed_file1" + else + return 1 # not installed + fi + + case "$OS" in + Windows_NT) + # On Windows, there's no wineprefix, just check if file's there + _W_file_unix="`w_pathconv -u "$_W_file"`" + if test -f "$_W_file_unix" + then + unset _W_file _W_file_unix _W_prefix + return 0 # installed + fi + ;; + *) + # Compute wineprefix for this app + case "$category"-"$WINETRICKS_OPT_SHAREDPREFIX" in + apps-0|benchmarks-0|games-0) + _W_prefix="$W_PREFIXES_ROOT/$1" + ;; + *) + _W_prefix="$WINEPREFIX" + ;; + esac + if test -d "$_W_prefix/dosdevices" + then + # 'win7 vcrun2005' creates different file than 'winxp vcrun2005' + # so let it specify multiple, separated by | + _W_IFS="$IFS" + IFS='|' + for _W_file_ in $_W_file + do + _W_file_unix="`WINEPREFIX="$_W_prefix" w_pathconv -u "$_W_file_"`" + if test -f "$_W_file_unix" && ! grep -q "Wine placeholder DLL" "$_W_file_unix" + then + IFS="$_W_IFS" + unset _W_file _W_file_ _W_file_unix _W_prefix _W_IFS + return 0 # installed + fi + done + IFS="$_W_IFS" + fi + ;; + esac + unset _W_file _W_prefix # leak _W_file_unix for caller. Is this wise? + unset _W_IFS _W_file_ + return 1 # not installed +} + +# List verbs which are already fully cached locally +winetricks_list_cached() +{ + for _W_metadatafile in "$WINETRICKS_METADATA"/*/*.vars + do + # Use a subshell to avoid putting metadata in global space + # If this is too slow, we can unset known metadata by hand + ( + code=`winetricks_metadata_basename "$_W_metadatafile"` + . "$_W_metadatafile" + if winetricks_is_cached $code + then + echo $code + fi + ) + done | sort + unset _W_metadatafile +} + +# List verbs which are automatically downloadable, regardless of whether they're cached yet +winetricks_list_download() +{ + cd "$WINETRICKS_METADATA" + grep -l 'media=.download' */*.vars | sed 's,.*/,,;s/\.vars//' | sort -u +} + +# List verbs which are downloadable with user intervention, regardless of whether they're cached yet +winetricks_list_manual_download() +{ + cd "$WINETRICKS_METADATA" + grep -l 'media=.manual_download' */*.vars | sed 's,.*/,,;s/\.vars//' | sort -u +} + +winetricks_list_installed() +{ + ( + # Jump through a couple hoops to evaluate the verbs in alphabetical order + # Assume that no filename contains '|' + cd "$WINETRICKS_METADATA" + for _W_metadatafile in `ls */*.vars | sed 's,^\(.*\)/,\1|,' | sort -t\| -k 2 | tr '|' /` + do + # Use a subshell to avoid putting metadata in global space + # If this is too slow, we can unset known metadata by hand + ( + code=`winetricks_metadata_basename "$_W_metadatafile"` + . "$_W_metadatafile" + if winetricks_is_installed $code + then + echo $code + fi + ) + done + ) + unset _W_metadatafile +} + +# Helper for adding a string to a list of flags +winetricks_append_to_flags() +{ + if test "$flags" + then + flags="$flags," + fi + flags="${flags}$1" +} + +# List all verbs in category WINETRICKS_CURMENU verbosely +# Format is "verb title (publisher, year) [flags]" +winetricks_list_all() +{ + # Note: doh123 relies on 'winetricks list' to list main menu categories + case $WINETRICKS_CURMENU in + prefix|main) echo "$WINETRICKS_CATEGORIES" | tr ' ' '\012' ; return;; + esac + + case $LANG in + da*) _W_cached="cached" ; _W_download="kan hentes" ;; + de*) _W_cached="gecached" ; _W_download="herunterladbar";; + pl*) _W_cached="zarchiwizowane" ; _W_download="do pobrania" ;; + ru*) _W_cached="в кэше" ; _W_download="доступно для скачивания" ;; + uk*) _W_cached="кешовано" ; _W_download="завантажуване" ;; + zh_CN*) _W_cached="已缓存" ; _W_download="可下载" ;; + zh_TW*|zh_HK*) _W_cached="已緩存" ; _W_download="可下載" ;; + *) _W_cached="cached" ; _W_download="downloadable" ;; + esac + + for _W_metadatafile in "$WINETRICKS_METADATA"/$WINETRICKS_CURMENU/*.vars + do + # Use a subshell to avoid putting metadata in global space + # If this is too slow, we can unset known metadata by hand + ( + code=`winetricks_metadata_basename "$_W_metadatafile"` + . "$_W_metadatafile" + + # Compute cached and downloadable flags + flags="" + test "$media" = "download" && winetricks_append_to_flags "$_W_download" + winetricks_is_cached $code && winetricks_append_to_flags "$_W_cached" + test "$flags" && flags="[$flags]" + + if ! test "$year" && ! test "$publisher" + then + printf "%-24s %s %s\n" $code "$title" "$flags" + else + printf "%-24s %s (%s, %s) %s\n" $code "$title" "$publisher" "$year" "$flags" + fi + ) + done + unset _W_cached _W_metadatafile +} + +# Abort if user doesn't own the given directory (or its parent, if it doesn't exist yet) +winetricks_die_if_user_not_dirowner() +{ + if test -d "$1" + then + _W_checkdir="$1" + else + # fixme: quoting problem? + _W_checkdir=`dirname "$1"` + fi + _W_nuser=`id -u` + _W_nowner=`ls -l -n -d -L "$_W_checkdir" | awk '{print $3}'` + if test x$_W_nuser != x$_W_nowner + then + w_die "You (`id -un`) don't own $_W_checkdir. Don't run this tool as another user!" + fi +} + +# See +# http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-119.pdf (iso9660) +# http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-167.pdf +# http://www.osta.org/specs/pdf/udf102.pdf +# http://www.ecma-international.org/publications/techreports/E-TR-071.htm + +# Usage: read_bytes offset count device +winetricks_read_bytes() +{ + dd status=noxfer if=$3 bs=1 skip=$1 count=$2 2>/dev/null +} + +# Usage: read_hex offset count device +winetricks_read_hex() +{ + od -j $1 -N $2 -t x1 $3 | # offset $1, count $2, single byte hex format, file $3 + sed 's/^[^ ]* //' | # remove address + sed '$d' # remove final line which is just final offset +} + +# Usage: read_decimal offset device +# Reads single four byte word, outputs in decimal. +# Uses default endianness. +# udf uses little endian words, so this only works on little endian machines. +winetricks_read_decimal() +{ + od -j $1 -N 4 -t u4 $2 | # offset $1, byte count 4, four byte decimal format, file $2 + sed 's/^[^ ]* //' | # remove address + sed '$d' # remove final line which is just final offset +} + +winetricks_read_udf_volume_name() +{ + # "Anchor volume descriptor pointer" starts at sector 256 + + # AVDP Layout (ECMA-167 3/10.2): + # size offset contents + # 16 0 descriptor tag (id = 2) + # 16 8 main (primary?) volume descriptor sequence extent + # ... + + # descriptor tag layout (ECMA-167 3/7.2): + # size offset contents + # 2 0 TagIdentifier + # ... + + # extent layout (ECMA-167 3/7.1): + # size offset contents + # 4 0 length (in bytes) + # 8 4 location (in 2k sectors) + + # primary volume descriptor layout (ECMA-167 3/10.1): + # size offset contents + # 16 0 descriptor tag (id = 1) + # ... + # 32 24 volume identifier (dstring) + + # 1. check the 16 bit TagIdentifier of the descriptor tag, make sure it's 2 + tagid=`winetricks_read_hex 524288 2 $1` + : echo tagid is $tagid + case "$tagid" in + "02 00") : echo Found AVDP ;; + *) echo "Did not find AVDP (tagid was $tagid)"; exit 1;; + esac + + # 2. read the location of the main volume descriptor: + offset=`winetricks_read_decimal 524308 $1` + : echo MVD is at sector $offset + offset=`expr $offset \* 2048` + : echo MVD is at byte $offset + + # 3. check the TagIdentifier of the MVD's descriptor tag, make sure it's 1 + tagid=`winetricks_read_hex $offset 2 $1` + : echo tagid is $tagid + case "$tagid" in + "01 00") : echo Found MVD ;; + *) echo Did not find MVD; exit 1;; + esac + + # 4. Read whether the name is in 8 or 16 bit chars + offset=`expr $offset + 24` + width=`winetricks_read_hex $offset 1 $1` + + offset=`expr $offset + 1` + + # 5. Profit! + case $width in + 08) winetricks_read_bytes $offset 30 $1 | sed 's/ *$//' ;; + 10) winetricks_read_bytes $offset 30 $1 | tr -d '\000' | sed 's/ *$//' ;; + *) echo "Unhandled dvd volname character width '$width'"; exit 1;; + esac + + echo "" +} + +winetricks_read_iso9660_volume_name() +{ + winetricks_read_bytes 32808 30 $1 | sed 's/ *$//' +} + +winetricks_read_volume_name() +{ + # ECMA-119 says that CD-ROMs have sector size 2k, and at sector 16 have: + # size offset contents + # 1 0 Volume descriptor type (1 for primary volume descriptor) + # 5 1 Standard identifier ("CD001" for iso9660) + # ECMA-167, section 9.1.2, has a table of standard identifiers: + # "BEA01": ecma-167 9.2, Beginning Extended Area Descriptor + # "CD001": ecma-119 + # "CDW02": ecma-168 + + std_id=`winetricks_read_bytes 32769 5 $1` + : echo std_id is $std_id + + case $std_id in + CD001) winetricks_read_iso9660_volume_name $1 ;; + BEA01) winetricks_read_udf_volume_name $1; ;; + *) echo "Unrecognized disk type $std_id"; exit 1 ;; + esac +} + +winetricks_volname() +{ + x=`volname $1 2> /dev/null| sed 's/ *$//'` + if test "x$x" = "x" + then + # UDF? See https://bugs.launchpad.net/bugs/678419 + x=`winetricks_read_volume_name $1` + fi + echo $x +} + +# Really, should take a volume name as argument, and use 'mount' to get +# mount point if system automounted it. +winetricks_detect_optical_drive() +{ + case "$WINETRICKS_DEV" in + "") ;; + *) return ;; + esac + + for WINETRICKS_DEV in /dev/cdrom /dev/dvd /dev/sr0 + do + test -b $WINETRICKS_DEV && break + done + + case "$WINETRICKS_DEV" in + "x") w_die "can't find cd/dvd drive" ;; + esac +} + +winetricks_cache_iso() +{ + # WINETRICKS_IMG has already been set by w_mount + _W_expected_volname="$1" + + winetricks_die_if_user_not_dirowner "$W_CACHE" + winetricks_detect_optical_drive + + # Horrible hack for Gentoo - make sure we can read from the drive + if ! test -r $WINETRICKS_DEV + then + case "$WINETRICKS_SUDO" in + gksudo) $WINETRICKS_SUDO "chmod 666 $WINETRICKS_DEV" ;; + *) $WINETRICKS_SUDO chmod 666 $WINETRICKS_DEV ;; + esac + fi + + while true + do + # Wait for user to insert disc. + # Sleep long to make it less likely to close the drive during insertion. + while ! dd if=$WINETRICKS_DEV of=/dev/null count=1 + do + sleep 5 + done + + # Some distros automount discs in /media, take advantage of that + if test -d "/media/_W_expected_volname" + then + break + fi + # Otherwise try and read it straight from unmounted volume + _W_volname=`winetricks_volname $WINETRICKS_DEV` + if test "$_W_expected_volname" != "$_W_volname" + then + case $LANG in + da*) w_warn "Forkert disk [$_W_volname] indsat. Indsæt venligst disken [$_W_expected_volname]" ;; + de*) w_warn "Falsche Disk [$_W_volname] eingelegt. Bitte legen Sie Disk [$_W_expected_volname] ein!" ;; + pl*) w_warn "Włożono zły dysk [$_W_volname]. Proszę włożyć dysk [$_W_expected_volname]" ;; + ru*) w_warn "Неверный диск [$_W_volname]. Пожалуйста, вставьте диск [$_W_expected_volname]" ;; + uk*) w_warn "Неправильний диск [$_W_volname]. Будь ласка, вставте диск [$_W_expected_volname]" ;; + zh_CN*) w_warn " [$_W_volname] 光盘插入错误,请插入光盘 [$_W_expected_volname]" ;; + zh_TW*|zh_HK*) w_warn " [$_W_volname] 光碟插入錯誤,請插入光碟 [$_W_expected_volname]" ;; + *) w_warn "Wrong disc [$_W_volname] inserted. Please insert disc [$_W_expected_volname]" ;; + esac + + sleep 10 + else + break + fi + done + + # Copy disc to .iso file, display progress every 5 seconds + # Use conv=noerror,sync to replace unreadable blocks with zeroes + case $WINETRICKS_OPT_DD in + dd) + $WINETRICKS_OPT_DD if=$WINETRICKS_DEV of="$W_CACHE"/temp.iso bs=2048 conv=noerror,sync & + WINETRICKS_DD_PID=$! + ;; + ddrescue) + if test "`which ddrescue`" = "" + then + w_die "Please install ddrescue first." + fi + $WINETRICKS_OPT_DD -v -b 2048 $WINETRICKS_DEV "$W_CACHE"/temp.iso & + WINETRICKS_DD_PID=$! + ;; + esac + echo $WINETRICKS_DD_PID > "$WINETRICKS_WORKDIR"/dd-pid + + # Note: if user presses ^C, winetricks_cleanup will call winetricks_iso_cleanup + # FIXME: add progress bar for kde, too + case $WINETRICKS_GUI in + none|kdialog) + while ps -p $WINETRICKS_DD_PID > /dev/null 2>&1 + do + sleep 5 + ls -l "$W_CACHE"/temp.iso + done + ;; + zenity) + while ps -p $WINETRICKS_DD_PID > /dev/null 2>&1 + do + echo 1 + sleep 2 + done | $WINETRICKS_GUI --title "Copying to $_W_expected_volname.iso" --progress --pulsate --auto-kill + ;; + esac + rm "$WINETRICKS_WORKDIR"/dd-pid + + mv "$W_CACHE"/temp.iso "$WINETRICKS_IMG" + + eject $WINETRICKS_DEV || true # punt if eject not found (as on cygwin) +} + +winetricks_load_vcdmount() +{ + if test "$WINE" != "" + then + return + fi + + # Call only on real Windows. + # Sets VCD_DIR and W_ISO_MOUNT_ROOT + + # The only free mount tool I know for Windows Vista is Virtual CloneDrive, + # which can be downloaded at + # http://www.slysoft.com/en/virtual-clonedrive.html + # FIXME: actually install it here + + # Locate vcdmount.exe. + VCD_DIR="Elaborate Bytes/VirtualCloneDrive" + if test ! -x "$W_PROGRAMS_UNIX/$VCD_DIR/vcdmount.exe" && test ! -x "$W_PROGRAMS_X86_UNIX/$VCD_DIR/vcdmount.exe" + then + w_warn "Installing Virtual CloneDrive" + w_download_to vcd http://static.slysoft.com/SetupVirtualCloneDrive.exe + # have to use cmd else vista won't let cygwin run .exe's? + chmod +x "$W_CACHE"/vcd/SetupVirtualCloneDrive.exe + cd "$W_CACHE/vcd" + cmd /c SetupVirtualCloneDrive.exe + fi + if test -x "$W_PROGRAMS_UNIX/$VCD_DIR/vcdmount.exe" + then + VCD_DIR="$W_PROGRAMS_UNIX/$VCD_DIR" + elif test -x "$W_PROGRAMS_X86_UNIX/$VCD_DIR/vcdmount.exe" + then + VCD_DIR="$W_PROGRAMS_X86_UNIX/$VCD_DIR" + else + w_die "can't find Virtual CloneDrive?" + fi + # FIXME: Use WMI to locate the drive named + # "ELBY CLONEDRIVE..." using WMI as described in + # http://delphihaven.wordpress.com/2009/07/05/using-wmi-to-get-a-drive-friendly-name/ +} + +winetricks_mount_cached_iso() +{ + # On entry, WINETRICKS_IMG is already set + w_umount + + if test "$WINE" = "" + then + winetricks_load_vcdmount + my_img_win="`w_pathconv -w $WINETRICKS_IMG | tr '\012' ' ' | sed 's/ $//'`" + cd "$VCD_DIR" + w_try vcdmount.exe /l=$letter "$my_img_win" + + tries=0 + while test $tries -lt 20 + do + for W_ISO_MOUNT_LETTER in e f g h i j k + do + # let user blacklist drive letters + echo "$WINETRICKS_MOUNT_LETTER_IGNORE" | grep -q "$W_ISO_MOUNT_LETTER" && continue + W_ISO_MOUNT_ROOT=/cygdrive/$W_ISO_MOUNT_LETTER + if find $W_ISO_MOUNT_ROOT -iname 'setup*' -o -iname '*.exe' -o -iname '*.msi' + then + break 2 + fi + done + tries=`expr $tries + 1` + echo "Waiting for mount to finish mounting" + sleep 1 + done + else + # Linux + # FIXME: find a way to mount or copy from image without sudo + _W_USERID=`id -u` + case "$WINETRICKS_SUDO" in + gksudo) + w_try $WINETRICKS_SUDO "mkdir -p $W_ISO_MOUNT_ROOT" + w_try $WINETRICKS_SUDO "mount -o ro,loop,uid=$_W_USERID,unhide $WINETRICKS_IMG $W_ISO_MOUNT_ROOT" + ;; + *) + w_try $WINETRICKS_SUDO mkdir -p $W_ISO_MOUNT_ROOT + w_try $WINETRICKS_SUDO mount -o ro,loop,uid=$_W_USERID,unhide "$WINETRICKS_IMG" $W_ISO_MOUNT_ROOT + ;; + esac + + echo "Mounting as drive ${W_ISO_MOUNT_LETTER}:" + # Gotta provide a symlink to the raw disc, else installers that check volume names will fail + rm -f "$WINEPREFIX/dosdevices/${W_ISO_MOUNT_LETTER}:"* + ln -sf "$WINETRICKS_IMG" "$WINEPREFIX/dosdevices/${W_ISO_MOUNT_LETTER}::" + ln -sf "$W_ISO_MOUNT_ROOT" "$WINEPREFIX/dosdevices/${W_ISO_MOUNT_LETTER}:" + unset _W_USERID + fi +} + +# List the currently mounted udf or iso9660 filesystems that match the given pattern +# Output format: +# dev mountpoint +# dev mountpoint +# ... +# Mountpoints may contain spaces. + +winetricks_list_mounts() +{ + mount | egrep 'udf|iso9660' | sed 's,^\([^ ]*\) on \(.*\) type .*,\1 \2,'| grep "$1\$" +} + +# Return success and set _W_dev _W_mountpoint if volume $1 is mounted +# Note: setting variables as a way of returning results from a +# shell function exposed several bugs in most shells (except ksh!) +# related to implicit subshells. It would be better to output +# one string to stdout instead. +winetricks_is_mounted() +{ + # First, check for matching mountpoint + _W_tmp="`winetricks_list_mounts "$1"`" + if test "$_W_tmp" + then + _W_dev=`echo $_W_tmp | sed 's/ .*//'` + _W_mountpoint="`echo $_W_tmp | sed 's/^[^ ]* //'`" + # Volume found! + return 0 + fi + + # If that fails, read volume name the hard way for each volume + # Have to use file to return results from implicit subshell + rm -f "$W_TMP_EARLY/_W_tmp.$LOGNAME" + winetricks_list_mounts . | while true + do + IFS= read _W_tmp + + _W_dev=`echo $_W_tmp | sed 's/ .*//'` + test "$_W_dev" || break + _W_mountpoint="`echo $_W_tmp | sed 's/^[^ ]* //'`" + _W_volname=`winetricks_volname $_W_dev` + if test "$1" = "$_W_volname" + then + # Volume found! Want to return from function here, but can't + echo "$_W_tmp" > "$W_TMP_EARLY/_W_tmp.$LOGNAME" + break + fi + done + + if test -f "$W_TMP_EARLY/_W_tmp.$LOGNAME" + then + # Volume found! Return from function. + _W_dev=`cat "$W_TMP_EARLY/_W_tmp.$LOGNAME" | sed 's/ .*//'` + _W_mountpoint="`cat "$W_TMP_EARLY/_W_tmp.$LOGNAME" | sed 's/^[^ ]* //'`" + rm -f "$W_TMP_EARLY/_W_tmp.$LOGNAME" + return 0 + fi + + # Volume not found + unset _W_dev _W_mountpoint _W_volname + return 1 +} + +winetricks_mount_real_volume() +{ + _W_expected_volname="$1" + + # Wait for user to insert disc. + + case $LANG in + da*)_W_mountmsg="Indsæt venligst disken '$_W_expected_volname' (krævet af pakken '$_PACKAGE')" ;; + de*)_W_mountmsg="Bitte Disk '$_W_expected_volname' einlegen (für Paket '$W_PACKAGE')" ;; + pl*) _W_mountmsg="Proszę włożyć dysk '$_W_expected_volname' (potrzebny paczce '$W_PACKAGE')" ;; + ru*) _W_mountmsg="Пожалуйста, вставьте том '$_W_expected_volname' (требуется для пакета '$W_PACKAGE')" ;; + uk*) _W_mountmsg="Будь ласка, вставте том '$_W_expected_volname' (потрібний для пакунка '$W_PACKAGE')" ;; + zh_CN*) _W_mountmsg="请插入卷 '$_W_expected_volname' (为包 '$W_PACKAGE 所需')" ;; + zh_TW*|zh_HK*) _W_mountmsg="請插入卷 '$_W_expected_volname' (為包 '$W_PACKAGE 所需')" ;; + *) _W_mountmsg="Please insert volume '$_W_expected_volname' (needed for package '$W_PACKAGE')" ;; + esac + + if test "$WINE" = "" + then + # Assume already mounted, just get drive letter + W_ISO_MOUNT_LETTER=`awk '/iso/ {print $1}' < /proc/mounts | tr -d :` + W_ISO_MOUNT_ROOT=`awk '/iso/ {print $2}' < /proc/mounts` + else + while ! winetricks_is_mounted "$_W_expected_volname" + do + w_try w_warn_cancel "$_W_mountmsg" + # In non-gui case, give user two seconds to futz with disc drive before spamming him again + sleep 2 + done + WINETRICKS_DEV=$_W_dev + W_ISO_MOUNT_ROOT="$_W_mountpoint" + + # Gotta provide a symlink to the raw disc, else installers that check volume names will fail + rm -f "$WINEPREFIX/dosdevices/${W_ISO_MOUNT_LETTER}:"* + ln -sf "$WINETRICKS_DEV" "$WINEPREFIX/dosdevices/${W_ISO_MOUNT_LETTER}::" + ln -sf "$W_ISO_MOUNT_ROOT" "$WINEPREFIX/dosdevices/${W_ISO_MOUNT_LETTER}:" + fi + + # FIXME: need to remount some discs with unhide option, + # add that as option to w_mount + + unset _W_mountmsg +} + +winetricks_cleanup() +{ + # We don't want to run this multiple times, so unfortunately we have to run it here: + if test "$W_NGEN_CMD" + then + "$W_NGEN_CMD" + fi + + set +e + if test -f "$WINETRICKS_WORKDIR/dd-pid" + then + kill `cat "$WINETRICKS_WORKDIR/dd-pid"` + fi + test "$WINETRICKS_CACHE_SYMLINK" && rm -f "$WINETRICKS_CACHE_SYMLINK" + test "$W_OPT_NOCLEAN" = 1 || rm -rf "$WINETRICKS_WORKDIR" + # if $W_TMP_EARLY was created by mktemp, remove it: + test "$W_OPT_NOCLEAN" = 1 || test "$W_TMP_EARLY_CLEAN" = 1 && rm -rf "$W_TMP_EARLY" +} + +winetricks_set_unattended() +{ + # We shouldn't use all these extra variables. Instead, we should + # use ${foo:+bar} to jam in commandline options for silent install + # only if W_OPT_UNATTENDED is nonempty. See + # http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_02 + # So in attended mode, W_OPT_UNATTENDED should be empty. + + case $1 in + 1) + W_OPT_UNATTENDED=1 + # Might want to trim our stable of variables here a bit... + W_UNATTENDED_DASH_Q="-q" + W_UNATTENDED_SLASH_Q="/q" + W_UNATTENDED_SLASH_QB="/qb" + W_UNATTENDED_SLASH_QN="/qn" + W_UNATTENDED_SLASH_QNT="/qnt" + W_UNATTENDED_SLASH_QT="/qt" + W_UNATTENDED_SLASH_QUIET="/quiet" + W_UNATTENDED_SLASH_S="/S" + W_UNATTENDED_DASH_SILENT="-silent" + W_UNATTENDED_SLASH_SILENT="/silent" + ;; + *) + W_OPT_UNATTENDED="" + W_UNATTENDED_DASH_Q="" + W_UNATTENDED_SLASH_Q="" + W_UNATTENDED_SLASH_QB="" + W_UNATTENDED_SLASH_QN="" + W_UNATTENDED_SLASH_QNT="" + W_UNATTENDED_SLASH_QT="" + W_UNATTENDED_SLASH_QUIET="" + W_UNATTENDED_SLASH_S="" + W_UNATTENDED_DASH_SILENT="" + W_UNATTENDED_SLASH_SILENT="" + ;; + esac +} + +# Usage: winetricks_set_wineprefix [bottlename] +# Bottlename must not contain spaces, slashes, or other special characters +# If bottlename is omitted, the default bottle (~/.wine) is used. +winetricks_set_wineprefix() +{ + if ! test "$1" + then + WINEPREFIX="$WINETRICKS_ORIGINAL_WINEPREFIX" + else + WINEPREFIX="$W_PREFIXES_ROOT/$1" + fi + export WINEPREFIX + #echo "WINEPREFIX is now $WINEPREFIX" >&2 + mkdir -p "`dirname "$WINEPREFIX"`" + + # Run wine here to force creation of the wineprefix so it's there when we want to make the cache symlink a bit later. + # The folder-name is localized! + W_PROGRAMS_WIN="`w_expand_env ProgramFiles`" + case "$W_PROGRAMS_WIN" in + "") w_die "$WINE cmd.exe /c echo '%ProgramFiles%' returned empty string, error message \"`cat $W_TMP_EARLY/early_wine.err.txt`\" ";; + %*) w_die "$WINE cmd.exe /c echo '%ProgramFiles%' returned unexpanded string '$W_PROGRAMS_WIN' ... this can be caused by a corrupt wineprefix, by an old wine, or by not owning $WINEPREFIX" ;; + *unknown*) w_die "$WINE cmd.exe /c echo '%ProgramFiles%' returned a string containing the word 'unknown', as if a voice had cried out in terror, and was suddenly silenced." ;; + esac + + case "$OS" in + "Windows_NT") + W_DRIVE_C="/cygdrive/c" ;; + *) + W_DRIVE_C="$WINEPREFIX/dosdevices/c:" ;; + esac + + # Kludge: use Temp instead of temp to avoid \t expansion in w_try + # but use temp in unix path because that's what wine creates, and having both temp and Temp + # causes confusion (e.g. makes vc2005trial fail) + if ! test "$1" + then + W_TMP="$W_DRIVE_C/windows/temp" + W_TMP_WIN="C:\\windows\\Temp" + else + # Verbs can rely on W_TMP being empty at entry, deleted after return, and a subdir of C: + W_TMP="$W_DRIVE_C/windows/temp/_$1" + W_TMP_WIN="C:\\windows\\Temp\\_$1" + fi + + case "$OS" in + "Windows_NT") + W_CACHE_WIN="`w_pathconv -w $W_CACHE`" + ;; + *) + # For case where z: doesn't exist or / is writable (!), + # make a drive letter for W_CACHE. Clean it up on exit. + test "$WINETRICKS_CACHE_SYMLINK" && rm -f "$WINETRICKS_CACHE_SYMLINK" + for letter in y x w v u t s r q p o n m + do + if ! test -d "$WINEPREFIX"/dosdevices/${letter}: + then + mkdir -p "$WINEPREFIX"/dosdevices + WINETRICKS_CACHE_SYMLINK="$WINEPREFIX"/dosdevices/${letter}: + ln -sf "$W_CACHE" "$WINETRICKS_CACHE_SYMLINK" + break + fi + done + W_CACHE_WIN="${letter}:" + ;; + esac + + # FIXME wrong on 64 bit windows for now + W_COMMONFILES_X86_WIN="`w_expand_env CommonProgramFiles`" + + W_WINDIR_UNIX="$W_DRIVE_C/windows" + + # FIXME: move that tr into w_pathconv, if it's still needed? + W_PROGRAMS_UNIX="`w_pathconv -u "$W_PROGRAMS_WIN"`" + + # 64 bit windows has a second directory for program files + W_PROGRAMS_X86_WIN="${W_PROGRAMS_WIN} (x86)" + W_PROGRAMS_X86_UNIX="${W_PROGRAMS_UNIX} (x86)" + if ! test -d "$W_PROGRAMS_X86_UNIX" + then + W_PROGRAMS_X86_WIN="${W_PROGRAMS_WIN}" + W_PROGRAMS_X86_UNIX="${W_PROGRAMS_UNIX}" + fi + + W_APPDATA_WIN="`w_expand_env AppData`" + W_APPDATA_UNIX="`w_pathconv -u "$W_APPDATA_WIN"`" + + # FIXME: get fonts path from SHGetFolderPath + # See also http://blogs.msdn.com/oldnewthing/archive/2003/11/03/55532.aspx + W_FONTSDIR_WIN="c:\\windows\\Fonts" + + # FIXME: just convert path from windows to unix? + # Did the user rename Fonts to fonts? + if test ! -d "$W_WINDIR_UNIX"/Fonts && test -d "$W_WINDIR_UNIX"/fonts + then + W_FONTSDIR_UNIX="$W_WINDIR_UNIX"/fonts + else + W_FONTSDIR_UNIX="$W_WINDIR_UNIX"/Fonts + fi + mkdir -p "${W_FONTSDIR_UNIX}" + + # Win(e) 32/64? + # Using the variable W_SYSTEM32_DLLS instead of SYSTEM32 because some stuff does go under system32 for both arch's + # e.g., spool/drivers/color + if test -d "$W_DRIVE_C/windows/syswow64" + then + W_ARCH=win64 + W_SYSTEM32_DLLS="$W_WINDIR_UNIX/syswow64" + W_SYSTEM32_DLLS_WIN="C:\\windows\\syswow64" + W_SYSTEM64_DLLS="$W_WINDIR_UNIX/system32" + W_SYSTEM64_DLLS_WIN32="C:\\windows\\sysnative" # path to access 64-bit dlls from 32-bit apps + W_SYSTEM64_DLLS_WIN64="C:\\windows\\system32" # path to access 64-bit dlls from 64-bit apps + # 64-bit prefixes still have plenty of issues: + w_warn "You are using a 64-bit WINEPREFIX. If you encounter problems, please retest in a clean 32-bit WINEPREFIX before reporting a bug." + else + W_ARCH=win32 + W_SYSTEM32_DLLS="$W_WINDIR_UNIX/system32" + W_SYSTEM32_DLLS_WIN="C:\\windows\\system32" + fi +} + +winetricks_annihilate_wineprefix() +{ + w_skip_windows "No wineprefix to delete on windows" && return + + w_askpermission "Delete $WINEPREFIX, its apps, icons, and menu items?" + rm -rf "$WINEPREFIX"/* + rm -rf "$WINEPREFIX" + + # Also remove menu items. + find $XDG_DATA_HOME/applications/wine -type f -name '*.desktop' -exec grep -q -l "$WINEPREFIX" '{}' ';' -exec rm '{}' ';' + + # Also remove desktop items. + # Desktop might be synonym for home directory, so only go one level + # deep to avoid extreme slowdown if user has lots of files + ( + if ! test "$XDG_DESKTOP_DIR" && test -f $XDG_CONFIG_HOME/user-dirs.dirs + then + . $XDG_CONFIG_HOME/user-dirs.dirs + fi + find "$XDG_DESKTOP_DIR" -maxdepth 1 -type f -name '*.desktop' -exec grep -q -l "$WINEPREFIX" '{}' ';' -exec rm '{}' ';' + ) + + # FIXME: recover more nicely. At moment, have to restart to avoid trouble. + exit 0 +} + +winetricks_init() +{ + #---- Private Variables ---- + + if ! test "$USERNAME" + then + # Posix only requires LOGNAME to be defined, and sure enough, when + # logging in via console and startx in ubuntu 11.04, USERNAME isn't set! + # And even normal logins in Ubuntu 13.04 doesn't set it. + # I tried using only LOGNAME in this script, but it's so easy to slip + # and use USERNAME, so define it here if needed. + USERNAME="$LOGNAME" + fi + + # Ephemeral files for this run + WINETRICKS_WORKDIR="$W_TMP_EARLY/w.$LOGNAME.$$" + test "$W_OPT_NOCLEAN" = 1 || rm -rf "$WINETRICKS_WORKDIR" + + # Registering a verb creates a file in WINETRICKS_METADATA + WINETRICKS_METADATA="$WINETRICKS_WORKDIR/metadata" + + # The list of categories is also hardcoded in winetricks_mainmenu() :-( + WINETRICKS_CATEGORIES="apps benchmarks dlls fonts games settings" + for _W_cat in $WINETRICKS_CATEGORIES + do + mkdir -p "$WINETRICKS_METADATA"/$_W_cat + done + + # Which subdirectory of WINETRICKS_METADATA is currently active (or main, if none) + WINETRICKS_CURMENU=prefix + + # Delete work directory after each run, on exit either graceful or abrupt + trap winetricks_cleanup EXIT HUP INT QUIT ABRT + + # Whether to always cache cached iso's (1) or only use cache if present (0) + # Can be inherited from environment or set via -k, defaults to off + WINETRICKS_OPT_KEEPISOS=${WINETRICKS_OPT_KEEPISOS:-0} + + # what program to use to make disc image (dd or ddrescue) + WINETRICKS_OPT_DD=${WINETRICKS_OPT_DD:-dd} + + # whether to use shared wineprefix (1) or unique wineprefix for each app (0) + WINETRICKS_OPT_SHAREDPREFIX=${WINETRICKS_OPT_SHAREDPREFIX:-0} + + WINETRICKS_SOURCEFORGE=http://downloads.sourceforge.net + + winetricks_get_sha1sum_prog + + #---- Public Variables ---- + + # Where application installers are cached + # See http://standards.freedesktop.org/basedir-spec/latest/ar01s03.html + if test -d "$HOME/Library/Caches" + then + # MacOSX + XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/Library/Caches}" + else + XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}" + fi + if test "$WINETRICKS_DIR" + then + # For backwards compatibility + W_CACHE="${W_CACHE:-$WINETRICKS_DIR/cache}" + WINETRICKS_POST="${WINETRICKS_POST:-$WINETRICKS_DIR/postinstall}" + else + W_CACHE="${W_CACHE:-$XDG_CACHE_HOME/winetricks}" + WINETRICKS_POST="${WINETRICKS_POST:-$XDG_DATA_HOME/winetricks/postinstall}" + fi + test -d "$W_CACHE" || mkdir -p "$W_CACHE" + WINETRICKS_AUTH="${WINETRICKS_AUTH:-$XDG_DATA_HOME/winetricks/auth}" + + # System-specific variables + case "$OS" in + "Windows_NT") + WINE="" + WINESERVER="" + W_DRIVE_C="C:/" + ;; + *) + WINE="${WINE:-wine}" + # Find wineserver. + # Some distros (Debian before wine 1.8-2) don't have it on the path. + for x in \ + "$WINESERVER" \ + "${WINE}server" \ + "`which wineserver 2> /dev/null`" \ + "`dirname $WINE`/server/wineserver" \ + /usr/bin/wineserver-development \ + /usr/lib/wine/wineserver \ + /usr/lib/i386-kfreebsd-gnu/wine/wineserver \ + /usr/lib/i386-linux-gnu/wine/wineserver \ + /usr/lib/powerpc-linux-gnu/wine/wineserver \ + /usr/lib/i386-kfreebsd-gnu/wine/bin/wineserver \ + /usr/lib/i386-linux-gnu/wine/bin/wineserver \ + /usr/lib/powerpc-linux-gnu/wine/bin/wineserver \ + /usr/lib/x86_64-linux-gnu/wine/bin/wineserver \ + /usr/lib/i386-kfreebsd-gnu/wine-development/wineserver \ + /usr/lib/i386-linux-gnu/wine-development/wineserver \ + /usr/lib/powerpc-linux-gnu/wine-development/wineserver \ + /usr/lib/x86_64-linux-gnu/wine-development/wineserver \ + file-not-found + do + if test -x "$x" + then + case "$x" in + /usr/lib/*/wine-development/wineserver|/usr/bin/wineserver-development) + if test -x /usr/bin/wine-development + then + WINE="/usr/bin/wine-development" + fi + ;; + esac + break + fi + done + case "$x" in + file-not-found) + w_die "wineserver not found!" ;; + *) + WINESERVER="$x" ;; + esac + + if test "$WINEPREFIX" + then + WINETRICKS_ORIGINAL_WINEPREFIX="$WINEPREFIX" + else + WINETRICKS_ORIGINAL_WINEPREFIX="$HOME/.wine" + fi + _abswine="`which "$WINE" 2>/dev/null`" + if ! test -x "$_abswine" || ! test -f "$_abswine" + then + w_die "WINE is $WINE, which is neither on the path nor an executable file" + fi + case "$WINETRICKS_OPT_VERBOSE" in + 1|2) echo -n "Wine is '$WINE'; Wine version is " + "$WINE" --version || w_die "Can't get wine version" + echo "winetricks is $0 ; winetricks version is $WINETRICKS_VERSION" + ;; + esac + unset _abswine + ;; + esac + winetricks_set_wineprefix $1 + + # FIXME: don't hardcode + W_PROGRAMS_DRIVE=c + + + # Whether to automate installs (0=no, 1=yes) + winetricks_set_unattended ${W_OPT_UNATTENDED:-0} + + # Overridden for windows + W_ISO_MOUNT_ROOT=/mnt/winetricks + W_ISO_MOUNT_LETTER=i + + WINETRICKS_WINE_VERSION=`winetricks_early_wine --version | sed 's/.*wine/wine/'` + # A small hack... + case "$WINETRICKS_WINE_VERSION" in + wine-1.4-*) WINETRICKS_WINE_VERSION="wine-1.4.40"; export WINETRICKS_WINE_VERSION;; + wine-1.4) WINETRICKS_WINE_VERSION="wine-1.4.0"; export WINETRICKS_WINE_VERSION;; + wine-1.6-*) WINETRICKS_WINE_VERSION="wine-1.6.0"; export WINETRICKS_WINE_VERSION;; + wine-1.6) WINETRICKS_WINE_VERSION="wine-1.6.0"; export WINETRICKS_WINE_VERSION;; + wine-1.8-*) WINETRICKS_WINE_VERSION="wine-1.8.0"; export WINETRICKS_WINE_VERSION;; + wine-1.8) WINETRICKS_WINE_VERSION="wine-1.8.0"; export WINETRICKS_WINE_VERSION;; + esac + WINETRICKS_WINE_MINOR=`echo $WINETRICKS_WINE_VERSION | sed 's/wine-1\.\([0-9]*\)\..*/\1/'` + WINETRICKS_WINE_MICRO=`echo $WINETRICKS_WINE_VERSION | sed 's/wine-1.[0-9][0-9]*\.\([0-9]*\).*/\1/'` +} + +winetricks_usage() +{ + case $LANG in + da*) + cat <<_EOF_ +Brug: $0 [tilvalg] [verbum|sti-til-verbum] ... +Kører de angivne verber. Hvert verbum installerer et program eller ændrer en indstilling. +Tilvalg: +-k|--keep_isos: lagr iso'er lokalt (muliggør senere installation uden disk) +-q|--unattended: stil ingen spørgsmål, installér bare automatisk +-r|--ddrescue: brug alternativ disk-tilgangsmetode (hjælper i tilfælde af en ridset disk) +-t|--torify: Run downloads under torify, if available +-v|--verbose: vis alle kommandoer som de bliver udført +-V|--version: vis programversionen og afslut +-h|--help: vis denne besked og afslut +Diverse verber: +list: vis en liste over alle verber +list-cached: vis en liste over verber for allerede-hentede installationsprogrammer +list-download: vis en liste over verber for programmer der kan hentes +list-manual-download: list applications which can be downloaded with some help from the user +list-installed: list already-installed applications +_EOF_ + ;; + de*) + cat <<_EOF_ +Benutzung: $0 [options] [Kommando|Verb|Pfad-zu-Verb] ... +Angegebene Verben ausführen. +Jedes Verb installiert eine Anwendung oder ändert eine Einstellung. + +Optionen: + --force Nicht prüfen ob Pakete bereits installiert wurden + --gui GUI Diagnosen anzeigen, auch wenn von der Kommandozeile gestartet + --isolate Jedes Programm oder Spiel in eigener Bottle (WINEPREFIX) installieren +-k, --keep_isos ISOs local speichern (erlaubt spätere Installation ohne Disk) + --no-clean Temp Verzeichnisse nicht löschen (nützlich beim debuggen) +-q, --unattended Keine Fragen stellen, alles automatisch installieren +-r, --ddrescue Alternativer Zugriffsmodus (hilft bei zerkratzten Disks) + --showbroken Auch Verben anzeigen die momentan in Wine nicht funktionieren +-t --torify Run downloads under torify, if available + --verify Wenn Möglisch automatische GUI Tests für Verben starten +-v, --verbose Alle ausgeführten Kommandos anzeigen +-h, --help Diese Hilfemeldung anzeigen +-V, --version Programmversion anzeigen und Beenden + +Kommandos: +list Kategorien auflisten +list-all Alle Kategorien und deren Verben auflisten +apps list Verben der Kategorie 'Anwendungen' auflisten +benchmarks list Verben der Kategorie 'Benchmarks' auflisten +dlls list Verben der Kategorie 'DLLs' auflisten +games list Verben der Kategorie 'Spiele' auflisten +settings list Verben der Kategorie 'Einstellungen' auflisten +list-cached Verben für bereits gecachte Installers auflisten +list-download Verben für automatisch herunterladbare Anwendungen auflisten +list-manual-download Verben für vom Benutzer herunterladbare Anwendungen auflisten +list-installed Bereits installierte Verben auflisten +prefix=foobar WINEPREFIX=$W_PREFIXES_ROOT/foobar auswählen +_EOF_ + ;; + *) + cat <<_EOF_ +Usage: $0 [options] [command|verb|path-to-verb] ... +Executes given verbs. Each verb installs an application or changes a setting. + +Options: + --force Don't check whether packages were already installed + --gui Show gui diagnostics even when driven by commandline + --isolate Install each app or game in its own bottle (WINEPREFIX) + --self-update Update this application to the last version + --update-rollback Rollback the last self update +-k, --keep_isos Cache isos (allows later installation without disc) + --no-clean Don't delete temp directories (useful during debugging) +-q, --unattended Don't ask any questions, just install automatically +-r, --ddrescue Retry hard when caching scratched discs + --showbroken Even show verbs that are currently broken in wine +-t --torify Run downloads under torify, if available + --verify Run (automated) GUI tests for verbs, if available +-v, --verbose Echo all commands as they are executed +-h, --help Display this message and exit +-V, --version Display version and exit + +Commands: +list list categories +list-all list all categories and their verbs +apps list list verbs in category 'applications' +benchmarks list list verbs in category 'benchmarks' +dlls list list verbs in category 'dlls' +games list list verbs in category 'games' +settings list list verbs in category 'settings' +list-cached list cached-and-ready-to-install verbs +list-download list verbs which download automatically +list-manual-download list verbs which download with some help from the user +list-installed list already-installed verbs +prefix=foobar select WINEPREFIX=$W_PREFIXES_ROOT/foobar +_EOF_ + ;; + esac +} + +winetricks_handle_option() +{ + case "$1" in + -r|--ddrescue) WINETRICKS_OPT_DD=ddrescue ;; + -k|--keep_isos) WINETRICKS_OPT_KEEPISOS=1 ;; + -q|--unattended) winetricks_set_unattended 1 ;; + -t|--torify) WINETRICKS_OPT_TORIFY=1 ;; + -v|--verbose) WINETRICKS_OPT_VERBOSE=1 ; set -x;; + -vv|--really-verbose) WINETRICKS_OPT_VERBOSE=2 ; set -x ;; + -V|--version) winetricks_print_version ; exit 0;; + --verify) WINETRICKS_VERIFY=1 ;; + -h|--help) winetricks_usage ; exit 0 ;; + --self-update) winetricks_selfupdate;; + --update-rollback) winetricks_selfupdate_rollback;; + --isolate) WINETRICKS_OPT_SHAREDPREFIX=0 ;; + --no-isolate) WINETRICKS_OPT_SHAREDPREFIX=1 ;; + --no-clean) W_OPT_NOCLEAN=1 ;; + --force) WINETRICKS_FORCE=1;; + --gui) winetricks_detect_gui;; + --showbroken) W_OPT_SHOWBROKEN=1 ;; + --optin) WINETRICKS_STATS_REPORT=1;; + --optout) WINETRICKS_STATS_REPORT=0;; + -*) w_die "unknown option $1" ;; + *) return 1 ;; + esac + return 0 +} + +# Must initialize variables before calling w_metadata +if ! test "$WINETRICKS_LIB" +then + WINETRICKS_SRCDIR=`dirname "$0"` + WINETRICKS_SRCDIR=`cd "$WINETRICKS_SRCDIR"; pwd` + + # Which GUI helper to use (none/zenity/kdialog). See winetricks_detect_gui. + WINETRICKS_GUI=none + # Default to a shared prefix: + WINETRICKS_OPT_SHAREDPREFIX=${WINETRICKS_OPT_SHAREDPREFIX:-1} + + # Handle options before init, to avoid starting wine for --help or --version + while winetricks_handle_option $1 + do + shift + done + + # Workaround for https://github.com/Winetricks/winetricks/issues/599 + # If --isolate is used, pass verb to winetricks_init, so it can set the wineprefix using winetricks_set_wineprefix() + # Otherwise, an arch mismatch between ${WINEPREFIX:-$HOME/.wine} and the prefix to be made for the isolated app would cause it to fail + case $WINETRICKS_OPT_SHAREDPREFIX in + 0) winetricks_init $1 ;; + *) winetricks_init ;; + esac +fi + +winetricks_install_app() +{ + case $LANG in + da*) fail_msg="Installationen af pakken $1 fejlede" ;; + de*) fail_msg="Installieren von Paket $1 gescheitert" ;; + pl*) fail_msg="Niepowodzenie przy instalacji paczki $1" ;; + ru*) fail_msg="Ошибка установки пакета $1" ;; + uk*) fail_msg="Помилка встановлення пакунка $1" ;; + zh_CN*) fail_msg="$1 安装失败" ;; + zh_TW*|zh_HK*) fail_msg="$1 安裝失敗" ;; + *) fail_msg="Failed to install package $1" ;; + esac + + # FIXME: initialize a new wineprefix for this app, set lots of global variables + if ! w_do_call $1 $2 + then + w_die "$fail_msg" + fi +} + +#---- Builtin Verbs ---- + +#---------------------------------------------------------------- +# Runtimes +#---------------------------------------------------------------- + +#----- common download for several verbs + +helper_directx_dl() +{ + # February 2010 DirectX 9c User Redistributable + # http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=0cef8180-e94a-4f56-b157-5ab8109cb4f5 + # FIXME: none of the verbs that use this will show download status right + # until file1 metadata is extended to handle common cache dir + w_download_to directx9 http://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe a97c820915dc20929e84b49646ec275760012a42 + + DIRECTX_NAME=directx_feb2010_redist.exe +} + +helper_directx_Jun2010() +{ + # June 2010 DirectX 9c User Redistributable + # http://www.microsoft.com/downloads/en/details.aspx?FamilyID=3b170b25-abab-4bc3-ae91-50ceb6d8fa8d + w_download_to directx9 http://download.microsoft.com/download/8/4/A/84A35BF1-DAFE-4AE8-82AF-AD2AE20B6B14/directx_Jun2010_redist.exe + + DIRECTX_NAME=directx_Jun2010_redist.exe +} + +helper_d3dx9_xx() +{ + dllname=d3dx9_$1 + + helper_directx_dl + + # Even kinder, less invasive directx - only extract and override d3dx9_xx.dll + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x86*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F "$dllname.dll" "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x64*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F "$dllname.dll" "$x" + done + fi + + w_override_dlls native $dllname +} + +helper_win2ksp4() +{ + filename=$1 + + # http://www.microsoft.com/downloads/details.aspx?FamilyID=1001AAF1-749F-49F4-8010-297BD6CA33A0&displaylang=en + w_download_to win2ksp4 http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE fadea6d94a014b039839fecc6e6a11c20afa4fa8 + w_try_cabextract -d "$W_TMP" -L -F $filename "$W_CACHE"/win2ksp4/W2KSP4_EN.EXE +} + +helper_xpsp3() +{ + filename=$1 + + # http://www.microsoft.com/en-us/download/details.aspx?id=24 + w_download_to xpsp3 http://download.microsoft.com/download/d/3/0/d30e32d8-418a-469d-b600-f32ce3edf42d/WindowsXP-KB936929-SP3-x86-ENU.exe c81472f7eeea2eca421e116cd4c03e2300ebfde4 + + w_try_cabextract -d "$W_TMP" -L -F $filename "$W_CACHE"/xpsp3/WindowsXP-KB936929-SP3-x86-ENU.exe +} + +helper_win7sp1() +{ + filename=$1 + + # https://www.microsoft.com/en-us/download/details.aspx?id=5842 + w_download_to win7sp1 http://download.microsoft.com/download/0/A/F/0AFB5316-3062-494A-AB78-7FB0D4461357/windows6.1-KB976932-X86.exe c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa + + w_try_cabextract -d "$W_TMP" -L -F $filename "$W_CACHE"/win7sp1/windows6.1-KB976932-X86.exe +} + +#--------------------------------------------------------- + +w_metadata adobeair dlls \ + title="Adobe AIR 20.x" \ + publisher="Adobe" \ + year="2015" \ + media="download" \ + file1="AdobeAIRInstaller.exe" \ + installed_file1="$W_COMMONFILES_X86_WIN/Adobe AIR/Versions/1.0/Adobe AIR.dll" \ + homepage="http://www.adobe.com/products/air/" + +load_adobeair() +{ + # 2010-02-02: sha1sum 5c95f51a680f8c175a92755238127be4ad22c53b + # 2010-02-20: sha1sum 6f03e723bd855abbe00eb8fdf22da54fb49c62db + # 2010-07-29: 2.0.2 sha1sum 7b93aedaf48ad7854940e7a4e7d9394a255e888b + # 2010-12-08: 2.5.1 sha1sum 2664207ca8e836f5070ee356064829a39785a92e + # 2011-04-13: 2.6 sha1sum 3d9c2f9d8f3533424cfea84d61fcb9464278d9fc + # 2011-10-26: 2.7 sha1sum dfa337d4b53e9d924356febc116450190fa183dd + # 2014-03-01: 4.0 sha1sum 0034bdd4e0b2ce0fa6198b0b715fba85754d9a57 + # http://helpx.adobe.com/en/flash-player/release-note/fp_12_air_4_release_notes.html + # 2014-09-30: 15.0 sha1sum 46341f1358bc6e0b9ddeae3591662a2ac68dc360 + # 2014-11-24: 15.0.0.356 sha1sum c0e6b8b1ed5ffa282945d21b21f8a5e03febc904 + # 2015-11-06: 19.x sha1sum 3bc2a568204a3a9b59ca347ab49585f0c5fab279 + # 2015-12-27: 20.0 sha1sum 9c10b7be43771869c381c73197c9a0fcd1b727cf + # 2015-12-29: 20.0.0.233 (had to check with strings on Adobe AIR.dll) sha1sum 7161fb8b47721485882f52720f8b41dbfe3b69d0 + # 2016-02-17: 20.0.0.260 (strings 'Adobe AIR.dll' | grep 20\\. ) sha1sum 2fdd561556fe881c4e5538d4ee37f523871befd3 + + w_download http://airdownload.adobe.com/air/win/download/20.0/AdobeAIRInstaller.exe 2fdd561556fe881c4e5538d4ee37f523871befd3 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" AdobeAIRInstaller.exe $W_UNATTENDED_DASH_SILENT +} + +#---------------------------------------------------------------- + +w_metadata amstream dlls \ + title="MS amstream.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/amstream.dll" + +load_amstream() +{ + helper_directx_dl + mkdir "$W_CACHE"/amstream # kludge so test -f $file1 works + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'amstream.dll' "$W_TMP/dxnt.cab" + w_try_regsvr amstream.dll + + w_override_dlls native amstream +} + +#---------------------------------------------------------------- + +w_metadata art2kmin dlls \ + title="MS Access 2007 runtime" \ + publisher="Microsoft" \ + year="2007" \ + media="download" \ + file1="AccessRuntime.exe" \ + installed_file1="$W_COMMONFILES_X86_WIN/Microsoft Shared/OFFICE12/ACEES.DLL" + +load_art2kmin() +{ + # See http://www.microsoft.com/downloads/details.aspx?familyid=d9ae78d9-9dc6-4b38-9fa6-2c745a175aed&displaylang=en + w_download http://download.microsoft.com/download/D/2/A/D2A2FC8B-0447-491C-A5EF-E8AA3A74FB98/AccessRuntime.exe 571811b7536e97cf4e4e53bbf8260cddd69f9b2d + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" AccessRuntime.exe $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata atmlib dlls \ + title="Adobe Type Manager" \ + publisher="Adobe" \ + year="2009" \ + media="download" \ + file1="../win2ksp4/W2KSP4_EN.EXE" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/atmlib.dll" + +load_atmlib() +{ + helper_win2ksp4 i386/atmlib.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/atmlib.dl_ +} + +#---------------------------------------------------------------- + +w_metadata avifil32 dlls \ + title="MS avifil32" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="../xpsp3/WindowsXP-KB936929-SP3-x86-ENU.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/avifil32.dll" + +load_avifil32() +{ + helper_xpsp3 i386/avifil32.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/avifil32.dl_ + + w_override_dlls native avifil32 +} + +#---------------------------------------------------------------- + +w_metadata cabinet dlls \ + title="Microsoft cabinet.dll" \ + publisher="Microsoft" \ + year="2002" \ + media="download" \ + file1="mdac_typ.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/cabinet.dll" + +load_cabinet() +{ + # http://www.microsoft.com/downloads/en/details.aspx?FamilyId=9AD000F2-CAE7-493D-B0F3-AE36C570ADE8&displaylang=en + w_download http://download.microsoft.com/download/3/b/f/3bf74b01-16ba-472d-9a8c-42b2b4fa0d76/mdac_typ.exe f68594d1f578c3b47bf0639c46c11c5da161feee + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/cabinet/$file1 + w_try cp "$W_TMP"/cabinet.dll "$W_SYSTEM32_DLLS"/cabinet.dll + + w_override_dlls native,builtin cabinet +} + +#---------------------------------------------------------------- + +w_metadata cmd dlls \ + title="MS cmd.exe" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="Q811493_W2K_SP4_X86_EN.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/cmd.exe" + +load_cmd() +{ + w_download ftp://ftp.sunet.se/pub/security/vendor/microsoft/win2000/Security_Bulletins/Q811493_W2K_SP4_X86_EN.exe ac6e28cfd12942e74aa08bddf7715705edb85b6b + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_CACHE/$W_PACKAGE/$file1" -F cmd.exe + + w_override_dlls native,builtin cmd.exe +} + +#---------------------------------------------------------------- + +w_metadata comctl32 dlls \ + title="MS common controls 5.80" \ + publisher="Microsoft" \ + year="2001" \ + media="download" \ + file1="cc32inst.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/comctl32.dll" + +load_comctl32() +{ + # 2011-01-17: http://www.microsoft.com/downloads/details.aspx?familyid=6f94d31a-d1e0-4658-a566-93af0d8d4a1e + # 2012-08-11: w_download http://download.microsoft.com/download/platformsdk/redist/5.80.2614.3600/w9xnt4/en-us/cc32inst.exe 94c3c494258cc54bd65d2f0153815737644bffde + # 2016/01/07: w_download ftp://ftp.ie.debian.org/disk1/download.sourceforge.net/pub/sourceforge/p/po/pocmin/Win%2095_98%20Controls/Win%2095_98%20Controls/CC32inst.exe + + w_download ftp://ftp.ie.debian.org/disk1/download.sourceforge.net/pub/sourceforge/p/po/pocmin/Win%2095_98%20Controls/Win%2095_98%20Controls/CC32inst.exe 94c3c494258cc54bd65d2f0153815737644bffde cc32inst.exe + + w_try "$WINE" "$W_CACHE"/comctl32/cc32inst.exe "/T:$W_TMP_WIN" /c $W_UNATTENDED_SLASH_Q + w_try_unzip "$W_TMP" "$W_TMP"/comctl32.exe + w_try "$WINE" "$W_TMP"/x86/50ComUpd.Exe "/T:$W_TMP_WIN" /c $W_UNATTENDED_SLASH_Q + w_try cp "$W_TMP"/comcnt.dll "$W_SYSTEM32_DLLS"/comctl32.dll + + w_override_dlls native,builtin comctl32 + + # some builtin apps don't like native comctl32 + w_override_app_dlls winecfg.exe builtin comctl32 + w_override_app_dlls explorer.exe builtin comctl32 + w_override_app_dlls iexplore.exe builtin comctl32 +} + +#---------------------------------------------------------------- + +w_metadata comctl32ocx dlls \ + title="MS comctl32.ocx and mscomctl.ocx, comctl32 wrappers for VB6" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="VisualBasic6-KB896559-v1-ENU.exe" \ + file2="mscomct2.cab" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mscomctl.ocx" + +load_comctl32ocx() +{ + # http://www.microsoft.com/downloads/details.aspx?FamilyID=25437D98-51D0-41C1-BB14-64662F5F62FE + w_download http://download.microsoft.com/download/3/a/5/3a5925ac-e779-4b1c-bb01-af67dc2f96fc/VisualBasic6-KB896559-v1-ENU.exe f52cf2034488235b37a1da837d1c40eb2a1bad84 + # More ActiveX controls. See https://support.microsoft.com/kb/297381 + w_download http://activex.microsoft.com/controls/vb6/mscomct2.cab 766f9ccf8849a04d757faee379da54d635c8ac71 + + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/comctl32ocx/VisualBasic6-KB896559-v1-ENU.exe + w_try cp "$W_TMP"/mscomctl.ocx "$W_SYSTEM32_DLLS"/mscomctl.ocx + w_try cp "$W_TMP"/comctl32.ocx "$W_SYSTEM32_DLLS"/comctl32.ocx + w_try_regsvr comctl32.ocx + w_try_regsvr mscomctl.ocx + + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/comctl32ocx/mscomct2.cab + w_try cp "$W_TMP"/mscomct2.ocx "$W_SYSTEM32_DLLS"/mscomct2.ocx + w_try_regsvr mscomct2.ocx +} + +#---------------------------------------------------------------- + +w_metadata comdlg32ocx dlls \ + title="Common Dialog ActiveX Control for VB6" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="ComDlg32.cab" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/comdlg32.ocx" + +load_comdlg32ocx() +{ + # By analogy with vb5 version in http://support.microsoft.com/kb/168917 + w_download http://activex.microsoft.com/controls/vb6/ComDlg32.cab d4f3e193c6180eccd73bad53a8500beb5b279cbf + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/comdlg32ocx/${file1} + w_try cp "$W_TMP"/comdlg32.ocx "$W_SYSTEM32_DLLS"/comdlg32.ocx + w_try_regsvr comdlg32.ocx +} + +#---------------------------------------------------------------- + +w_metadata crypt32 dlls \ + title="MS crypt32" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="../xpsp3/WindowsXP-KB936929-SP3-x86-ENU.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/crypt32.dll" + +load_crypt32() +{ + w_call msasn1 + + helper_xpsp3 i386/crypt32.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/crypt32.dl_ + + w_override_dlls native crypt32 +} + +#---------------------------------------------------------------- + +w_metadata binkw32 dlls \ + title="RAD Game Tools binkw32.dll" \ + publisher="RAD Game Tools, Inc." \ + year="2000" \ + media="download" \ + file1="__32-binkw32.dll3.0.0.0.zip" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/binkw32.dll" + +load_binkw32() +{ + # Mirror: http://www.dlldump.com/download-dll-files_new.php/dllfiles/B/binkw32.dll/1.0q/download.html + # Sha1sum of the decompressed file: 613f81f82e12131e86ae60dd318941f40db2200f + # + # Zip sha1sum: + # 2015-03-28: 991f77e8df513ccb8663dc4a2753fbf90338ef5c + # 2015-12-27: 6a30900885390ef361dbb67444a7944143db36bf + w_download http://www.down-dll.com/dll/b/__32-binkw32.dll3.0.0.0.zip 6a30900885390ef361dbb67444a7944143db36bf + + w_try_unzip "$W_TMP" "$W_CACHE"/binkw32/__32-binkw32.dll3.0.0.0.zip + w_try cp "$W_TMP"/binkw32.dll "$W_SYSTEM32_DLLS"/binkw32.dll + + w_override_dlls native binkw32 +} + +#---------------------------------------------------------------- + +w_metadata d3dcompiler_43 dlls \ + title="MS d3dcompiler_43.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_Jun2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dcompiler_43.dll" \ + wine_showstoppers="24013" # list a showstopper to hide this from average users for now + +load_d3dcompiler_43() +{ + dllname=d3dcompiler_43 + + helper_directx_Jun2010 + + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x86*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F "$dllname.dll" "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x64*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F "$dllname.dll" "$x" + done + fi + + w_override_dlls native $dllname +} + +#---------------------------------------------------------------- + +w_metadata d3drm dlls \ + title="MS d3drm.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3drm.dll" + +load_d3drm() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F "dxnt.cab" "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F "d3drm.dll" "$W_TMP/dxnt.cab" + + w_override_dlls native d3drm +} + +#---------------------------------------------------------------- + +w_metadata d3dx9 dlls \ + title="MS d3dx9_??.dll from DirectX 9 redistributable" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_Jun2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx9_43.dll" + +load_d3dx9() +{ + helper_directx_Jun2010 + + # Kinder, less invasive directx - only extract and override d3dx9_??.dll + w_try_cabextract -d "$W_TMP" -L -F '*d3dx9*x86*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'd3dx9*.dll' "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F '*d3dx9*x64*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'd3dx9*.dll' "$x" + done + fi + + # For now, not needed, but when Wine starts preferring our builtin dll over native it will be. + w_override_dlls native d3dx9_24 d3dx9_25 d3dx9_26 d3dx9_27 d3dx9_28 d3dx9_29 d3dx9_30 + w_override_dlls native d3dx9_31 d3dx9_32 d3dx9_33 d3dx9_34 d3dx9_35 d3dx9_36 d3dx9_37 + w_override_dlls native d3dx9_38 d3dx9_39 d3dx9_40 d3dx9_41 d3dx9_42 d3dx9_43 +} + +#---------------------------------------------------------------- + +w_metadata d3dx9_26 dlls \ + title="MS d3dx9_26.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx9_26.dll" + +load_d3dx9_26() +{ + helper_d3dx9_xx 26 +} + +#---------------------------------------------------------------- + +w_metadata d3dx9_28 dlls \ + title="MS d3dx9_28.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx9_28.dll" + +load_d3dx9_28() +{ + helper_d3dx9_xx 28 +} + +#---------------------------------------------------------------- + +w_metadata d3dx9_31 dlls \ + title="MS d3dx9_31.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx9_31.dll" + +load_d3dx9_31() +{ + helper_d3dx9_xx 31 +} + +#---------------------------------------------------------------- + +w_metadata d3dx9_35 dlls \ + title="MS d3dx9_35.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx9_35.dll" + +load_d3dx9_35() +{ + helper_d3dx9_xx 35 +} + +#---------------------------------------------------------------- + +w_metadata d3dx9_36 dlls \ + title="MS d3dx9_36.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx9_36.dll" + +load_d3dx9_36() +{ + helper_d3dx9_xx 36 +} + +#---------------------------------------------------------------- + +w_metadata d3dx9_39 dlls \ + title="MS d3dx9_39.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx9_39.dll" + +load_d3dx9_39() +{ + helper_d3dx9_xx 39 +} + +#---------------------------------------------------------------- + +w_metadata d3dx9_42 dlls \ + title="MS d3dx9_42.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx9_42.dll" + +load_d3dx9_42() +{ + helper_d3dx9_xx 42 +} + +#---------------------------------------------------------------- + +w_metadata d3dx9_43 dlls \ + title="MS d3dx9_43.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_Jun2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx9_43.dll" + +load_d3dx9_43() +{ + dllname=d3dx9_43 + + helper_directx_Jun2010 + + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x86*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F "$dllname.dll" "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x64*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F "$dllname.dll" "$x" + done + fi + + w_override_dlls native $dllname +} + +#---------------------------------------------------------------- + +w_metadata d3dx11_42 dlls \ + title="MS d3dx11_42.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_Jun2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx11_42.dll" + +load_d3dx11_42() +{ + dllname=d3dx11_42 + + helper_directx_Jun2010 + + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x86*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F "$dllname.dll" "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x64*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F "$dllname.dll" "$x" + done + fi + + w_override_dlls native $dllname +} + +#---------------------------------------------------------------- + +w_metadata d3dx11_43 dlls \ + title="MS d3dx11_43.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_Jun2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx11_43.dll" + +load_d3dx11_43() +{ + dllname=d3dx11_43 + + helper_directx_Jun2010 + + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x86*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F "$dllname.dll" "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F "*$dllname*x64*" "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F "$dllname.dll" "$x" + done + fi + + w_override_dlls native $dllname +} + +#---------------------------------------------------------------- + +w_metadata d3dx10 dlls \ + title="MS d3dx10_??.dll from DirectX user redistributable" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_Jun2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx10_33.dll" + +load_d3dx10() +{ + helper_directx_Jun2010 + + # Kinder, less invasive directx10 - only extract and override d3dx10_??.dll + w_try_cabextract -d "$W_TMP" -L -F '*d3dx10*x86*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'd3dx10*.dll' "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F '*d3dx10*x64*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'd3dx10*.dll' "$x" + done + fi + + # For now, not needed, but when Wine starts preferring our builtin dll over native it will be. + w_override_dlls native d3dx10_33 d3dx10_34 d3dx10_35 d3dx10_36 d3dx10_37 + w_override_dlls native d3dx10_38 d3dx10_39 d3dx10_40 d3dx10_41 d3dx10_42 d3dx10_43 +} + +#---------------------------------------------------------------- + +w_metadata d3dxof dlls \ + title="MS d3dxof.dll from DirectX user redistributable" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dxof.dll" + +load_d3dxof() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F 'dxnt.cab' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'd3dxof.dll' "$W_TMP/dxnt.cab" + + w_override_dlls native d3dxof +} + +#---------------------------------------------------------------- + +w_metadata dbghelp dlls \ + title="MS dbghelp" \ + publisher="Microsoft" \ + year="2008" \ + media="download" \ + file1="../xpsp3/WindowsXP-KB936929-SP3-x86-ENU.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dbghelp.dll" + +load_dbghelp() +{ + helper_xpsp3 i386/dbghelp.dll + + w_try cp -f "$W_TMP"/i386/dbghelp.dll "$W_SYSTEM32_DLLS" + + w_override_dlls native dbghelp +} + +#---------------------------------------------------------------- + +w_metadata devenum dlls \ + title="MS devenum.dll from DirectX user redistributable" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/devenum.dll" + +load_devenum() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F 'dxnt.cab' "$W_CACHE/directx9/$DIRECTX_NAME" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'devenum.dll' "$W_TMP/dxnt.cab" + w_try_regsvr devenum.dll + w_override_dlls native devenum +} + +#---------------------------------------------------------------- + +w_metadata dinput dlls \ + title="MS dinput.dll; breaks mouse, use only on Rayman 2 etc." \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dinput.dll" + +load_dinput() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F 'dxnt.cab' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dinput.dll' "$W_TMP/dxnt.cab" + w_try_regsvr dinput + w_override_dlls native dinput +} + +#---------------------------------------------------------------- + +w_metadata dinput8 dlls \ + title="MS DirectInput 8 from DirectX user redistributable" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dinput8.dll" + +load_dinput8() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F 'dxnt.cab' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dinput8.dll' "$W_TMP/dxnt.cab" + w_try_regsvr dinput8 + w_override_dlls native dinput8 +} + +#---------------------------------------------------------------- + +w_metadata directmusic dlls \ + title="MS DirectMusic from DirectX user redistributable" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dmusic.dll" + +load_directmusic() +{ +# Untested. Based off http://bugs.winehq.org/show_bug.cgi?id=4805 and http://bugs.winehq.org/show_bug.cgi?id=24911 + + w_call dsound + + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'devenum.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmband.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmcompos.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmime.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmloader.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmscript.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmstyle.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmsynth.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmusic.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmusic32.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dswave.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'streamci.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'quartz.dll' "$W_TMP/dxnt.cab" + + w_try_regsvr devenum.dll + w_try_regsvr dmband.dll + w_try_regsvr dmcompos.dll + w_try_regsvr dmime.dll + w_try_regsvr dmloader.dll + w_try_regsvr dmscript.dll + w_try_regsvr dmstyle.dll + w_try_regsvr dmsynth.dll + w_try_regsvr dmusic.dll + w_try_regsvr dswave.dll + w_try_regsvr quartz.dll + + w_override_dlls native devenum dmband dmcompos dmime dmloader dmscript dmstyle dmsynth dmusic dmusic32 dswave streamci quartz +} + +#---------------------------------------------------------------- + +w_metadata directplay dlls \ + title="MS DirectPlay from DirectX user redistributable" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dplayx.dll" + +load_directplay() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dplaysvr.exe' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dplayx.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dpnet.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dpnhpast.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dpnsvr.exe' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dpwsockx.dll' "$W_TMP/dxnt.cab" + + w_override_dlls native dplayx dpnet dpnhpast dpnsvr.exe dpwsockx + + w_try_regsvr dplayx.dll + w_try_regsvr dpnet.dll + w_try_regsvr dpnhpast.dll +} + +#---------------------------------------------------------------- + +w_metadata directx9 dlls \ + title="MS DirectX 9 (Usually overkill. Try d3dx9_36 first)" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/d3dx10_33.dll" + +load_directx9() +{ + helper_directx_dl + + w_warn "You probably shouldn't be using this. d3dx9 or, better, d3dx9_36 usually suffice." + + # Stefan suggested that, when installing, one should override as follows: + # 1) use builtin wintrust (we don't run native properly somehow?) + # 2) disable mscoree (else if it's present some module misbehaves?) + # 3) override native any directx DLL whose Wine version doesn't register itself well yet + # For #3, I have no idea which DLLs don't register themselves well yet, + # so I'm just listing a few of the basic ones. Let's whittle that + # list down as soon as we can. + + # Setting windows version to win2k apparently crashes the installer on OS X. + # See http://code.google.com/p/winezeug/issues/detail?id=71 + w_set_winver winxp + + cd "$W_CACHE/$W_PACKAGE" + WINEDLLOVERRIDES="wintrust=b,mscoree=,ddraw,d3d8,d3d9,dsound,dinput=n" \ + w_try "$WINE" $DIRECTX_NAME /t:"$W_TMP_WIN" $W_UNATTENDED_SLASH_Q + + # How many of these do we really need? + # We should probably remove most of these...? + w_override_dlls native d3dim d3drm d3dx8 d3dx9_24 d3dx9_25 d3dx9_26 d3dx9_27 d3dx9_28 d3dx9_29 + w_override_dlls native d3dx9_30 d3dx9_31 d3dx9_32 d3dx9_33 d3dx9_34 d3dx9_35 d3dx9_36 d3dx9_37 + w_override_dlls native d3dx9_38 d3dx9_39 d3dx9_40 d3dx9_41 d3dx9_42 d3dx9_43 d3dxof + w_override_dlls native dciman32 ddrawex devenum dmband dmcompos dmime dmloader dmscript dmstyle + w_override_dlls native dmsynth dmusic dmusic32 dnsapi dplay dplayx dpnaddr dpnet dpnhpast dpnlobby + w_override_dlls native dswave dxdiagn msdmo qcap quartz streamci + w_override_dlls native dxdiag.exe + w_override_dlls builtin d3d8 d3d9 dinput dinput8 dsound + + w_try "$WINE" "$W_TMP_WIN"\\DXSETUP.exe $W_UNATTENDED_SLASH_SILENT +} + +#---------------------------------------------------------------- + +w_metadata dpvoice dlls \ + title="Microsoft dpvoice dpvvox dpvacm Audio dlls" \ + publisher="Microsoft" \ + year="2002" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dpvoice.dll" \ + installed_file2="$W_SYSTEM32_DLLS_WIN/dpvvox.dll" \ + installed_file2="$W_SYSTEM32_DLLS_WIN/dpvacm.dll" + +load_dpvoice() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F 'dxnt.cab' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dpvoice.dll' "$x" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dpvvox.dll' "$x" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dpvacm.dll' "$x" + done + w_try_regsvr dpvoice.dll + w_try_regsvr dpvvox.dll + w_try_regsvr dpvacm.dll + w_override_dlls native dpvoice + w_override_dlls native dpvvox + w_override_dlls native dpvacm +} + +#---------------------------------------------------------------- + +w_metadata dsdmo dlls \ + title="MS dsdmo.dll" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dsdmo.dll" + +load_dsdmo() +{ + helper_directx_dl + mkdir "$W_CACHE"/dsdmo # kludge so test -f $file1 works + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dsdmo.dll' "$W_TMP/dxnt.cab" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dsdmoprp.dll' "$W_TMP/dxnt.cab" + w_try_regsvr dsdmo.dll + w_try_regsvr dsdmoprp.dll +} + +#---------------------------------------------------------------- + +w_metadata dxsdk_nov2006 dlls \ + title="MS DirectX SDK, November 2006 (developers only)" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + file1="dxsdk_aug2006.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Microsoft DirectX SDK (August 2006)/Lib/x86/d3d10.lib" + +load_dxsdk_nov2006() +{ + w_download http://download.microsoft.com/download/9/e/5/9e5bfc66-a621-4e0d-8bfe-6688058c3f00/dxsdk_aug2006.exe 1e9cdbef391ebfbf781e6c87a375138d8c195c57 + + # dxview.dll uses mfc42u while registering + w_call mfc42 + + w_try_cabextract "$W_CACHE"/dxsdk_nov2006/dxsdk_aug2006.exe + w_try_unzip "$W_TMP" dxsdk.exe + cd "$W_TMP" + w_try "$WINE" msiexec /i Microsoft_DirectX_SDK.msi $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata dxsdk_jun2010 dlls \ + title="MS DirectX SDK, June 2010 (developers only)" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="DXSDK_Jun10.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Microsoft DirectX SDK (June 2010)/Lib/x86/d3d11.lib" + +load_dxsdk_jun2010() +{ + w_download http://download.microsoft.com/download/A/E/7/AE743F1F-632B-4809-87A9-AA1BB3458E31/DXSDK_Jun10.exe 8fe98c00fde0f524760bb9021f438bd7d9304a69 + + # Without dotnet20, install aborts halfway through + w_call dotnet20 + + cd "$W_TMP" + w_try "$WINE" "$W_CACHE"/dxsdk_jun2010/DXSDK_Jun10.exe ${W_OPT_UNATTENDED:+/U} +} + +#---------------------------------------------------------------- + +w_metadata dmsynth dlls \ + title="MS midi synthesizer from DirectX user redistributable" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dmsynth.dll" + +load_dmsynth() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dmsynth.dll' "$W_TMP/dxnt.cab" + + w_try_regsvr dmsynth.dll + + w_override_dlls native dmsynth +} + +#---------------------------------------------------------------- + +w_metadata dotnet11 dlls \ + title="MS .NET 1.1" \ + publisher="Microsoft" \ + year="2003" \ + media="download" \ + conflicts="dotnet20 dotnet20sdk dotnet20sp1 dotnet20sp2 dotnet30 dotnet30sp1 dotnet35 dotnet35sp1 vjrun20" \ + file1="dotnetfx.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/v1.1.4322/ndpsetup.ico" + +load_dotnet11() +{ + if [ $W_ARCH = win64 ] + then + w_die "This package does not work on a 64-bit installation" + fi + + # http://www.microsoft.com/downloads/details.aspx?FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3 + w_download http://download.microsoft.com/download/a/a/c/aac39226-8825-44ce-90e3-bf8203e74006/dotnetfx.exe 16a354a2207c4c8846b617cbc78f7b7c1856340e + + w_call remove_mono + w_call corefonts + w_call fontfix + + w_try cd "$W_CACHE/dotnet11" + # Use builtin regsvcs.exe to work around https://bugs.winehq.org/show_bug.cgi?id=25120 + if test $W_OPT_UNATTENDED + then + WINEDLLOVERRIDES="regsvcs.exe=b" w_ahk_do " + SetTitleMatchMode, 2 + run, dotnetfx.exe /q /C:\"install /q\" + + Loop + { + sleep 1000 + ifwinexist, Fatal error, Failed to delay load library + { + WinClose, Fatal error, Failed to delay load library + continue + } + Process, exist, dotnetfx.exe + dotnet_pid = %ErrorLevel% ; Save the value immediately since ErrorLevel is often changed. + if dotnet_pid = 0 + { + break + } + } + " + else + WINEDLLOVERRIDES="regsvcs.exe=b" w_try "$WINE" dotnetfx.exe + fi + + W_NGEN_CMD="w_try $WINE $DRIVE_C/windows/Microsoft.NET/Framework/v1.1.4322/ngen.exe executequeueditems" +} + +verify_dotnet11() +{ + w_dotnet_verify dotnet11 +} + +#---------------------------------------------------------------- + +w_metadata dotnet11sp1 dlls \ + title="MS .NET 1.1 SP1" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="NDP1.1sp1-KB867460-X86.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/v1.1.4322/CONFIG/web_hightrust.config.default" + +load_dotnet11sp1() +{ + w_download http://download.microsoft.com/download/8/b/4/8b4addd8-e957-4dea-bdb8-c4e00af5b94b/NDP1.1sp1-KB867460-X86.exe 74a5b25d65a70b8ecd6a9c301a0aea10d8483a23 + + w_call remove_mono + w_call dotnet11 + + w_try cd "$W_CACHE/dotnet11sp1" + # Use builtin regsvcs.exe to work around http://bugs.winehq.org/show_bug.cgi?id=25120 + if test $W_OPT_UNATTENDED + then + WINEDLLOVERRIDES="regsvcs.exe=b" w_ahk_do " + SetTitleMatchMode, 2 + run, NDP1.1sp1-KB867460-X86.exe /q /C:"install /q" + + Loop + { + sleep 1000 + ifwinexist, Fatal error, Failed to delay load library + { + WinClose, Fatal error, Failed to delay load library + continue + } + Process, exist, dotnetfx.exe + dotnet_pid = %ErrorLevel% ; Save the value immediately since ErrorLevel is often changed. + if dotnet_pid = 0 + { + break + } + } + " + else + WINEDLLOVERRIDES="regsvcs.exe=b" w_try "$WINE" "$W_CACHE"/dotnet11sp1/NDP1.1sp1-KB867460-X86.exe + fi + + W_NGEN_CMD="w_try $WINE $DRIVE_C/windows/Microsoft.NET/Framework/v1.1.4322/ngen.exe executequeueditems" +} + +verify_dotnet11sp1() +{ + w_dotnet_verify dotnet11sp1 +} + +#---------------------------------------------------------------- + +w_metadata dotnet20 dlls \ + title="MS .NET 2.0" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + conflicts="dotnet11" \ + file1="dotnetfx.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/v2.0.50727/Microsoft .NET Framework 2.0/install.exe" + +load_dotnet20() +{ + # http://www.microsoft.com/downloads/details.aspx?FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5 + w_download http://download.lenovo.com/ibmdl/pub/pc/pccbbs/thinkvantage_en/dotnetfx.exe a3625c59d7a2995fb60877b5f5324892a1693b2a + + w_call remove_mono + w_call fontfix + + # Recipe from http://bugs.winehq.org/show_bug.cgi?id=10467#c57 + # and http://bugs.winehq.org/show_bug.cgi?id=30845#c10 + w_set_winver win2k + + # FIXME: verify on pristine windows XP: + if w_workaround_wine_bug 34803 + then + "$WINE" reg delete 'HKLM\Software\Microsoft\.NETFramework\v2.0.50727\SBSDisabled' /f + fi + + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" dotnetfx.exe ${W_OPT_UNATTENDED:+/q /c:"install.exe /q"} + w_unset_winver + + # We can't stop installing dotnet20 in win2K mode until wine supports + # reparse/junction points + # (see http://bugs.winehq.org/show_bug.cgi?id=10467#c57 ) + # so for now just remove the bogus msvc*80.dll files it installs. + # See also http://bugs.winehq.org/show_bug.cgi?id=16577 + # This affects Victoria 2 demo, see http://forum.paradoxplaza.com/forum/showthread.php?p=11523967 + rm -f "$W_SYSTEM32_DLLS"/msvc?80.dll + + W_NGEN_CMD="w_try $WINE $DRIVE_C/windows/Microsoft.NET/Framework/v2.0.50727/ngen.exe executequeueditems" +} + +verify_dotnet20() +{ + w_dotnet_verify dotnet20 +} + +#---------------------------------------------------------------- + +w_metadata dotnet20sdk dlls \ + title="MS .NET 2.0 SDK" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + conflicts="dotnet11 dotnet20sp1 dotnet20sp2 dotnet30 dotnet40" \ + file1="setup.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Microsoft.NET/SDK/v2.0/Bin/cordbg.exe" + +load_dotnet20sdk() +{ + # http://www.microsoft.com/en-us/download/details.aspx?id=19988 + w_download http://download.microsoft.com/download/c/4/b/c4b15d7d-6f37-4d5a-b9c6-8f07e7d46635/setup.exe 4e4b1072b5e65e855358e2028403f2dc52a62ab4 + + w_call remove_mono + + w_call dotnet20 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, setup.exe ${W_OPT_UNATTENDED:+/q /c:"install.exe /q"} + + Loop + { + sleep 1000 + ifwinexist, Microsoft Document Explorer, Application Data folder + { + WinClose, Microsoft Document Explorer, Application Data folder + continue + } + ifwinexist, Microsoft CLR Debugger, Application Data folder + { + WinClose, Microsoft CLR Debugger, Application Data folder + continue + } + ; FIXME: only appears if dotnet30sp1 is run first? + ifwinexist, Microsoft .NET Framework 2.0 SDK Setup, This wizard will guide + { + ControlClick, Button22, Microsoft .NET Framework 2.0 SDK Setup + Winwait, Microsoft .NET Framework 2.0 SDK Setup, By clicking + sleep 100 + ControlClick, Button21 + sleep 100 + ControlClick, Button18 + WinWait, Microsoft .NET Framework 2.0 SDK Setup, Select from + sleep 100 + ControlClick, Button12 + WinWait, Microsoft .NET Framework 2.0 SDK Setup, Type the path + sleep 100 + ControlClick, Button8 + WinWait, Microsoft .NET Framework 2.0 SDK Setup, successfully installed + sleep 100 + ControlClick, Button2 + sleep 100 + } + Process, exist, setup.exe + dotnet_pid = %ErrorLevel% + if dotnet_pid = 0 + { + break + } + } + " + +} + +#---------------------------------------------------------------- + +w_metadata dotnet20sp1 dlls \ + title="MS .NET 2.0 SP1 (experimental)" \ + publisher="Microsoft" \ + year="2008" \ + media="download" \ + conflicts="dotnet11 dotnet20sp2 dotnet35sp1" \ + file1="NetFx20SP1_x86.exe" \ + installed_file1="c:/windows/winsxs/manifests/x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.1433_x-ww_5cf844d2.cat" + +load_dotnet20sp1() +{ + # FIXME: URL? + w_download http://download.microsoft.com/download/0/8/c/08c19fa4-4c4f-4ffb-9d6c-150906578c9e/NetFx20SP1_x86.exe eef5a36924cdf0c02598ccf96aa4f60887a49840 + + w_call remove_mono + + w_call dotnet20 + + WINEDLLOVERRIDES= + w_warn "Setting windows version so installer works" + # Stop services + # Recipe from http://bugs.winehq.org/show_bug.cgi?id=16956 + $WINESERVER -k + # Fight a race condition, see bug 16956 comment 43 + w_set_winver win2k + $WINESERVER -w + WINEDLLOVERRIDES=ngen.exe,regsvcs.exe,mscorsvw.exe=b + export WINEDLLOVERRIDES + + # FIXME: still needed? + # Workaround Wine/Mono integration: + "$WINE" reg add "HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v2.0.50727" /v Version /t REG_SZ /d "2.0.50727" /f + + cd "$W_CACHE/$W_PACKAGE" + "$WINE" NetFx20SP1_x86.exe ${W_OPT_UNATTENDED:+/q} + status=$? + + case $status in + 0) ;; + 105) echo "exit status $status - normal, user selected 'restart now'" ;; + 194) echo "exit status $status - normal, user selected 'restart later'" ;; + *) w_die "exit status $status - $W_PACKAGE installation failed" ;; + esac + + # We can't stop installing dotnet20sp1 in win2K mode until wine supports + # reparse/junction points + # (see http://bugs.winehq.org/show_bug.cgi?id=10467#c57 ) + # so for now just remove the bogus msvc*80.dll files it installs. + # See also http://bugs.winehq.org/show_bug.cgi?id=16577 + # This affects Victoria 2 demo, see http://forum.paradoxplaza.com/forum/showthread.php?p=11523967 + rm -f "$W_SYSTEM32_DLLS"/msvc?80.dll + + w_unset_winver + + W_NGEN_CMD="w_try $WINE $DRIVE_C/windows/Microsoft.NET/Framework/v2.0.50727/ngen.exe executequeueditems" +} + +verify_dotnet20sp1() +{ + w_dotnet_verify dotnet20sp1 +} + +#---------------------------------------------------------------- + +w_metadata dotnet20sp2 dlls \ + title="MS .NET 2.0 SP2 (experimental)" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + conflicts="dotnet11" \ + file1="NetFx20SP2_x86.exe" \ + installed_file1="c:/windows/winsxs/manifests/x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.3053_x-ww_b80fa8ca.cat" + +load_dotnet20sp2() +{ + # http://www.microsoft.com/downloads/details.aspx?familyid=5B2C0358-915B-4EB5-9B1D-10E506DA9D0F + w_download http://download.microsoft.com/download/c/6/e/c6e88215-0178-4c6c-b5f3-158ff77b1f38/NetFx20SP2_x86.exe 22d776d4d204863105a5db99e8b8888be23c61a7 + + w_call remove_mono + + w_call dotnet20 + + # FIXME: verify on pristine windows XP: + if w_workaround_wine_bug 34803 + then + "$WINE" reg delete 'HKLM\Software\Microsoft\.NETFramework\v2.0.50727\SBSDisabled' /f + fi + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, NetFx20SP2_x86.exe ${W_OPT_UNATTENDED:+ /q /c:"install.exe /q"} + + Loop + { + sleep 1000 + ifwinexist,, cannot be uninstalled + { + WinClose,, cannot be uninstalled + continue + } + Process, exist, NetFx20SP2_x86.exe + dotnet_pid = %ErrorLevel% + if dotnet_pid = 0 + { + break + } + } + " + status=$? + + case $status in + 0) ;; + 105) echo "exit status $status - normal, user selected 'restart now'" ;; + 194) echo "exit status $status - normal, user selected 'restart later'" ;; + *) w_die "exit status $status - $W_PACKAGE installation failed" ;; + esac + + w_unset_winver + + W_NGEN_CMD="w_try $WINE $DRIVE_C/windows/Microsoft.NET/Framework/v2.0.50727/ngen.exe executequeueditems" +} + +verify_dotnet20sp2() +{ + w_dotnet_verify dotnet20sp2 +} + +#---------------------------------------------------------------- + +w_metadata dotnet30 dlls \ + title="MS .NET 3.0" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + conflicts="dotnet11 dotnet20sp1 dotnet20sp2 dotnet30sp1 dotnet35 dotnet35sp1 dotnet45 dotnet452" \ + file1="dotnetfx3.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/v3.0/Microsoft .NET Framework 3.0/logo.bmp" + +load_dotnet30() +{ + # http://msdn.microsoft.com/en-us/netframework/bb264589.aspx + w_download http://download.microsoft.com/download/3/F/0/3F0A922C-F239-4B9B-9CB0-DF53621C57D9/dotnetfx3.exe f3d2c3c7e4c0c35450cf6dab1f9f2e9e7ff50039 + + w_call remove_mono + + if test -f /proc/sys/kernel/yama/ptrace_scope + then + case `cat /proc/sys/kernel/yama/ptrace_scope` in + 0) ;; + *) w_warn "If install fails, set /proc/sys/kernel/yama/ptrace_scope to 0. See http://bugs.winehq.org/show_bug.cgi?id=30410" ;; + esac + fi + + case "$OS" in + "Windows_NT") + osver=`cmd /c ver` + case "$osver" in + *Version?6*) w_die "Vista and up bundle .net 3.0, so you can't install it like this" ;; + esac + ;; + esac + + w_call dotnet20 + + w_warn "Installing .net 3.0 runtime takes 3 minutes on a very fast machine, and the Finished dialog may hide in the taskbar." + + # AF's workaround to avoid long pause + LANGPACKS_BASE_PATH="${W_WINDIR_UNIX}/SYSMSICache/Framework/v3.0" + test -d "${LANGPACKS_BASE_PATH}" || mkdir -p "${LANGPACKS_BASE_PATH}" + for lang in ar cs da de el es fi fr he it jp ko nb nl pl pt-BR pt-PT ru \ + sv tr zh-CHS zh-CHT + do + ln -sf "${W_SYSTEM32_DLLS}/spupdsvc.exe" "${LANGPACKS_BASE_PATH}/dotnetfx3langpack${lang}.exe" + done + + w_set_winver winxp + + # Delete FontCache 3.0 service, it's in Wine for Mono, breaks native .NET + # OK if this fails, that just means you have an older wine. + "$WINE" sc delete "FontCache3.0.0.0" + + WINEDLLOVERRIDES="ngen.exe,mscorsvw.exe=b;$WINEDLLOVERRIDES" + + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" $file1 ${W_OPT_UNATTENDED:+ /q /c:"install.exe /q"} + + # Doesn't install any ngen.exe + # W_NGEN_CMD="" +} + +verify_dotnet30() +{ + w_dotnet_verify dotnet30 +} + +#---------------------------------------------------------------- + +w_metadata dotnet30sp1 dlls \ + title="MS .NET 3.0 SP1" \ + publisher="Microsoft" \ + year="2007" \ + media="download" \ + conflicts="dotnet11 dotnet20sdk dotnet20sp1 dotnet20sp2" \ + file1="NetFx30SP1_x86.exe" \ + installed_file1="c:/windows/system32/XpsFilt.dll" # we're cheating a bit here + +load_dotnet30sp1() +{ + # FIXME: URL? + w_download http://download.microsoft.com/download/8/F/E/8FEEE89D-9E4F-4BA3-993E-0FFEA8E21E1B/NetFx30SP1_x86.exe 8d779e337920b097aa0c01859912950606e9fc12 + # Recipe from http://bugs.winehq.org/show_bug.cgi?id=25060#c10 + w_download http://download.microsoft.com/download/2/5/2/2526f55d-32bc-410f-be18-164ba67ae07d/XPSEP%20XP%20and%20Server%202003%2032%20bit.msi 5d332ebd1025e294adafe72030fe33db707b2c82 "XPSEP XP and Server 2003 32 bit.msi" + + w_call remove_mono + w_call dotnet30 + $WINESERVER -w + w_call dotnet20sp1 + $WINESERVER -w + + cd "$W_CACHE/$W_PACKAGE" + + "$WINE" reg add "HKLM\\Software\\Microsoft\\Net Framework Setup\\NDP\\v3.0" /v Version /t REG_SZ /d "3.0" /f + "$WINE" reg add "HKLM\\Software\\Microsoft-\\Net Framework Setup\\NDP\\v3.0" /v SP /t REG_DWORD /d 0001 /f + + w_try "$WINE" msiexec /i "XPSEP XP and Server 2003 32 bit.msi" ${W_UNATTENDED_SLASH_QB} + "$WINE" sc delete FontCache3.0.0.0 + + "$WINE" $file1 ${W_OPT_UNATTENDED:+/q} + status=$? + w_info $file1 exited with status $status + + # Doesn't install any ngen.exe + # W_NGEN_CMD="" +} + +verify_dotnet30sp1() +{ + w_dotnet_verify dotnet30sp1 +} + +#---------------------------------------------------------------- + +w_metadata dotnet35 dlls \ + title="MS .NET 3.5" \ + publisher="Microsoft" \ + year="2007" \ + media="download" \ + conflicts="dotnet11 dotnet20 dotnet20sdk dotnet20sp1 dotnet20sp2" \ + file1="dotnetfx35.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/v3.5/MSBuild.exe" + +load_dotnet35() +{ + case "$OS" in + "Windows_NT") ;; + *) w_warn "dotnet35 does not yet fully work or install on wine. Caveat emptor." ;; + esac + + # http://www.microsoft.com/downloads/details.aspx?FamilyId=333325FD-AE52-4E35-B531-508D977D32A6 + w_download http://download.microsoft.com/download/6/0/f/60fc5854-3cb8-4892-b6db-bd4f42510f28/dotnetfx35.exe 0a271bb44531aadef902829f98dfad66e4a57586 + + w_call remove_mono + + w_call dotnet30sp1 + $WINESERVER -w + + if w_workaround_wine_bug 33450 "Installing msxml3" ,1.5.28 + then + w_call msxml3 + fi + + "$WINE" reg delete "HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v3.5" /f + + # See also http://blogs.msdn.com/astebner/archive/2008/07/17/8745415.aspx + cd "$W_TMP" + w_try_cabextract $W_UNATTENDED_DASH_Q "$W_CACHE"/dotnet35/dotnetfx35.exe + cd wcu/dotNetFramework + "$WINE" dotNetFx35setup.exe /lang:ENU $W_UNATTENDED_SLASH_Q + + # Doesn't install any ngen.exe + # W_NGEN_CMD="" +} + +verify_dotnet35() +{ + w_dotnet_verify dotnet35 +} + +#---------------------------------------------------------------- + +w_metadata dotnet35sp1 dlls \ + title="MS .NET 3.5 SP1" \ + publisher="Microsoft" \ + year="2008" \ + media="download" \ + conflicts="dotnet11 dotnet20sp1 dotnet20sp2" \ + file1="dotnetfx35.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/v3.5/Microsoft .NET Framework 3.5 SP1/logo.bmp" + +load_dotnet35sp1() +{ + case "$OS" in + "Windows_NT") ;; + *) w_warn "dotnet35sp1 does not yet fully work or install on wine. Caveat emptor." ;; + esac + + # http://www.microsoft.com/download/en/details.aspx?id=25150 + w_download http://download.microsoft.com/download/2/0/e/20e90413-712f-438c-988e-fdaa79a8ac3d/dotnetfx35.exe 3dce66bae0dd71284ac7a971baed07030a186918 + + w_call remove_mono + + w_call dotnet35 + $WINESERVER -w + w_call dotnet20sp2 + $WINESERVER -w + + # Work around hang in http://bugs.winehq.org/show_bug.cgi?id=25060#c19 + WINEDLLOVERRIDES=ngen.exe,mscorsvw.exe=b + export WINEDLLOVERRIDES + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, dotnetfx35.exe /lang:ENU $W_UNATTENDED_SLASH_Q + + Loop + { + sleep 1000 + ifwinexist,, cannot be uninstalled + { + WinClose,, cannot be uninstalled + continue + } + Process, exist, dotnetfx35.exe + dotnet_pid = %ErrorLevel% + if dotnet_pid = 0 + { + break + } + } + " + + # Doesn't install any ngen.exe + # W_NGEN_CMD="" +} + +verify_dotnet35sp1() +{ + w_dotnet_verify dotnet35sp1 +} + +#---------------------------------------------------------------- + +w_metadata dotnet40 dlls \ + title="MS .NET 4.0" \ + publisher="Microsoft" \ + year="2011" \ + media="download" \ + conflicts="dotnet20sdk" \ + file1="dotNetFx40_Full_x86_x64.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/v4.0.30319/ngen.exe" + +load_dotnet40() +{ + if [ $W_ARCH = win64 ] + then + w_die "This package does not work on a 64-bit installation" + fi + + case "$OS" in + "Windows_NT") ;; + *) w_warn "dotnet40 does not yet fully work or install on wine. Caveat emptor." ;; + esac + + # http://www.microsoft.com/download/en/details.aspx?id=17718 + w_download http://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe 58da3d74db353aad03588cbb5cea8234166d8b99 + + w_call remove_mono + + # Remove Mono registry entry: + "$WINE" reg delete "HKLM\Software\Microsoft\NET Framework Setup\NDP\v4" /f + + w_try rm -f "$W_WINDIR_UNIX/system32/mscoree.dll" + + cd "$W_CACHE/$W_PACKAGE" + + WINEDLLOVERRIDES=fusion=b "$WINE" dotNetFx40_Full_x86_x64.exe ${W_OPT_UNATTENDED:+/q /c:"install.exe /q"} || true + + w_override_dlls native mscoree + + "$WINE" reg add "HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4\\Full" /v Install /t REG_DWORD /d 0001 /f + "$WINE" reg add "HKLM\\Software\\Microsoft\\NET Framework Setup\\NDP\\v4\\Full" /v Version /t REG_SZ /d "4.0.30319" /f + + W_NGEN_CMD="$WINE $WINEPREFIX/drive_c/windows/Microsoft.NET/Framework/v4.0.30319/ngen.exe executequeueditems" +} + +verify_dotnet40() +{ + w_dotnet_verify dotnet40 +} + +#---------------------------------------------------------------- + +w_metadata dotnet45 dlls \ + title="MS .NET 4.5" \ + publisher="Microsoft" \ + year="2012" \ + media="download" \ + conflicts="dotnet20 dotnet20sdk dotnet20sp1 dotnet20sp2 dotnet35sp1 dotnet40 vjrun20" \ + file1="dotnetfx45_full_x86_x64.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/v4.0.30319/Microsoft.Windows.ApplicationServer.Applications.45.man" + +load_dotnet45() +{ + if [ $W_ARCH = win64 ] + then + w_warn "This package may not work on a 64-bit installation" + fi + + # http://www.microsoft.com/download/en/details.aspx?id=17718 + w_download http://download.microsoft.com/download/b/a/4/ba4a7e71-2906-4b2d-a0e1-80cf16844f5f/dotnetfx45_full_x86_x64.exe b2ff712ca0947040ca0b8e9bd7436a3c3524bb5d + + w_call remove_mono + + # Remove Mono registry entry: + "$WINE" reg delete "HKLM\Software\Microsoft\NET Framework Setup\NDP\v4" /f + + w_try rm -f "$W_WINDIR_UNIX/system32/mscoree.dll" + + # See https://appdb.winehq.org/objectManager.php?sClass=version&iId=25478 for Focht's recipe + w_call dotnet35 + w_call dotnet40 + w_set_winver win7 + + cd "$W_CACHE/$W_PACKAGE" + + WINEDLLOVERRIDES=fusion=b "$WINE" dotnetfx45_full_x86_x64.exe ${W_OPT_UNATTENDED:+/q /c:"install.exe /q"} + status=$? + + case $status in + 0) ;; + 105) echo "exit status $status - normal, user selected 'restart now'" ;; + 194) echo "exit status $status - normal, user selected 'restart later'" ;; + *) w_die "exit status $status - $W_PACKAGE installation failed" ;; + esac + + w_override_dlls native mscoree + + w_warn "Setting Windows version to 2003, otherwise applications using .NET 4.5 will subtly fail" + w_set_winver win2k3 +} + +verify_dotnet45() +{ + w_dotnet_verify dotnet45 +} + +#---------------------------------------------------------------- + +w_metadata dotnet452 dlls \ + title="MS .NET 4.5.2" \ + publisher="Microsoft" \ + year="2012" \ + media="download" \ + conflicts="dotnet20 dotnet20sdk dotnet20sp1 dotnet20sp2 dotnet35sp1 dotnet40 dotnet45 vjrun20" \ + file1="dotnetfx45_full_x86_x64.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/v4.0.30319/Microsoft.Windows.ApplicationServer.Applications.45.man" + +load_dotnet452() +{ + if [ $W_ARCH = win64 ] + then + w_warn "This package may not work on a 64-bit installation" + fi + + # http://www.microsoft.com/download/en/details.aspx?id=17718 + w_download http://download.microsoft.com/download/E/2/1/E21644B5-2DF2-47C2-91BD-63C560427900/NDP452-KB2901907-x86-x64-AllOS-ENU.exe 89f86f9522dc7a8a965facce839abb790a285a63 + + w_call remove_mono + + # Remove Mono registry entry: + "$WINE" reg delete "HKLM\Software\Microsoft\NET Framework Setup\NDP\v4" /f + + w_try rm -f "$W_WINDIR_UNIX/system32/mscoree.dll" + + # See https://appdb.winehq.org/objectManager.php?sClass=version&iId=25478 for Focht's recipe + w_call dotnet35 + w_call dotnet40 + w_set_winver win7 + + cd "$W_CACHE/$W_PACKAGE" + + WINEDLLOVERRIDES=fusion=b "$WINE" NDP452-KB2901907-x86-x64-AllOS-ENU.exe ${W_OPT_UNATTENDED:+/q /c:"install.exe /q"} + status=$? + + case $status in + 0) ;; + 105) echo "exit status $status - normal, user selected 'restart now'" ;; + 194) echo "exit status $status - normal, user selected 'restart later'" ;; + *) w_die "exit status $status - $W_PACKAGE installation failed" ;; + esac + + w_override_dlls native mscoree + + w_warn "Setting Windows version to 2003, otherwise applications using .NET 4.5 will subtly fail" + w_set_winver win2k3 +} + +verify_dotnet452() +{ + w_dotnet_verify dotnet452 +} + + +#---------------------------------------------------------------- + +w_metadata dotnet_verifier dlls \ + title="MS .NET Verifier" \ + publisher="Microsoft" \ + year="2012" \ + media="download" \ + file1="netfx_5F00_setupverifier_5F00_new.zip" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/netfx_setupverifier.exe" + +load_dotnet_verifier() +{ + # http://blogs.msdn.com/b/astebner/archive/2008/10/13/8999004.aspx + # 2013/03/28: sha1sum 0eba832a0733cd47b7639463dd5a22a41e95ee6e + # 2014/01/23: sha1sum 8818f3460826145e2a66bb91727afa7cd531037b + # 2014/11/22: sha1sum 47de0b849c4c3d354df23588c709108e7816d788 + # 2015/07/31: sha1sum 32f24526a5716737281dc260451b60a641b23c7e + # 2015/12/27: sha1sum b9712da2943e057668f21f68c473657a205c5cb8 + w_download http://blogs.msdn.com/cfs-file.ashx/__key/CommunityServer-Components-PostAttachments/00-08-99-90-04/netfx_5F00_setupverifier_5F00_new.zip b9712da2943e057668f21f68c473657a205c5cb8 + + cd "$W_CACHE/$W_PACKAGE" + w_try_unzip "$W_SYSTEM32_DLLS" netfx_5F00_setupverifier_5F00_new.zip netfx_setupverifier.exe +} + +#---------------------------------------------------------------- + +w_metadata dxdiagn dlls \ + title="DirectX Diagnostic Library" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dxdiagn.dll" + +load_dxdiagn() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F dxdiagn.dll "$W_TMP/dxnt.cab" + w_override_dlls native dxdiagn +} + +#---------------------------------------------------------------- + +w_metadata dsound dlls \ + title="MS DirectSound from DirectX user redistributable" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dsound.dll" + +load_dsound() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'dsound.dll' "$W_TMP/dxnt.cab" + + w_try_regsvr dsound.dll + + w_override_dlls native dsound +} + +#---------------------------------------------------------------- + +w_metadata esent dlls \ + title="MS Extensible Storage Engine" \ + publisher="Microsoft" \ + year="2011" \ + media="download" \ + file1="../win7sp1/windows6.1-KB976932-X86.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/esent.dll" + +load_esent() +{ + helper_win7sp1 x86_microsoft-windows-e..estorageengine-isam_31bf3856ad364e35_6.1.7601.17514_none_f3ebb0cc8a4dd814/esent.dll + w_try cp "$W_TMP/x86_microsoft-windows-e..estorageengine-isam_31bf3856ad364e35_6.1.7601.17514_none_f3ebb0cc8a4dd814/esent.dll" "$W_SYSTEM32_DLLS/esent.dll" + + w_override_dlls native,builtin esent +} + +#---------------------------------------------------------------- + +# FIXME: update winetricks_is_installed to look at installed_file2..n +w_metadata flash dlls \ + title="Flash Player 14" \ + publisher="Adobe" \ + year="2014" \ + media="download" \ + file1="install_flash_player.exe" \ + file2="install_flash_player_ax.exe" \ + file3="flashplayer_14_sa.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/Macromed/Flash/FlashUtil32_14_0_0_179_Plugin.exe" \ + installed_file2="$W_SYSTEM32_DLLS_WIN/Macromed/Flash/FlashUtil32_14_0_0_176_ActiveX.exe" \ + installed_file3="$W_SYSTEM32_DLLS_WIN/Macromed/Flash/flashplayer_14_sa.exe" \ + homepage="http://www.adobe.com/products/flashplayer/" + +load_flash() +{ + # As of July 9, 2013, Flash 10 is no longer supported. + # And as of June 24, 2013, Flash 10.3 won't even install for me, + # it tells you to go get a newer version! + # See + # http://blogs.adobe.com/psirt/ + # http://get.adobe.com/de/flashplayer/otherversions/ + # Now, we install older versions by using zipfiles at + # http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html + + # Active X plugin + # 2013-03-28 + #w_download http://fpdownload.macromedia.com/get/flashplayer/pdc/11.6.602.180/install_flash_player_ax.exe 359f231d7007c17b419f777125e0f28fffc2e6a1 + # 2013-06-24 + # w_download http://fpdownload.macromedia.com/get/flashplayer/pdc/11.7.700.224/install_flash_player_ax.exe fdadce901fc7da7a175f71cc8f1f2dd0db78ec8e + # 2014-01-21 + #w_download http://fpdownload.macromedia.com/get/flashplayer/pdc/12.0.0.38/install_flash_player_ax.exe 8deb33bcbbbbecfcbcbeb0f861d2c7492599da2b + # 2014-08-17 + #w_download https://fpdownload.macromedia.com/get/flashplayer/pdc/14.0.0.176/install_flash_player_ax.exe 16231b509d8e689dc34ae36597d41c4fb1b3a67e + # 2014-10-02 + w_download http://download.macromedia.com/pub/flashplayer/installers/archive/fp_14.0.0.176_archive.zip 40df72ab2c22bcd4442aa35eb586000776129982 + + w_try_unzip "$W_TMP" "$W_CACHE"/flash/fp_14.0.0.176_archive.zip fp_14.0.0.176_archive/14_0_r0_176/flashplayer14_0r0_176_winax.exe + cd "$W_TMP"/fp_14.0.0.176_archive/14_0_r0_176 + w_try "$WINE" flashplayer14_0r0_176_winax.exe ${W_OPT_UNATTENDED:+ /install} + + # Mozilla / Firefox plugin + # 2013-03-28 + #w_download http://fpdownload.macromedia.com/get/flashplayer/pdc/11.6.602.180/install_flash_player.exe bf44990ade52aa92078495ec39035d8489ff6e05 + # 2013-06-24 + #w_download http://fpdownload.macromedia.com/get/flashplayer/pdc/11.7.700.224/install_flash_player.exe 9c519fd5a7202c43b5713f9f6b083d970810112e + # 2014-01-21 + #w_download http://fpdownload.macromedia.com/get/flashplayer/pdc/12.0.0.43/install_flash_player.exe 5a68f7aa21c4217cf801a46616fe724d601f773a + # 2014-08-17 + #w_download https://fpdownload.macromedia.com/get/flashplayer/pdc/14.0.0.179/install_flash_player.exe 1d5725fd0d50eb1361213179ffae9ee24944755a + # 2014-10-02 + w_download http://download.macromedia.com/pub/flashplayer/installers/archive/fp_14.0.0.179_archive.zip b94860ca0eff3e1420c24f9647a5f9f5e610ce34 + + w_try_unzip "$W_TMP" "$W_CACHE"/flash/fp_14.0.0.179_archive.zip fp_14.0.0.179_archive/14_0_r0_179/flashplayer14_0r0_179_win.exe + cd "$W_TMP"/fp_14.0.0.179_archive/14_0_r0_179 + w_try "$WINE" flashplayer14_0r0_179_win.exe ${W_OPT_UNATTENDED:+ /install} + + # Projector (standalone player) + # 2015-07-06 + w_download http://download.macromedia.com/pub/flashplayer/updaters/14/flashplayer_14_sa.exe 62e5bc2e88b50091847408b9d473ee4a6c185167 + w_try cp "${W_CACHE}/${W_PACKAGE}/${file3}" "$W_SYSTEM32_DLLS/Macromed/Flash" + + # After updating the above, you should carry the following steps out by + # hand to verify that plugin works. (Ideally you'd also do it on + # wine-1.5.6 to make sure the new version still uses vcrun2005 and + # not something newer.) + + # rm -rf ~/.cache/winetricks/flash + # cd ~/winetricks/src + # rm -rf ~/.wine + # sh winetricks -q flash ie7 + # cd ~/".wine/drive_c/Program Files/Internet Explorer" + # wine iexplore.exe http://www.adobe.com/software/flash/about + # Verify that the version of flash shows up and that you're not prompted + # to install flash again + # + # cd ~/winetricks/src + # rm -rf ~/.wine + # sh winetricks -q flash firefox + # cd ~/.wine/drive_c/Program\ Files/Mozilla\ Firefox + # wine firefox.exe http://www.adobe.com/software/flash/about + # Verify that the version of flash shows up and that you're not prompted + # to install flash again +} + +#---------------------------------------------------------------- + +w_metadata gdiplus dlls \ + title="MS GDI+" \ + publisher="Microsoft" \ + year="2011" \ + media="download" \ + file1="../win7sp1/windows6.1-KB976932-X86.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/gdiplus.dll" + +load_gdiplus() +{ + # gdiplus has changed in win7. See http://bugs.winehq.org/show_bug.cgi?id=32163#c3 + helper_win7sp1 x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_72d18a4386696c80/gdiplus.dll + w_try cp "$W_TMP/x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_72d18a4386696c80/gdiplus.dll" "$W_SYSTEM32_DLLS/gdiplus.dll" + + # For some reason, native,builtin isn't good enough...? + w_override_dlls native gdiplus +} + +#---------------------------------------------------------------- + +w_metadata gdiplus_winxp dlls \ + title="MS GDI+" \ + publisher="Microsoft" \ + year="2004" \ + media="manual_download" \ + file1="NDP1.0sp2-KB830348-X86-Enu.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/gdiplus.dll" + +load_gdiplus_winxp() +{ + w_download_manual http://download.cnet.com/NET-Framework-1-0-GDIPLUS-DLL-Security-Update/3000-10250_4-10732223.html NDP1.0sp2-KB830348-X86-Enu.exe 6113cd89d77525958295ccbd73b5fb8b89abd0aa + cd "$W_CACHE/$W_PACKAGE" + w_try_cabextract -d "$W_TMP" -F FL_gdiplus_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8 "$W_CACHE/${W_PACKAGE}/$file1" + w_try cp "$W_TMP/FL_gdiplus_dll_____X86.3643236F_FC70_11D3_A536_0090278A1BB8" "$W_SYSTEM32_DLLS/gdiplus.dll" + + # For some reason, native,builtin isn't good enough...? + w_override_dlls native gdiplus +} + +#---------------------------------------------------------------- + +w_metadata glidewrapper dlls \ + title="GlideWrapper" \ + publisher="Rolf Neuberger" \ + year="2005" \ + media="download" \ + file1="GlideWrapper084c.exe" \ + installed_file1="c:/windows/glide3x.dll" + +load_glidewrapper() +{ + w_download http://www.zeckensack.de/glide/archive/GlideWrapper084c.exe 7a9d60a18b660473742b476465e9aea7bd5ab6f8 + cd "$W_CACHE/$W_PACKAGE" + + # The installer opens its README in a web-browser, really annoying when doing make check/test: + # FIXME: maybe we should back up this key first? + if test ${W_OPT_UNATTENDED} + then + cat > "$W_TMP"/disable-browser.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\WineBrowser] +"Browsers"="" + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\disable-browser.reg + + fi + + # NSIS installer + w_try "$WINE" $file1 ${W_OPT_UNATTENDED:+ /S} + + if test ${W_OPT_UNATTENDED} + then + "$WINE" reg delete "HKEY_CURRENT_USER\Software\Wine\WineBrowser" /v Browsers /f || true + fi +} + +#---------------------------------------------------------------- + +w_metadata gfw dlls \ + title="MS Games For Windows Live (xlive.dll)" \ + publisher="Microsoft" \ + year="2008" \ + media="download" \ + file1="gfwlivesetupmin.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/xlive.dll" + +load_gfw() +{ + # http://www.microsoft.com/games/en-us/live/pages/livejoin.aspx + # http://www.next-gen.biz/features/should-games-for-windows-live-die + w_download http://download.microsoft.com/download/5/5/8/55846E20-4A46-4EF8-B272-7F988BC9090A/gfwlivesetupmin.exe 6f9e0ba052c68c8b51bb0e3ce6024d0e1c7b20b2 + + # FIXME: Depends on .Net 20, but is it really needed? For now, skip it. + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" gfwlivesetupmin.exe /nodotnet $W_UNATTENDED_SLASH_Q + + w_call msasn1 +} + +#---------------------------------------------------------------- + +w_metadata glut dlls \ + title="The glut utility library for OpenGL" \ + publisher="Mark J. Kilgard" \ + year="2001" \ + media="download" \ + file1="glut-3.7.6-bin.zip" \ + installed_file1="c:/glut-3.7.6-bin/glut32.lib" + +load_glut() +{ + w_download http://press.liacs.nl/researchdownloads/glut.win32/glut-3.7.6-bin.zip fb4731885c05b3cf2c79e85aabe8fc9949616ef4 + # FreeBSD unzip rm -rf's inside the target dir before extracting: + w_try_unzip "$W_TMP" "$W_CACHE"/glut/glut-3.7.6-bin.zip + w_try mv "$W_TMP/glut-3.7.6-bin" "$W_DRIVE_C" + w_try cp "$W_DRIVE_C"/glut-3.7.6-bin/glut32.dll "$W_SYSTEM32_DLLS" + w_warn "If you want to compile glut programs, add c:/glut-3.7.6-bin to LIB and INCLUDE" +} + +#---------------------------------------------------------------- + +w_metadata gmdls dlls \ + title="General MIDI DLS Collection" \ + publisher="Microsoft / Roland" \ + year="1999" \ + media="download" \ + file1="../directx8/DX81Redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/drivers/gm.dls" + +load_gmdls() +{ + w_download_to directx8 http://download.microsoft.com/download/whistler/Update/8.1/W982KMeXP/EN-US/DX81Redist.exe ea2345f602741343e97a5ece5d1d2c3cc44296c3 + + w_try_unzip "$W_TMP" "$W_CACHE"/directx8/DX81Redist.exe "*/*/DirectX.cab" + w_try_cabextract -d "$W_TMP" -F gm16.dls "$W_TMP"/*/*/DirectX.cab + w_try mv "$W_TMP"/gm16.dls "$W_SYSTEM32_DLLS"/drivers/gm.dls + if test "$W_ARCH" = "win64" + then + w_try cd "$W_SYSTEM64_DLLS"/drivers + w_try ln -s ../../syswow64/drivers/gm.dls + fi +} + +#---------------------------------------------------------------- +# um, codecs are kind of clustered here. They probably deserve their own real category. + +w_metadata allcodecs dlls \ + title="All codecs (dirac, ffdshow, icodecs, l3codecx, xvid) except wmp" \ + publisher="various" \ + year="1998-2009" \ + media="download" + +load_allcodecs() +{ + w_call dirac + w_call l3codecx + w_call ffdshow + w_call icodecs + w_call xvid +} + +#---------------------------------------------------------------- + +w_metadata dirac dlls \ + title="The Dirac directshow filter v1.0.2" \ + publisher="Dirac" \ + year="2009" \ + media="download" \ + file1="DiracDirectShowFilter-1.0.2.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Dirac/DiracDecoder.dll" + +load_dirac() +{ + w_download $WINETRICKS_SOURCEFORGE/dirac/DiracDirectShowFilter-1.0.2.exe c912d30a8fa500c7841444559feb1f49301611c4 + + # Avoid mfc90 not found error. (DiracSplitter-libschroedinger.ax needs mfc90 to register itself, I think.) + w_call vcrun2008 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run DiracDirectShowFilter-1.0.2.exe + WinWait, Dirac, Welcome + if ( w_opt_unattended > 0 ) { + ControlClick, Button2 + WinWait, Dirac, License + ControlClick, Button2 + WinWait, Dirac, Location + ControlClick, Button2 + WinWait, Dirac, Components + ControlClick, Button2 + WinWait, Dirac, environment + ControlCLick, Button1 + WinWait, Dirac, installed + ControlClick, Button2 + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata ffdshow dlls \ + title="ffdshow video codecs" \ + publisher="doom9 folks" \ + year="2010" \ + media="download" \ + file1="ffdshow_beta7_rev3154_20091209.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/ffdshow/ff_liba52.dll" \ + homepage="http://ffdshow-tryout.sourceforge.net" + +load_ffdshow() +{ + w_download $WINETRICKS_SOURCEFORGE/ffdshow-tryout/ffdshow_beta7_rev3154_20091209.exe 8534c31489e51df70ee9583438d6211e6f0696d0 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" ffdshow_beta7_rev3154_20091209.exe $W_UNATTENDED_SLASH_SILENT +} + +#---------------------------------------------------------------- + +w_metadata hid dlls \ + title="MS hid" \ + publisher="Microsoft" \ + year="2003" \ + media="download" \ + file1="../win2ksp4/W2KSP4_EN.EXE" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/hid.dll" + +load_hid() +{ + helper_win2ksp4 i386/hid.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/hid.dl_ + + w_override_dlls native hid +} + +#---------------------------------------------------------------- + +w_metadata icodecs dlls \ + title="Indeo codecs" \ + publisher="Intel" \ + year="1998" \ + media="download" \ + file1="codinstl.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/ir50_32.dll" + +load_icodecs() +{ + # Note: this codec is insecure, see + # http://support.microsoft.com/kb/954157 + # Original source, ftp://download.intel.com/support/createshare/camerapack/codinstl.exe, had same checksum + # 2010-11-14: http://codec.alshow.co.kr/Down/codinstl.exe + # 2014-04-11: http://www.cucusoft.com/codecdownload/codinstl.exe (linked from http://www.cucusoft.com/codec.asp) + w_download "http://www.cucusoft.com/codecdownload/codinstl.exe" 2c5d64f472abe3f601ce352dcca75b4f02996f8a + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + run codinstl.exe + winwait, Welcome + if ( w_opt_unattended > 0 ) { + sleep 1000 + controlclick, Button1 ; Next + winwait, Software License Agreement + sleep 1000 + controlclick, Button2 ; Yes + } + winwait, Setup Complete + if ( w_opt_unattended > 0 ) { + sleep 1000 + controlclick, Button4 ; Finish + } + winwaitclose + " + + # Work around bug in codec's installer? + # http://support.britannica.com/other/touchthesky/win/issues/TSTUw_150.htm + # http://appdb.winehq.org/objectManager.php?sClass=version&iId=7091 + w_try_regsvr ir50_32.dll +} + +#---------------------------------------------------------------- + +w_metadata jet40 dlls \ + title="MS Jet 4.0 Service Pack 8" \ + publisher="Microsoft" \ + year="2003" \ + media="download" \ + file1="jet40sp8_9xnt.exe" \ + installed_file1="$W_COMMONFILES_X86_WIN/Microsoft Shared/dao/dao360.dll" + +load_jet40() +{ + w_call mdac27 + w_call wsh57 + # http://support.microsoft.com/kb/239114 + # See also http://bugs.winehq.org/show_bug.cgi?id=6085 + # FIXME: "failed with error 2" + w_download http://www.autoxplorer.com/exe/Jet40SP8_9xNT.exe 8cd25342030857969ede2d8fcc34f3f7bcc2d6d4 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" jet40sp8_9xnt.exe $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata ie8_kb2936068 dlls \ + title="Cumulative Security Update for Internet Explorer 8" \ + publisher="Microsoft" \ + year="2014" \ + media="download" \ + file1="IE8-WindowsXP-KB2936068-x86-ENU.exe" \ + installed_file1="c:/windows/KB2936068-IE8.log" + +load_ie8_kb2936068() +{ + w_call ie8 + + w_download https://download.microsoft.com/download/3/8/C/38CE0ABB-01FD-4C0A-A569-BC5E82C34A17/IE8-WindowsXP-KB2936068-x86-ENU.exe 1bdeb741085b8f1ef6efc83f8615121373107347 + + if [ $W_UNATTENDED_SLASH_Q ] + then + quiet="$W_UNATTENDED_SLASH_QUIET /forcerestart" + else + quiet="" + fi + + cd "$W_CACHE"/"$W_PACKAGE" + "$WINE" IE8-WindowsXP-KB2936068-x86-ENU.exe $quiet + status=$? + case $status in + 0|194) ;; + *) w_die "$W_PACKAGE installation failed" + esac +} + +#---------------------------------------------------------------- + +w_metadata kde apps \ + title="KDE on Windows" \ + publisher="various" \ + year="2013" \ + media="download" \ + file1="kdewin-installer-gui-1.0.0.exe" \ + installed_exe1="$W_PROGRAMS_WIN/kde/etc/installer.ini" \ + homepage="http://windows.kde.org" \ + unattended="no" + +load_kde() +{ + w_download http://mirrors.mit.edu/kde/stable/kdewin/installer/kdewin-installer-gui-1.0.0.exe 0d798facb7fbf11529e7ecd067e875d76adb9d78 + mkdir -p "$W_PROGRAMS_UNIX/kde" + w_try cp "$W_CACHE/kde/${file1}" "$W_PROGRAMS_UNIX/kde" + cd "$W_PROGRAMS_UNIX/kde" + # There's no unattended option, probably because there are so many choices, + # it's like cygwin + w_try "$WINE" "${file1}" +} + +#---------------------------------------------------------------- + +w_metadata kindle apps \ + title="Amazon Kindle" \ + publisher="Amazon" \ + year="2016" \ + media="download" \ + file1="KindleForPC-installer-1.15.43061.exe" \ + installed_exe1="$W_PROGRAMS_WIN/Amazon/Kindle/Kindle.exe" \ + homepage="http://www.amazon.com/gp/feature.html/?docId=1000426311" + +load_kindle() +{ + w_download http://kindleforpc.amazon.com/43061/KindleForPC-installer-1.15.43061.exe 27364a6867aac562426494312c2b3f4b673f13e2 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" $file1 ${W_OPT_UNATTENDED:+ /S} + + if w_workaround_wine_bug 32859 + then + w_warn "You may need to run with taskset -c 0 to avoid a libX11 crash" + fi +} + +#---------------------------------------------------------------- + +w_metadata l3codecx dlls \ + title="MPEG Layer-3 Audio Codec for Microsoft DirectShow" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/l3codecx.ax" + +load_l3codecx() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'l3codecx.ax' "$W_TMP/dxnt.cab" + + w_try_regsvr l3codecx.ax +} + +#---------------------------------------------------------------- + +# FIXME: installed location is +# $W_PROGRAMS_X86_WIN/Gemeinsame Dateien/System/ADO/msado26.tlb +# in German... need a variable W_COMMONFILES or something like that + +w_metadata mdac27 dlls \ + title="Microsoft Data Access Components 2.7 sp1" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + file1="mdac_typ.exe" \ + installed_file1="$W_COMMONFILES_X86_WIN/System/ADO/msado26.tlb" + +load_mdac27() +{ + if test $W_ARCH = win64 + then + w_die "Installer doesn't support 64-bit architecture." + fi + + # http://www.microsoft.com/downloads/en/details.aspx?FamilyId=9AD000F2-CAE7-493D-B0F3-AE36C570ADE8&displaylang=en + w_download http://download.microsoft.com/download/3/b/f/3bf74b01-16ba-472d-9a8c-42b2b4fa0d76/mdac_typ.exe f68594d1f578c3b47bf0639c46c11c5da161feee + load_native_mdac + w_set_winver nt40 + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" mdac_typ.exe ${W_OPT_UNATTENDED:+ /q /C:"setup $W_UNATTENDED_SLASH_QNT"} + w_unset_winver +} + +#---------------------------------------------------------------- + +w_metadata mdac28 dlls \ + title="Microsoft Data Access Components 2.8 sp1" \ + publisher="Microsoft" \ + year="2005" \ + media="download" \ + file1="MDAC_TYP.EXE" \ + installed_file1="$W_COMMONFILES_X86_WIN/System/ADO/msado27.tlb" + +load_mdac28() +{ + # http://www.microsoft.com/downloads/en/details.aspx?familyid=78cac895-efc2-4f8e-a9e0-3a1afbd5922e + w_download http://download.microsoft.com/download/4/a/a/4aafff19-9d21-4d35-ae81-02c48dcbbbff/MDAC_TYP.EXE 4fbc272c79da59e38818924d8575accb0af776fb + load_native_mdac + w_set_winver nt40 + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" mdac_typ.exe ${W_OPT_UNATTENDED:+ /q /C:"setup $W_UNATTENDED_SLASH_QNT"} + w_unset_winver +} + +#---------------------------------------------------------------- + +w_metadata mdx dlls \ + title="Managed DirectX" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="C:/windows/assembly/GAC/microsoft.directx/1.0.2902.0__31bf3856ad364e35/microsoft.directx.dll" + +load_mdx() +{ + helper_directx_dl + + cd "$W_TMP" + + w_try_cabextract -F "*MDX*" "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -F "*.cab" *Archive.cab + + # Install assemblies + w_try_cabextract -d "$W_WINDIR_UNIX/Microsoft.NET/DirectX for Managed Code/1.0.2902.0" -F "microsoft.directx*" *MDX1_x86.cab + for file in mdx_*.cab + do + ver="${file%%_x86.cab}" + ver="${ver##mdx_}" + w_try_cabextract -d "$W_WINDIR_UNIX/Microsoft.NET/DirectX for Managed Code/$ver" -F "microsoft.directx*" "$file" + done + w_try_cabextract -d "$W_WINDIR_UNIX/Microsoft.NET/DirectX for Managed Code/1.0.2911.0" -F "microsoft.directx.direct3dx*" *MDX1_x86.cab + + # Add them to GAC + cd "$W_WINDIR_UNIX/Microsoft.NET/DirectX for Managed Code" + for ver in * + do + cd "$ver" + for asm in *.dll + do + name="${asm%%.dll}" + w_try mkdir -p "$W_WINDIR_UNIX/assembly/GAC/$name/${ver}__31bf3856ad364e35" + w_try cp "$asm" "$W_WINDIR_UNIX/assembly/GAC/$name/${ver}__31bf3856ad364e35" + done + cd - + done + + # AssemblyFolders + cat > "$W_TMP"/asmfolders.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2902.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2902.0\\\\" + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2903.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2903.0\\\\" + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2904.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2904.0\\\\" + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2905.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2905.0\\\\" + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2906.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2906.0\\\\" + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2907.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2907.0\\\\" + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2908.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2908.0\\\\" + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2909.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2909.0\\\\" + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2910.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2910.0\\\\" + +[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\AssemblyFolders\DX_1.0.2911.0] +@="C:\\\\windows\\\\Microsoft.NET\\\\DirectX for Managed Code\\\\1.0.2911.0\\\\" +_EOF_ + w_try_regedit "$W_TMP_WIN"\\asmfolders.reg +} + +#---------------------------------------------------------------- + +w_metadata mf dlls \ + title="MS Media Foundation" \ + publisher="Microsoft" \ + year="2011" \ + media="download" \ + file1="../win7sp1/windows6.1-KB976932-X86.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mf.dll" + +load_mf() +{ + helper_win7sp1 x86_microsoft-windows-mediafoundation_31bf3856ad364e35_6.1.7601.17514_none_9e6699276b03c38e/mf.dll + w_try cp "$W_TMP/x86_microsoft-windows-mediafoundation_31bf3856ad364e35_6.1.7601.17514_none_9e6699276b03c38e/mf.dll" "$W_SYSTEM32_DLLS/mf.dll" + + w_override_dlls native,builtin mf +} + +#---------------------------------------------------------------- + +w_metadata mfc40 dlls \ + title="MS mfc40 (Microsoft Foundation Classes from Visual C++ 4.0)" \ + publisher="Microsoft" \ + year="1999" \ + media="download" \ + file1="mfc40.cab" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mfc40.dll" + +load_mfc40() +{ + w_download http://activex.microsoft.com/controls/vc/mfc40.cab 53c570e2c811674d6e4fa46cff5a3a04cd0ffc24 + w_try_cabextract -d "$W_TMP" "$W_CACHE"/mfc40/mfc40.cab + w_try_cabextract -d "$W_SYSTEM32_DLLS" -F *40.dll "$W_TMP"/mfc40.exe +} + +#---------------------------------------------------------------- + +w_metadata mozillabuild apps \ + title="Mozilla build environment" \ + publisher="The Mozilla Foundation" \ + year="2015" \ + media="download" \ + file1="MozillaBuildSetup-2.0.0.exe" \ + installed_file1="c:/mozilla-build/moztools/bin/nsinstall.exe" \ + homepage="https://wiki.mozilla.org/MozillaBuild" + +load_mozillabuild() +{ + w_download http://ftp.mozilla.org/pub/mozilla.org/mozilla/libraries/win32/MozillaBuildSetup-2.0.0.exe daba4bc03ae9014c68611fd36b05dcc4083c6fdb + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" MozillaBuildSetup-2.0.0.exe $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata msacm32 dlls \ + title="MS ACM32" \ + publisher="Microsoft" \ + year="2003" \ + media="download" \ + file1="../xpsp3/WindowsXP-KB936929-SP3-x86-ENU.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msacm32.dll" + +load_msacm32() +{ + helper_xpsp3 i386/msacm32.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/msacm32.dl_ + w_override_dlls native,builtin msacm32 +} + +#---------------------------------------------------------------- + +w_metadata msasn1 dlls \ + title="MS ASN1" \ + publisher="Microsoft" \ + year="2003" \ + media="download" \ + file1="../win2ksp4/W2KSP4_EN.EXE" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msasn1.dll" + +load_msasn1() +{ + helper_win2ksp4 i386/msasn1.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/msasn1.dl_ +} + +#---------------------------------------------------------------- + +w_metadata msctf dlls \ + title="MS Text Service Module" \ + publisher="Microsoft" \ + year="2003" \ + media="download" \ + file1="../xpsp3/WindowsXP-KB936929-SP3-x86-ENU.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msctf.dll" + +load_msctf() +{ + helper_xpsp3 i386/msctf.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/msctf.dl_ + w_override_dlls native,builtin msctf +} + +#---------------------------------------------------------------- + +w_metadata msdxmocx dlls \ + title="MS Windows Media Player 2 ActiveX control for VB6" \ + publisher="Microsoft" \ + year="1999" \ + media="download" \ + file1="mpfull.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msdxm.ocx" + +load_msdxmocx() +{ + # Previously at http://www.oldapps.com/windows_media_player.php?old_windows_media_player=3?download + # (2015/12/01) Iceweasel gave a security warning (!), but clamscan and virustotal.com report it as clean + # + # (2016/02/18) Since then, oldapps.com removed it. It's on a Finnish mirror, where it's been since 2001/10/20 + # Found using http://www.filewatcher.com/m/mpfull.exe.3593680-0.html + # The sha1sum is different. Perhaps Iceweasel was right. This one is also clean according to clamscan/virustotal.com + + w_download ftp://www.define.fi/Pub/Fixes/Microsoft/Windows%2095/mpfull.exe 99691df6ac455233230faac7514bdea781ba0ce3 + + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_CACHE/$W_PACKAGE/${file1}" + w_try_regsvr msdxm.ocx +} + +#---------------------------------------------------------------- + +w_metadata msflxgrd dlls \ + title="MS FlexGrid Control (msflxgrd.ocx)" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="MsFlxGrd.cab" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/MSFLXGRD.OCX" + +load_msflxgrd() +{ + # http://msdn.microsoft.com/en-us/library/aa240864(VS.60).aspx + # may 2011: f497c3b390cd80d5bcd1f13d5c0c68b206369aa7 + # 2015/11/09: Removed from Microsoft.com, archive.org has an older copy: + # 2015/11/09: 3d6c04e923781d4ce0d3ab62189b8de352ab25d5 + w_download http://activex.microsoft.com/controls/vb6/MsFlxGrd.cab 3d6c04e923781d4ce0d3ab62189b8de352ab25d5 + + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/msflxgrd/${file1} + w_try cp -f "$W_TMP"/[Mm][Ss][Ff][Ll][Xx][Gg][Rr][Dd].[Oo][Cc][Xx] "$W_SYSTEM32_DLLS" + w_try_regsvr MSFLXGRD.OCX +} + +#---------------------------------------------------------------- + +w_metadata mshflxgd dlls \ + title="MS Hierarchical FlexGrid Control (mshflxgd.ocx)" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="MSHFLXGD.CAB" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/MSHFLXGD.OCX" + +load_mshflxgd() +{ + # http://msdn.microsoft.com/en-us/library/aa240864(VS.60).aspx + # orig: 5f9c7a81022949bfe39b50f2bbd799c448bb7377 + # Jan 2009: 7ad74e589d5eefcee67fa14e65417281d237a6b6 + # May 2009: bd8aa796e16e5f213414af78931e0379d9cbe292 + # 2015/11/09: Removed from Microsoft.com, archive.org has the original copy: + # 2015/11/09: 5f9c7a81022949bfe39b50f2bbd799c448bb7377 + w_download http://activex.microsoft.com/controls/vb6/MSHFLXGD.CAB 5f9c7a81022949bfe39b50f2bbd799c448bb7377 + + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/mshflxgd/MSHFLXGD.CAB + w_try cp -f "$W_TMP"/[Mm][Ss][Hh][Ff][Ll][Xx][Gg][Dd].[Oo][Cc][Xx] "$W_SYSTEM32_DLLS" + w_try_regsvr MSHFLXGD.OCX +} + +#---------------------------------------------------------------- + +w_metadata mspatcha dlls \ + title="MS mspatcha" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="../win2ksp4/W2KSP4_EN.EXE" \ + installed_exe1="$W_SYSTEM32_DLLS_WIN/mspatcha.dll" + +load_mspatcha() +{ + helper_win2ksp4 i386/mspatcha.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/mspatcha.dl_ + + w_override_dlls native,builtin mspatcha +} + +#---------------------------------------------------------------- + +w_metadata msscript dlls \ + title="MS Windows Script Control" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="sct10en.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msscript.ocx" + +load_msscript() +{ + # http://msdn.microsoft.com/scripting/scriptcontrol/x86/sct10en.exe + # http://www.microsoft.com/downloads/details.aspx?familyid=d7e31492-2595-49e6-8c02-1426fec693ac + w_download http://download.microsoft.com/download/d/2/a/d2a7430c-6d5b-48e9-96c4-3c751be7bffe/sct10en.exe fd9f2f23357ab11ae70682d6864f7e9f188adf2a + + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/msscript/sct10en.exe + w_try cp -f "$W_TMP"/msscript.ocx "$W_SYSTEM32_DLLS" + w_try_regsvr msscript.ocx +} +#---------------------------------------------------------------- + +w_metadata msls31 dlls \ + title="MS Line Services" \ + publisher="Microsoft" \ + year="2001" \ + media="download" \ + file1="InstMsiW.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msls31.dll" + +load_msls31() +{ + # Needed by native richedit and internet explorer + w_download http://download.microsoft.com/download/WindowsInstaller/Install/2.0/NT45/EN-US/InstMsiW.exe 4fc3bf0dc96b5cf5ab26430fac1c33c5c50bd142 + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/msls31/InstMsiW.exe + w_try cp -f "$W_TMP"/msls31.dll "$W_SYSTEM32_DLLS" +} + +#---------------------------------------------------------------- + +w_metadata msmask dlls \ + title="MS Masked Edit Control" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="MSMASK32.CAB" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msmask32.ocx" + +load_msmask() +{ + # http://msdn.microsoft.com/en-us/library/11405hcf(VS.71).aspx + # http://bugs.winehq.org/show_bug.cgi?id=2934 + # old: 3c6b26f68053364ea2e09414b615dbebafb9d5c3 + # May 2009: 30e55679e4a13fe4d9620404476f215f93239292 + # 2015/11/09: Removed from Microsoft.com, archive.org has an older copy: + # 2015/11/09: bdd2bb3a32d18926a048f302aff18b1e6d250d9d + w_download http://activex.microsoft.com/controls/vb6/MSMASK32.CAB bdd2bb3a32d18926a048f302aff18b1e6d250d9d + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/msmask/MSMASK32.CAB + w_try cp -f "$W_TMP"/[Mm][Ss][Mm][Aa][Ss][Kk]32.[Oo][Cc][Xx] "$W_SYSTEM32_DLLS"/msmask32.ocx + w_try_regsvr msmask32.ocx +} + + #---------------------------------------------------------------- + +w_metadata msftedit dlls \ + title="Microsoft RichEdit Control" \ + publisher="Microsoft" \ + year="2011" \ + media="download" \ + file1="../win7sp1/windows6.1-KB976932-X86.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msftedit.dll" + +load_msftedit() +{ + helper_win7sp1 x86_microsoft-windows-msftedit_31bf3856ad364e35_6.1.7601.17514_none_d7d862f19573a5ff/msftedit.dll + w_try cp "$W_TMP/x86_microsoft-windows-msftedit_31bf3856ad364e35_6.1.7601.17514_none_d7d862f19573a5ff/msftedit.dll" "$W_SYSTEM32_DLLS/msftedit.dll" + + w_override_dlls native,builtin mstfedit +} + +#---------------------------------------------------------------- + +w_metadata msxml3 dlls \ + title="MS XML Core Services 3.0" \ + publisher="Microsoft" \ + year="2005" \ + media="download" \ + file1="msxml3.msi" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msxml3.dll" + +load_msxml3() +{ + # Service Pack 5 + #w_download http://download.microsoft.com/download/a/5/e/a5e03798-2454-4d4b-89a3-4a47579891d8/msxml3.msi + # Service Pack 7 + w_download http://download.microsoft.com/download/8/8/8/888f34b7-4f54-4f06-8dac-fa29b19f33dd/msxml3.msi d4c2178dfb807e1a0267fce0fd06b8d51106d913 + + # it won't install on top of wine's msxml3, which has a pretty high version number, so delete wine's fake dll + rm "$W_SYSTEM32_DLLS"/msxml3.dll + w_override_dlls native msxml3 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" msiexec /i msxml3.msi $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata msxml4 dlls \ + title="MS XML Core Services 4.0" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="msxml.msi" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msxml4.dll" + +load_msxml4() +{ + # MS06-071: http://www.microsoft.com/downloads/details.aspx?familyid=24B7D141-6CDF-4FC4-A91B-6F18FE6921D4 + # w_download http://download.microsoft.com/download/e/2/e/e2e92e52-210b-4774-8cd9-3a7a0130141d/msxml4-KB927978-enu.exe d364f9fe80c3965e79f6f64609fc253dfeb69c25 + # MS07-042: http://www.microsoft.com/downloads/details.aspx?FamilyId=021E12F5-CB46-43DF-A2B8-185639BA2807 + # w_download http://download.microsoft.com/download/9/4/2/9422e6b6-08ee-49cb-9f05-6c6ee755389e/msxml4-KB936181-enu.exe 73d75d7b41f8a3d49f272e74d4f73bb5e82f1acf + # SP3 (2009): http://www.microsoft.com/downloads/details.aspx?familyid=7F6C0CB4-7A5E-4790-A7CF-9E139E6819C0 + w_download http://download.microsoft.com/download/A/2/D/A2D8587D-0027-4217-9DAD-38AFDB0A177E/msxml.msi aa70c5c1a7a069af824947bcda1d9893a895318b + w_override_dlls native,builtin msxml4 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" msiexec /i msxml.msi $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata msxml6 dlls \ + title="MS XML Core Services 6.0 sp1" \ + publisher="Microsoft" \ + year="2007" \ + media="download" \ + file1="msxml6_x86.msi" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msxml6.dll" + +load_msxml6() +{ + # Service Pack 1 + # http://www.microsoft.com/downloads/details.aspx?familyid=D21C292C-368B-4CE1-9DAB-3E9827B70604 + if [ $W_ARCH = win64 ] + then + w_download http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x64.msi ca0c0814a9c7024583edb997296aad7cb0a3cbf7 + else + w_download http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi 5125220e985b33c946bbf9f60e2b222c7570bfa2 + fi + w_override_dlls native,builtin msxml6 + rm -f "$W_SYSTEM32_DLLS/msxml6.dll" + if [ $W_ARCH = win64 ] + then + rm -f "$W_SYSTEM64_DLLS/msxml6.dll" + w_try_msiexec64 /i "$W_CACHE"/msxml6/msxml6_x64.msi + else + w_try "$WINE" msiexec /i "$W_CACHE"/msxml6/msxml6_x86.msi $W_UNATTENDED_SLASH_Q + fi +} + +#---------------------------------------------------------------- + +w_metadata nuget dlls \ + title="NuGet Package manager" \ + publisher="Outercurve Foundation" \ + year="2013" \ + media="download" \ + file1="nuget.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/nuget.exe" \ + homepage="https://nuget.org" + +load_nuget() +{ + w_call dotnet40 + # 2014-01-22: d4082afc4f89df195fa1e83ee1cf02bce3dd2f13 + # 2014-02-26: 9bc98ced9c2d2b51ab687f86b5580913c025b8b0 + # 2014-04-17: 3210cc9a2e575384d59b0604c892bccce760e9b6 + # probably changes too rapidly to check + w_download https://nuget.org/nuget.exe + w_try cp "$W_CACHE/$W_PACKAGE"/nuget.exe "$W_SYSTEM32_DLLS" + w_warn "To run nuget, use the commandline \"$WINE nuget\"." +} + +#---------------------------------------------------------------- + +w_metadata ogg dlls \ + title="OpenCodecs 0.85: flac, speex, theora, vorbis, WebM" \ + publisher="xiph.org" \ + year="2011" \ + media="download" \ + file1="opencodecs_0.85.17777.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Xiph.Org/Open Codecs/AxPlayer.dll" \ + homepage="http://xiph.org/dshow" + +load_ogg() +{ + w_download http://downloads.xiph.org/releases/oggdsf/opencodecs_0.85.17777.exe 386cf7cd29ffcbf8705eff8c8233de448ecf33ab + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" $file1 $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata ollydbg110 apps \ + title="OllyDbg" \ + publisher="ollydbg.de" \ + year="2004" \ + media="download" \ + file1="odbg110.zip" \ + installed_file1="c:/ollydbg110/OLLYDBG.EXE" \ + homepage="http://ollydbg.de" + +load_ollydbg110() +{ + # the graphical user interface is unreadable without having corefonts installed + w_call corefonts + + w_download http://www.ollydbg.de/odbg110.zip 8403d8049a0841887c16cf64889596ad52b84da8 + w_try_unzip "$W_DRIVE_C/ollydbg110" "$W_CACHE/$W_PACKAGE"/odbg110.zip +} + +#---------------------------------------------------------------- + +w_metadata ollydbg200 apps \ + title="OllyDbg" \ + publisher="ollydbg.de" \ + year="2010" \ + media="download" \ + file1="odbg200.zip" \ + installed_file1="c:/ollydbg200/ollydbg.exe" \ + homepage="http://ollydbg.de" + +load_ollydbg200() +{ + # the graphical user interface is unreadable without having corefonts installed + w_call corefonts + + w_download http://www.ollydbg.de/odbg200.zip 68e572d94a0555e8f14516b55b6b96b879900fe9 + w_try_unzip "$W_DRIVE_C/ollydbg200" "$W_CACHE/$W_PACKAGE"/odbg200.zip +} + +#---------------------------------------------------------------- + +w_metadata ollydbg201 apps \ + title="OllyDbg" \ + publisher="ollydbg.de" \ + year="2013" \ + media="download" \ + file1="odbg201.zip" \ + installed_file1="c:/ollydbg201/ollydbg.exe" \ + homepage="http://ollydbg.de" + +load_ollydbg201() +{ + # the graphical user interface is unreadable without having corefonts installed + w_call corefonts + + w_download http://www.ollydbg.de/odbg201.zip d41fe77a2801d38476f20468ab61ddce14c3abb8 + w_try_unzip "$W_DRIVE_C/ollydbg201" "$W_CACHE/$W_PACKAGE"/odbg201.zip + + # ollydbg201 is affected by wine bug 36012 if debug symbols are available. + # As a workaround native 'dbghelp' can be installed. We don't do this automatically + # because for some people it might work even without additional workarounds. + # Older versions of OllyDbg were not affected by this bug. +} + +#---------------------------------------------------------------- + +w_metadata openwatcom apps \ + title="Open Watcom C/C++ compiler (can compile win16 code!)" \ + publisher="Watcom" \ + year="2010" \ + media="download" \ + file1="open-watcom-c-win32-1.9.exe" \ + installed_file1="c:/WATCOM/owsetenv.bat" \ + homepage="http://www.openwatcom.org" + +load_openwatcom() +{ + # 2016/03/11: upstream http://www.openwatcom.org appears dead (404) + w_download "http://openwatcom.mirror.fr/open-watcom-c-win32-1.9.exe" 236ac33ebd463006be4ecd83d7ebea1c026eb55a + + if [ $W_UNATTENDED_SLASH_Q ] + then + # Options documented at http://bugzilla.openwatcom.org/show_bug.cgi?id=898 + # But they don't seem to work on wine, so jam them into setup.inf + # Pick smallest installation that supports 16 bit C and C++ + cd "$W_TMP" + cp "$W_CACHE"/openwatcom/open-watcom-c-win32-1.9.exe . + w_try_unzip . open-watcom-c-win32-1.9.exe setup.inf + sed -i 's/tools16=.*/tools16=true/' setup.inf + w_try zip -f open-watcom-c-win32-1.9.exe + w_try "$WINE" open-watcom-c-win32-1.9.exe -s + else + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" open-watcom-c-win32-1.9.exe + fi + + if test ! -f "$W_DRIVE_C"/WATCOM/binnt/wcc.exe + then + w_warn "c:/watcom/binnt/wcc.exe not found; you probably didn't select 16 bit tools, and won't be able to buld win16test" + fi +} + +#---------------------------------------------------------------- + +w_metadata pdh dlls \ + title="MS pdh.dll (Performance Data Helper)" \ + publisher="Microsoft" \ + year="2001" \ + media="download" \ + file1="pdhinst.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/pdh.dll" + +load_pdh() +{ + # http://support.microsoft.com/kb/284996 + w_download http://download.microsoft.com/download/platformsdk/Redist/5.0.2195.2668/NT4/EN-US/pdhinst.exe f42448660def8cd7f42b34aa7bc7264745f4425e + + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/pdh/pdhinst.exe + w_try_unzip "$W_TMP" "$W_TMP"/pdh.exe + w_try cp -f "$W_TMP"/x86/Pdh.Dll "$W_SYSTEM32_DLLS"/pdh.dll +} + +#---------------------------------------------------------------- + +w_metadata physx dlls \ + title="PhysX" \ + publisher="NVidia" \ + year="2014" \ + media="download" \ + file1="PhysX-9.14.0702-SystemSoftware.msi" \ + installed_file1="$W_PROGRAMS_WIN/NVIDIA Corporation/PhysX/Engine/v2.8.3/PhysXCore.dll" + +load_physx() +{ + # Has a minor issue, see bug report http://bugs.winehq.org/show_bug.cgi?id=34167 + w_download http://uk.download.nvidia.com/Windows/9.14.0702/PhysX-9.14.0702-SystemSoftware.msi 81e2d38e2356e807ad80cdf150ed5acfff839c8b + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" msiexec /i PhysX-9.14.0702-SystemSoftware.msi $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata pngfilt dlls \ + title="pngfilt.dll (from ie5)" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/pngfilt.dll" + +load_pngfilt() +{ + # http://www.microsoft.com/en-us/download/details.aspx?id=3907 + w_download http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe 6f5db296ebf58e81c49bc667049a3f88a3f1ec3d + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F pngfilt.dll "$W_CACHE"/pngfilt/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe + w_try_regsvr pngfilt.dll +} + +#---------------------------------------------------------------- + +w_metadata qdvd dlls \ + title="qdvd.dll (from Directx 9 user redistributable)" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/qdvd.dll" + +load_qdvd() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F qdvd.dll "$W_TMP/dxnt.cab" + + w_try_regsvr qdvd.dll + + w_override_dlls native qdvd +} + +#---------------------------------------------------------------- + +w_metadata quartz dlls \ + title="quartz.dll (from Directx 9 user redistributable)" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/quartz.dll" + +load_quartz() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F quartz.dll "$W_TMP/dxnt.cab" + + w_try_regsvr quartz.dll + + w_override_dlls native quartz +} + +#---------------------------------------------------------------- + +w_metadata quicktime72 dlls \ + title="Apple Quicktime 7.2" \ + publisher="Apple" \ + year="2010" \ + media="download" \ + file1="QuickTimeInstaller.exe" \ + installed_file1="c:/windows/Installer/{95A890AA-B3B1-44B6-9C18-A8F7AB3EE7FC}/QTPlayer.ico" + +load_quicktime72() +{ + # https://support.apple.com/downloads/quicktime + w_download http://appldnld.apple.com.edgesuite.net/content.info.apple.com/QuickTime/061-2915.20070710.pO94c/QuickTimeInstaller.exe bb89981f10cf21de57b9453e53cf81b9194271a9 + + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" ${file1} ALLUSERS=1 DESKTOP_SHORTCUTS=0 QTTaskRunFlags=0 QTINFO.BISQTPRO=1 SCHEDULE_ASUW=0 REBOOT_REQUIRED=No $W_UNATTENDED_SLASH_QN > /dev/null 2>&1 + + if w_workaround_wine_bug 11681 + then + # Following advice verified with test movies from + # http://support.apple.com/kb/HT1425 + # in QuickTimePlayer. + + w_warn "In Quicktime preferences, check Advanced / Safe Mode (gdi), or movies won't play." + if test "$W_UNATTENDED_SLASH_Q" = "" + then + w_try "$WINE" control "$W_PROGRAMS_WIN\\QuickTime\\QTSystem\\QuickTime.cpl" + else + # FIXME: script the control panel with autohotkey? + # We could probably also overwrite QuickTime.qtp but + # the format isn't known, so we'd have to override all other settings, too. + : + fi + fi +} + +#---------------------------------------------------------------- + +w_metadata quicktime76 dlls \ + title="Apple Quicktime 7.6" \ + publisher="Apple" \ + year="2010" \ + media="download" \ + file1="QuickTimeInstaller.exe" \ + installed_file1="c:/windows/Installer/{57752979-A1C9-4C02-856B-FBB27AC4E02C}/QTPlayer.ico" + +load_quicktime76() +{ + # http://www.apple.com/quicktime/download/ + w_download http://appldnld.apple.com/QuickTime/041-0025.20101207.Ptrqt/QuickTimeInstaller.exe 1eec8904f041d9e0ad3459788bdb690e45dbc38e + + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" QuickTimeInstaller.exe ALLUSERS=1 DESKTOP_SHORTCUTS=0 QTTaskRunFlags=0 QTINFO.BISQTPRO=1 SCHEDULE_ASUW=0 REBOOT_REQUIRED=No $W_UNATTENDED_SLASH_QN > /dev/null 2>&1 + + if w_workaround_wine_bug 11681 + then + # Following advice verified with test movies from + # http://support.apple.com/kb/HT1425 + # in QuickTimePlayer. + + w_warn "In Quicktime preferences, check Advanced / Safe Mode (gdi), or movies won't play." + if test "$W_UNATTENDED_SLASH_Q" = "" + then + w_try "$WINE" control "$W_PROGRAMS_WIN\\QuickTime\\QTSystem\\QuickTime.cpl" + else + # FIXME: script the control panel with autohotkey? + # We could probably also overwrite QuickTime.qtp but + # the format isn't known, so we'd have to override all other settings, too. + : + fi + fi +} + +#---------------------------------------------------------------- + +w_metadata remove_mono settings \ + title_uk="Видалити вбудоване wine-mono" \ + title="Remove builtin wine-mono" + +load_remove_mono() +{ + # FIXME: fold other .NET cleanups here (registry entries). + # Probably should only do that for wine >= 1.5.6 + mono_uuid="`$WINE uninstaller --list | grep Mono | cut -f1 -d\|`" + if test "$mono_uuid" + then + "$WINE" uninstaller --remove $mono_uuid + else + w_warn "Mono does not appear to be installed." + fi +} + +#---------------------------------------------------------------- + +w_metadata riched20 dlls \ + title="MS RichEdit Control version 2.0 (riched20.dll)" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="../win2ksp4/W2KSP4_EN.EXE" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/riched20.dll" + +load_riched20() +{ + # FIXME: this verb used to also install riched32. Does anyone need that? + helper_win2ksp4 i386/riched20.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/riched20.dl_ + w_override_dlls native,builtin riched20 + + # https://code.google.com/p/winetricks/issues/detail?id=292 + w_call msls31 +} + +#---------------------------------------------------------------- + +# Problem - riched20 and riched30 both install riched20.dll! +# We may need a better way to distinguish between installed files. + +w_metadata riched30 dlls \ + title="MS RichEdit Control version 3.0 (riched20.dll, msls31.dll)" \ + publisher="Microsoft" \ + year="2001" \ + media="download" \ + file1="InstMsiA.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/riched20.dll" \ + installed_file2="$W_SYSTEM32_DLLS_WIN/msls31.dll" + +load_riched30() +{ + # http://www.novell.com/documentation/nm1/readmeen_web/readmeen_web.html#Akx3j64 + # claims that Groupwise Messenger's View / Text Size command + # only works with riched30, and recommends getting it by installing + # msi 2, which just happens to come with riched30 version of riched20 + # (though not with a corresponding riched32, which might be a problem) + # http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=CEBBACD8-C094-4255-B702-DE3BB768148F + w_download http://download.microsoft.com/download/WindowsInstaller/Install/2.0/W9XMe/EN-US/InstMsiA.exe e739c40d747e7c27aacdb07b50925b1635ee7366 + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/riched30/InstMsiA.exe + w_try cp -f "$W_TMP"/riched20.dll "$W_SYSTEM32_DLLS" + w_try cp -f "$W_TMP"/msls31.dll "$W_SYSTEM32_DLLS" + w_override_dlls native,builtin riched20 +} + +#---------------------------------------------------------------- + +w_metadata richtx32 dlls \ + title="MS Rich TextBox Control 6.0" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="richtx32.cab" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/RichTx32.Ocx" + +load_richtx32() +{ + w_download http://activex.microsoft.com/controls/vb6/richtx32.cab da404b566df3ad74fe687c39404a36c3e7cadc07 + w_try_cabextract "$W_CACHE"/richtx32/richtx32.cab -d "$W_SYSTEM32_DLLS" -F RichTx32.ocx + w_try_regsvr RichTx32.ocx +} + +#---------------------------------------------------------------- + +w_metadata sdl dlls \ + title="Simple DirectMedia Layer" \ + publisher="Sam Lantinga" \ + year="2009" \ + media="download" \ + file1="SDL-1.2.14-win32.zip" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/SDL.dll" + +load_sdl() +{ + # http://www.libsdl.org/download-1.2.php + w_download http://www.libsdl.org/release/SDL-1.2.14-win32.zip d22c71d1c2bdf283548187c4b0bd7ef9d0c1fb23 + w_try_unzip "$W_SYSTEM32_DLLS" "$W_CACHE"/sdl/SDL-1.2.14-win32.zip SDL.dll +} + +#---------------------------------------------------------------- + +w_metadata secur32 dlls \ + title="MS Security Support Provider Interface" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="Windows2000-KB959426-x86-ENU.EXE" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/secur32.dll" + +load_secur32() +{ + # http://www.microsoft.com/downloads/details.aspx?familyid=c4e408d7-6716-4a12-ad3a-8029667f5c84 + w_download http://download.microsoft.com/download/6/9/5/69501788-B62F-44D8-933F-B6FAA576CA87/Windows2000-KB959426-x86-ENU.EXE bf930a4d2982165a0793465bb255d494ba5b4cf7 + w_try_cabextract "$W_CACHE"/secur32/Windows2000-KB959426-x86-ENU.EXE -d "$W_SYSTEM32_DLLS" -F secur32.dll + w_override_dlls native,builtin secur32 +} + +#---------------------------------------------------------------- + +w_metadata setupapi dlls \ + title="MS Setup API" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="../xpsp3/WindowsXP-KB936929-SP3-x86-ENU.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/setupapi.dll" + +load_setupapi() +{ + helper_xpsp3 i386/setupapi.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/setupapi.dl_ + + w_override_dlls native,builtin setupapi +} + +#---------------------------------------------------------------- + +w_metadata shockwave dlls \ + title="Shockwave" \ + publisher="Adobe" \ + year="2010" \ + media="download" \ + file1="sw_lic_full_installer.msi" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/Adobe/Shockwave 12/shockwave_Projector_Loader.dcr" + +load_shockwave() { + # Not silent enough, use msi instead + #w_download http://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/Shockwave_Installer_Full.exe 840e34e9b067cf247bfa9092665b8966158f38e3 + #w_try "$WINE" "$W_CACHE"/Shockwave_Installer_Full.exe $W_UNATTENDED_SLASH_S + # old sha1sum: 6a91a9da4b54c3fdc97130a15e1a173117e5f4ff + # 2009-07-31 sha1sum: 0bb506ef67a268e8d3fb6c7ce556320ee10b9da5 + # 2009-12-13 sha1sum: d35649883bf13cb1a86f5650e1050d15533ac0f4 + # 2010-01-23 sha1sum: 4a837d238c28c5f345d73f105711f20c6d059273 + # 2010-05-15 sha1sum: bdce02afc82233801e84137e78c2c5fe574db253 + # 2010-09-02 sha1sum: fed20eccc29fec2f64162b7265343514d43884bc + # 2010-11-03 sha1sum: 2ff28665543e80f3bd4ff1933ac05ec9314aaac6 + # 2011-02-03 sha1sum: e71ddc4fa42662208b2f52c1bd34a40e7775ad75 + # 2011-06-13 sha1sum: 7fd6cc61bb20d0bef654a44f4501a5a65b55b0c9 + # 2011-11-10 sha1sum: b55974b471c516f13fb032424247c07390baf380 + # 2012-03-07 sha1sum: 3b10f645ba1a6815fa97924a6bde4eda3177ff68 + # 2012-04-26 sha1sum: 48b1a44b2c12c486916d641f3b4e20abffb3d6e4 + # 2012-08-08 sha1sum: 3c4d531ccf0bb5788f1c197c63e9c0aa89885ee6 + # 2013-06-15 sha1sum: 9c02499deaf567bde7d827493705e5680833d02e + # 2014-01-22 sha1sum: c8f1b2c137a1373d591f7c1d48db9c6baa961caf + # 2014-02-26 sha1sum: ae2855b729bfaedc766f3addd8c2b74eac576909 + # 2014-04-15 sha1sum: c2ea56450fb4a5bac66cb7d70e3b522431521787 + # 2014-05-21 sha1sum: d95d1a14ee264235b29e093105bd2baa8b06eb12 + # 2014-11-22 sha1sum: 644d3228654ded798eabe40e7044b96b90e742f6 + # 2015-03-30 sha1sum: 9f2d4d929e7210ae9fb633881127b21586ffd8ce + # 2015-04-27 sha1sum: 244e6a5c5fa2dd26c136bc5b402f6cad588763d7 + # 2015-08-02 sha1sum: e2efa2eb7db0a6de08905cd61bb3efcf58fda994 + # 2015-11-09 sha1sum: d13420a6fdc4f8d9c45c5ee6767974f0f0054cdc + # 2015-12-27 sha1sum: 3ac6d85e54dffb2940c89fc10e63363a47ec96d0 + # 2016-02-18 sha1sum: 45147a791e3f71bd67ead1622d9120060dd196e5 + # 2016-03-11 sha1sum: 4f955f42984ae69d2f6078d3a3fe9fadc4a25e34 + + w_download http://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi 4f955f42984ae69d2f6078d3a3fe9fadc4a25e34 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" msiexec /i sw_lic_full_installer.msi $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata speechsdk dlls \ + title="MS Speech SDK 5.1" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="SpeechSDK51.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Microsoft Speech SDK 5.1/Bin/SAPI51SampleApp.exe" + +load_speechsdk() +{ + # http://www.microsoft.com/download/en/details.aspx?id=10121 + w_download http://download.microsoft.com/download/B/4/3/B4314928-7B71-4336-9DE7-6FA4CF00B7B3/SpeechSDK51.exe f69efaee8eb47f8c7863693e8b8265a3c12c4f51 + + w_try_unzip "$W_TMP" "$W_CACHE"/speechsdk/SpeechSDK51.exe + + # Otherwise it only installs the SDK and not the redistributable: + w_set_winver win2k + + cd "$W_TMP" + w_try "$WINE" msiexec /i "Microsoft Speech SDK 5.1.msi" $W_UNATTENDED_SLASH_Q + + w_unset_winver +} + +#---------------------------------------------------------------- + +w_metadata tabctl32 dlls \ + title="Microsoft Tabbed Dialog Control 6.0 (tabctl32.ocx)" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="TABCTL32.CAB" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/tabctl32.ocx" + +load_tabctl32() +{ + # http://msdn.microsoft.com/en-us/library/aa240864(VS.60).aspx + # Nov 2012: tabctl32 + w_download http://activex.microsoft.com/controls/vb6/TABCTL32.CAB beca51d05924a5466ab80eb0f8d0cdf8bc1ac697 + + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/tabctl32/${file1} + w_try cp -f "$W_TMP"/[Tt][Aa][Bb][Cc][Tt][Ll][3][2].[Oo][Cc][Xx] "$W_SYSTEM32_DLLS" + w_try_regsvr tabctl32.ocx +} + +#---------------------------------------------------------------- + +w_metadata updspapi dlls \ + title="Windows Update Service API" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="../xpsp3/WindowsXP-KB936929-SP3-x86-ENU.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/updspapi.dll" + +load_updspapi() +{ + helper_xpsp3 i386/update/updspapi.dll + w_try cp -f "$W_TMP"/i386/update/updspapi.dll "$W_SYSTEM32_DLLS" + + w_override_dlls native,builtin updspapi +} + +#---------------------------------------------------------------- + +w_metadata usp10 dlls \ + title="Uniscribe 1.325 " \ + publisher="Microsoft" \ + year="2001" \ + media="download" \ + file1="../msi2/InstMsiA.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/usp10.dll" + +load_usp10() +{ + # http://en.wikipedia.org/wiki/Uniscribe + # http://www.microsoft.com/downloads/details.aspx?familyid=cebbacd8-c094-4255-b702-de3bb768148f + w_download_to msi2 http://download.microsoft.com/download/WindowsInstaller/Install/2.0/W9XMe/EN-US/InstMsiA.exe e739c40d747e7c27aacdb07b50925b1635ee7366 + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/msi2/InstMsiA.exe + w_try cp -f "$W_TMP"/usp10.dll "$W_SYSTEM32_DLLS" + w_override_dlls native,builtin usp10 +} + +#---------------------------------------------------------------- + +w_metadata vb2run dlls \ + title="MS Visual Basic 2 runtime" \ + publisher="Microsoft" \ + year="1993" \ + media="download" \ + file1="VBRUN200.EXE" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/VBRUN200.DLL" + +load_vb2run() +{ + # Not referenced on MS web anymore, but the old Microsoft Software Library FTP still has it. + # See ftp://ftp.microsoft.com/Softlib/index.txt + # 2014/05/31: Microsoft FTP is down ftp://$ftp_microsoft_com/Softlib/MSLFILES/VBRUN200.EXE + # 2015/08/10: chatnfiles is down, conradshome.com is up (and has a LOT of old MS installers archived!) + w_download http://www.conradshome.com/win31/archive/softlib/vbrun200.exe ac0568b73ee375408778e9b505df995f79ab907e + w_try_unzip "$W_TMP" "$W_CACHE"/vb2run/VBRUN200.EXE + w_try cp -f "$W_TMP/VBRUN200.DLL" "$W_SYSTEM32_DLLS" +} + +#---------------------------------------------------------------- + +w_metadata vb3run dlls \ + title="MS Visual Basic 3 runtime" \ + publisher="Microsoft" \ + year="1998" \ + media="download" \ + file1="vb3run.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/Vbrun300.dll" + +load_vb3run() +{ + # See http://support.microsoft.com/kb/196285 + w_download http://download.microsoft.com/download/vb30/utility/1/w9xnt4/en-us/vb3run.exe 518fcfefde9bf680695cadd06512efadc5ac2aa7 + w_try_unzip "$W_TMP" "$W_CACHE"/vb3run/vb3run.exe + w_try cp -f "$W_TMP/Vbrun300.dll" "$W_SYSTEM32_DLLS" +} + +#---------------------------------------------------------------- + +w_metadata vb4run dlls \ + title="MS Visual Basic 4 runtime" \ + publisher="Microsoft" \ + year="1998" \ + media="download" \ + file1="vb4run.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/Vb40032.dll" + +load_vb4run() +{ + # See http://support.microsoft.com/kb/196286 + w_download http://download.microsoft.com/download/vb40ent/sample27/1/w9xnt4/en-us/vb4run.exe 83e968063272e97bfffd628a73bf0ff5f8e1023b + w_try_unzip "$W_TMP" "$W_CACHE"/vb4run/vb4run.exe + w_try cp -f "$W_TMP/Vb40032.dll" "$W_SYSTEM32_DLLS" + w_try cp -f "$W_TMP/Vb40016.dll" "$W_SYSTEM32_DLLS" +} + +#---------------------------------------------------------------- + +w_metadata vb5run dlls \ + title="MS Visual Basic 5 runtime" \ + publisher="Microsoft" \ + year="2001" \ + media="download" \ + file1="msvbvm50.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msvbvm50.dll" + +load_vb5run() +{ + w_download http://download.microsoft.com/download/vb50pro/utility/1/win98/en-us/msvbvm50.exe 28bfaf09b8ac32cf5ffa81252f3e2fadcb3a8f27 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" msvbvm50.exe $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata vb6run dlls \ + title="MS Visual Basic 6 runtime sp6" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="vbrun60sp6.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/MSVBVM60.DLL" + +load_vb6run() +{ + # http://support.microsoft.com/kb/290887 + if test ! -f "$W_CACHE"/vb6run/vbrun60sp6.exe + then + w_download http://download.microsoft.com/download/5/a/d/5ad868a0-8ecd-4bb0-a882-fe53eb7ef348/VB6.0-KB290887-X86.exe 73ef177008005675134d2f02c6f580515ab0d842 + + w_try "$WINE" "$W_CACHE"/vb6run/VB6.0-KB290887-X86.exe "/T:$W_TMP_WIN" /c $W_UNATTENDED_SLASH_Q + if test ! -f "$W_TMP"/vbrun60sp6.exe + then + w_die vbrun60sp6.exe not found + fi + w_try mv "$W_TMP"/vbrun60sp6.exe "$W_CACHE"/vb6run + fi + + # Delete some fake DLLs to ensure that the installer overwrites them. + rm -f "$W_SYSTEM32_DLLS"/comcat.dll + rm -f "$W_SYSTEM32_DLLS"/oleaut32.dll + rm -f "$W_SYSTEM32_DLLS"/olepro32.dll + rm -f "$W_SYSTEM32_DLLS"/stdole2.tlb + + cd "$W_CACHE/$W_PACKAGE" + # Exits with status 43 for some reason? + "$WINE" vbrun60sp6.exe $W_UNATTENDED_SLASH_Q + + status=$? + case $status in + 0|43) ;; + *) w_die $W_PACKAGE installation failed + esac +} + +#---------------------------------------------------------------- + +winetricks_vcrun6_helper() { + if test ! -f "$W_CACHE"/vcrun6/vcredist.exe + then + w_download_to vcrun6 http://download.microsoft.com/download/vc60pro/Update/2/W9XNT4/EN-US/VC6RedistSetup_deu.exe a8c4dd33e281c166488846a10edf97ff0ce37044 + + w_try "$WINE" "$W_CACHE"/vcrun6/vc6redistsetup_deu.exe "/T:$W_TMP_WIN" /c $W_UNATTENDED_SLASH_Q + if test ! -f "$W_TMP"/vcredist.exe + then + w_die vcredist.exe not found + fi + mv "$W_TMP"/vcredist.exe "$W_CACHE"/vcrun6 + fi +} + +w_metadata vcrun6 dlls \ + title="Visual C++ 6 sp4 libraries (mfc42, msvcp60, msvcirt)" \ + publisher="Microsoft" \ + year="2000" \ + media="download" \ + file1="vc6redistsetup_deu.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mfc42.dll" + +load_vcrun6() +{ + # Load the Visual C++ 6 runtime libraries, including the elusive mfc42u.dll + winetricks_vcrun6_helper + + # Delete some fake dlls to avoid vcredist installer warnings + rm -f "$W_SYSTEM32_DLLS"/comcat.dll + rm -f "$W_SYSTEM32_DLLS"/msvcrt.dll + rm -f "$W_SYSTEM32_DLLS"/oleaut32.dll + rm -f "$W_SYSTEM32_DLLS"/olepro32.dll + rm -f "$W_SYSTEM32_DLLS"/stdole2.tlb + "$WINE" "$W_CACHE"/vcrun6/vcredist.exe + + status=$? + case $status in + 0|43) ;; + *) w_die vcrun6 installation failed + esac + + # And then some apps need mfc42u.dll, dunno what right way + # is to get it, vcredist doesn't install it by default? + load_mfc42 +} + +w_metadata mfc42 dlls \ + title="Visual C++ 6 sp4 mfc42 library; part of vcrun6" \ + publisher="Microsoft" \ + year="2000" \ + media="download" \ + file1="../vcrun6/vc6redistsetup_deu.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mfc42u.dll" + +load_mfc42() +{ + winetricks_vcrun6_helper + + w_try_cabextract "$W_CACHE"/vcrun6/vcredist.exe -d "$W_SYSTEM32_DLLS" -F "mfc42*.dll" +} + +w_metadata msvcirt dlls \ + title="Visual C++ 6 sp4 msvcirt library; part of vcrun6" \ + publisher="Microsoft" \ + year="2000" \ + media="download" \ + file1="../vcrun6/vc6redistsetup_deu.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msvcirt.dll" + +load_msvcirt() +{ + winetricks_vcrun6_helper + + w_try_cabextract "$W_CACHE"/vcrun6/vcredist.exe -d "$W_SYSTEM32_DLLS" -F msvcirt.dll +} + +#---------------------------------------------------------------- + +# FIXME: we don't currently have an install check that can distinguish +# between sp4 and sp6, it would have to check size or version of a file, +# or maybe a registry key. + +w_metadata vcrun6sp6 dlls \ + title="Visual C++ 6 sp6 libraries (with fixes in atl and mfc)" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="Vs6sp6.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mfc42.dll" + +load_vcrun6sp6() +{ + w_download http://download.microsoft.com/download/1/9/f/19fe4660-5792-4683-99e0-8d48c22eed74/Vs6sp6.exe 2292437a8967349261c810ae8b456592eeb76620 + + # No EULA is presented when passing command-line extraction arguments, + # so we'll simplify extraction with cabextract. + w_try_cabextract "$W_CACHE"/vcrun6sp6/Vs6sp6.exe -d "$W_TMP" -F vcredist.exe + cd "$W_TMP" + + # Delete some fake dlls to avoid vcredist installer warnings + w_try rm -f "$W_SYSTEM32_DLLS"/comcat.dll + w_try rm -f "$W_SYSTEM32_DLLS"/msvcrt.dll + w_try rm -f "$W_SYSTEM32_DLLS"/oleaut32.dll + w_try rm -f "$W_SYSTEM32_DLLS"/olepro32.dll + w_try rm -f "$W_SYSTEM32_DLLS"/stdole2.tlb + # vcredist still exits with status 43. Anyone know why? + "$WINE" vcredist.exe + + status=$? + case $status in + 0|43) ;; + *) w_die $W_PACKAGE installation failed + esac + + # And then some apps need mfc42u.dll, dunno what right way + # is to get it, vcredist doesn't install it by default? + w_try_cabextract vcredist.exe -d "$W_SYSTEM32_DLLS" -F mfc42u.dll + # Should the mfc42 verb install this one instead? +} + +#---------------------------------------------------------------- + +w_metadata vcrun2003 dlls \ + title="Visual C++ 2003 libraries (mfc71,msvcp71,msvcr71)" \ + publisher="Microsoft" \ + year="2003" \ + media="download" \ + file1="BZEditW32_1.6.5.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/msvcp71.dll" + +load_vcrun2003() +{ + # Load the Visual C++ 2003 runtime libraries + # Sadly, I know of no Microsoft URL for these + echo "Installing BZFlag (which comes with the Visual C++ 2003 runtimes)" + # winetricks-test can't handle ${file1} in url since it does a raw parsing :/ + w_download https://sourceforge.net/projects/bzflag/files/bzedit%20win32/1.6.5/BZEditW32_1.6.5.exe bdd1b32c4202fd77e6513fd507c8236888b09121 + w_try "$WINE" "$W_CACHE"/vcrun2003/${file1} $W_UNATTENDED_SLASH_S + w_try cp "$W_PROGRAMS_X86_UNIX/BZEdit1.6.5"/m*71* "$W_SYSTEM32_DLLS" +} + +#---------------------------------------------------------------- + +# Temporary fix for bug 169 +# The | symbol in installed_file1 means "or". +# (Adding an installed_file2 would mean 'and'.) +# Perhaps we should test for one if winxp mode, and the other if win7 mode; +# if that becomes important to get right, we'll do something like +# "if installed_file1 is just the single char @, call test_installed_$verb" +# and then define that function here. +w_metadata vcrun2005 dlls \ + title="Visual C++ 2005 libraries (mfc80,msvcp80,msvcr80)" \ + publisher="Microsoft" \ + year="2011" \ + media="download" \ + file1="vcredist_x86.EXE" \ + installed_file1="c:/windows/winsxs/x86_Microsoft.VC80.MFC_1fc8b3b9a1e18e3b_8.0.50727.6195_x-ww_150c9e8b/mfc80.dll|c:/windows/winsxs/x86_microsoft.vc80.mfc_1fc8b3b9a1e18e3b_8.0.50727.6195_none_deadbeef/mfc80.dll" + +load_vcrun2005() +{ + # June 2011 security update, see + # http://www.microsoft.com/technet/security/bulletin/MS11-025.mspx or + # http://support.microsoft.com/kb/2538242 + w_download http://download.microsoft.com/download/8/B/4/8B42259F-5D70-43F4-AC2E-4B208FD8D66A/vcredist_x86.EXE b8fab0bb7f62a24ddfe77b19cd9a1451abd7b847 + + cd "$W_CACHE/$W_PACKAGE" + w_override_dlls native,builtin atl80 msvcm80 msvcp80 msvcr80 vcomp + w_try "$WINE" $file1 $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata vcrun2008 dlls \ + title="Visual C++ 2008 libraries (mfc90,msvcp90,msvcr90)" \ + publisher="Microsoft" \ + year="2011" \ + media="download" \ + file1="vcredist_x86.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Common Files/Microsoft Shared/VC/msdia90.dll" + +load_vcrun2008() +{ + # June 2011 security update, see + # http://www.microsoft.com/technet/security/bulletin/MS11-025.mspx or + # http://support.microsoft.com/kb/2538242 + w_download http://download.microsoft.com/download/5/D/8/5D8C65CB-C849-4025-8E95-C3966CAFD8AE/vcredist_x86.exe 470640aa4bb7db8e69196b5edb0010933569e98d + w_override_dlls native,builtin atl90 msvcm90 msvcp90 msvcr90 vcomp90 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" $file1 $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata vcrun2010 dlls \ + title="Visual C++ 2010 libraries (mfc100,msvcp100,msvcr100)" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="vcredist_x86.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mfc100.dll" + +load_vcrun2010() +{ + # See http://www.microsoft.com/downloads/details.aspx?FamilyID=a7b7a05e-6de6-4d3a-a423-37bf0912db84 + w_download http://download.microsoft.com/download/5/B/C/5BC5DBB3-652D-4DCE-B14A-475AB85EEF6E/vcredist_x86.exe 372d9c1670343d3fb252209ba210d4dc4d67d358 + + w_override_dlls native,builtin msvcp100 msvcr100 vcomp100 atl100 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" vcredist_x86.exe $W_UNATTENDED_SLASH_Q + + case "$W_ARCH" in + win64) + # Also install the 64 bit version + # http://www.microsoft.com/en-us/download/details.aspx?id=13523 + w_download http://download.microsoft.com/download/A/8/0/A80747C3-41BD-45DF-B505-E9710D2744E0/vcredist_x64.exe 027d0c2749ec5eb21b031f46aee14c905206f482 + if w_workaround_wine_bug 30713 "Manually extracting the 64-bit dlls" + then + w_try_cabextract --directory="$W_TMP" vcredist_x64.exe -F '*.cab' + w_try_cabextract --directory="$W_TMP" "$W_TMP"/vc_red.cab + cp "$W_TMP"/F_CENTRAL_mfc100_x64 "$W_SYSTEM64_DLLS"/mfc100.dll + cp "$W_TMP"/F_CENTRAL_mfc100u_x64 "$W_SYSTEM64_DLLS"/mfc100u.dll + cp "$W_TMP"/F_CENTRAL_msvcr100_x64 "$W_SYSTEM64_DLLS"/msvcr100.dll + cp "$W_TMP"/F_CENTRAL_msvcp100_x64 "$W_SYSTEM64_DLLS"/msvcp100.dll + cp "$W_TMP"/F_CENTRAL_vcomp100_x64 "$W_SYSTEM64_DLLS"/vcomp100.dll + cp "$W_TMP"/F_CENTRAL_atl100_x64 "$W_SYSTEM64_DLLS"/atl100.dll + else + w_try "$WINE" vcredist_x64.exe $W_UNATTENDED_SLASH_Q + fi + ;; + esac +} + +#---------------------------------------------------------------- + +w_metadata vcrun2012 dlls \ + title="Visual C++ 2012 libraries (atl110,mfc110,mfc110u,msvcp110,msvcr110,vcomp110)" \ + publisher="Microsoft" \ + year="2012" \ + media="download" \ + file1="vcredist_x86.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mfc110.dll" + +load_vcrun2012() +{ + # http://www.microsoft.com/download/details.aspx?id=30679 + w_download http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe 96b377a27ac5445328cbaae210fc4f0aaa750d3f + + w_override_dlls native,builtin atl110 msvcp110 msvcr110 vcomp110 + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" vcredist_x86.exe $W_UNATTENDED_SLASH_Q + + case "$W_ARCH" in + win64) + # Also install the 64 bit version + # 2015/10/19: 1a5d93dddbc431ab27b1da711cd3370891542797 + w_download http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe 1a5d93dddbc431ab27b1da711cd3370891542797 + if w_workaround_wine_bug 30713 "Manually extracting the 64-bit dlls" + then + rm -f "$W_TMP"/* # Avoid permission error + w_try_cabextract --directory="$W_TMP" vcredist_x64.exe + w_try_cabextract --directory="$W_TMP" "$W_TMP/a2" + w_try_cabextract --directory="$W_TMP" "$W_TMP/a3" + cp "$W_TMP"/F_CENTRAL_atl110_x64 "$W_SYSTEM64_DLLS"/atl110.dll + cp "$W_TMP"/F_CENTRAL_mfc110_x64 "$W_SYSTEM64_DLLS"/mfc110.dll + cp "$W_TMP"/F_CENTRAL_mfc110u_x64 "$W_SYSTEM64_DLLS"/mfc110u.dll + cp "$W_TMP"/F_CENTRAL_msvcp110_x64 "$W_SYSTEM64_DLLS"/msvcp110.dll + cp "$W_TMP"/F_CENTRAL_msvcr110_x64 "$W_SYSTEM64_DLLS"/msvcr110.dll + cp "$W_TMP"/F_CENTRAL_vcomp110_x64 "$W_SYSTEM64_DLLS"/vcomp110.dll + else + w_try "$WINE" vcredist_x64.exe $W_UNATTENDED_SLASH_Q + fi + ;; + esac +} + +#---------------------------------------------------------------- + +w_metadata vcrun2013 dlls \ + title="Visual C++ 2013 libraries (mfc120,mfc120u,msvcp120,msvcr120,vcomp120)" \ + publisher="Microsoft" \ + year="2013" \ + media="download" \ + file1="vcredist_x86.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mfc120.dll" + +load_vcrun2013() +{ + # http://www.microsoft.com/en-us/download/details.aspx?id=40784 + # 2014/07/26: 18f81495bc5e6b293c69c28b0ac088a96debbab2 + # 2015/01/14: df7f0a73bfa077e483e51bfb97f5e2eceedfb6a3 + w_download http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x86.exe df7f0a73bfa077e483e51bfb97f5e2eceedfb6a3 + + w_override_dlls native,builtin atl120 msvcp120 msvcr120 vcomp120 + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" vcredist_x86.exe $W_UNATTENDED_SLASH_Q + + case "$W_ARCH" in + win64) + # Also install the 64 bit version + # 2015/10/19: 8bf41ba9eef02d30635a10433817dbb6886da5a2 + w_download http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD5CD6E3/vcredist_x64.exe 8bf41ba9eef02d30635a10433817dbb6886da5a2 + if w_workaround_wine_bug 30713 "Manually extracting the 64-bit dlls" + then + rm -f "$W_TMP"/* # Avoid permission error + w_try_cabextract --directory="$W_TMP" vcredist_x64.exe + w_try_cabextract --directory="$W_TMP" "$W_TMP/a2" + w_try_cabextract --directory="$W_TMP" "$W_TMP/a3" + cp "$W_TMP"/F_CENTRAL_mfc120_x64 "$W_SYSTEM64_DLLS"/mfc120.dll + cp "$W_TMP"/F_CENTRAL_mfc120u_x64 "$W_SYSTEM64_DLLS"/mfc120u.dll + cp "$W_TMP"/F_CENTRAL_msvcp120_x64 "$W_SYSTEM64_DLLS"/msvcp120.dll + cp "$W_TMP"/F_CENTRAL_msvcr120_x64 "$W_SYSTEM64_DLLS"/msvcr120.dll + cp "$W_TMP"/F_CENTRAL_vcomp120_x64 "$W_SYSTEM64_DLLS"/vcomp120.dll + else + w_try "$WINE" vcredist_x64.exe $W_UNATTENDED_SLASH_Q + fi + ;; + esac +} + +#---------------------------------------------------------------- + +w_metadata vcrun2015 dlls \ + title="Visual C++ 2015 libraries (concrt140.dll,mfc140.dll,mfc140u.dll,mfcm140.dll,mfcm140u.dll,msvcp140.dll,vcamp140.dll,vccorlib140.dll,vcomp140.dll,vcruntime140.dll)" \ + publisher="Microsoft" \ + year="2015" \ + media="download" \ + file1="vc_redist.x86.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/mfc140.dll" + +load_vcrun2015() +{ + # https://www.microsoft.com/en-us/download/details.aspx?id=48145 + # 2015/10/12: bfb74e498c44d3a103ca3aa2831763fb417134d1 + w_download https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe bfb74e498c44d3a103ca3aa2831763fb417134d1 + + if w_workaround_wine_bug 37781 + then + w_warn "This may fail in non-XP mode, see https://bugs.winehq.org/show_bug.cgi?id=37781" + fi + + w_override_dlls native,builtin atl140 msvcp140 msvcr140 vcomp140 + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" vc_redist.x86.exe $W_UNATTENDED_SLASH_Q + + case "$W_ARCH" in + win64) + # Also install the 64 bit version + # 2015/10/12: 3155cb0f146b927fcc30647c1a904cd162548c8c + w_download https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe 3155cb0f146b927fcc30647c1a904cd162548c8c + if w_workaround_wine_bug 30713 "Manually extracting the 64-bit dlls" + then + rm -f "$W_TMP"/* # Avoid permission error + w_try_cabextract --directory="$W_TMP" vc_redist.x64.exe + w_try_cabextract --directory="$W_TMP" "$W_TMP/a10" + w_try_cabextract --directory="$W_TMP" "$W_TMP/a11" + cp "$W_TMP"/concrt140.dll "$W_SYSTEM64_DLLS"/concrt140.dll + cp "$W_TMP"/mfc140.dll "$W_SYSTEM64_DLLS"/mfc140.dll + cp "$W_TMP"/mfc140u.dll "$W_SYSTEM64_DLLS"/mfc140u.dll + cp "$W_TMP"/mfcm140.dll "$W_SYSTEM64_DLLS"/mfcm140.dll + cp "$W_TMP"/mfcm140u.dll "$W_SYSTEM64_DLLS"/mfcm140u.dll + cp "$W_TMP"/msvcp140.dll "$W_SYSTEM64_DLLS"/msvcp140.dll + cp "$W_TMP"/vcamp140.dll "$W_SYSTEM64_DLLS"/vcamp140.dll + cp "$W_TMP"/vccorlib140.dll "$W_SYSTEM64_DLLS"/vccorlib140.dll + cp "$W_TMP"/vcomp140.dll "$W_SYSTEM64_DLLS"/vcomp140.dll + cp "$W_TMP"/vcruntime140.dll "$W_SYSTEM64_DLLS"/vcruntime140.dll + + w_override_dlls native,builtin api-ms-win-crt-conio-l1-1-0 api-ms-win-crt-heap-l1-1-0 api-ms-win-crt-locale-l1-1-0 api-ms-win-crt-math-l1-1-0.dll api-ms-win-crt-runtime-l1-1-0 api-ms-win-crt-stdio-l1-1-0 ucrtbase vcruntime140 + cp "$W_TMP"/api_ms_win_crt_conio_l1_1_0.dll "$W_SYSTEM64_DLLS"/api-ms-win-crt-conio-l1-1-0.dll + cp "$W_TMP"/api_ms_win_crt_heap_l1_1_0.dll "$W_SYSTEM64_DLLS"/api-ms-win-crt-heap-l1-1-0.dll + cp "$W_TMP"/api_ms_win_crt_locale_l1_1_0.dll "$W_SYSTEM64_DLLS"/api-ms-win-crt-locale-l1-1-0.dll + cp "$W_TMP"/api_ms_win_crt_math_l1_1_0.dll "$W_SYSTEM64_DLLS"/api-ms-win-crt-math-l1-1-0.dll + cp "$W_TMP"/api_ms_win_crt_runtime_l1_1_0.dll "$W_SYSTEM64_DLLS"/api-ms-win-crt-runtime-l1-1-0.dll + cp "$W_TMP"/api_ms_win_crt_stdio_l1_1_0.dll "$W_SYSTEM64_DLLS"/api-ms-win-crt-stdio-l1-1-0.dll + cp "$W_TMP"/ucrtbase.dll "$W_SYSTEM64_DLLS"/ucrtbase.dll + else + w_try "$WINE" vc_redist.x64.exe $W_UNATTENDED_SLASH_Q + fi + ;; + esac +} + +#---------------------------------------------------------------- + +w_metadata vjrun20 dlls \ + title="MS Visual J# 2.0 SE libraries (requires dotnet20)" \ + publisher="Microsoft" \ + year="2007" \ + media="download" \ + conflicts="dotnet11 dotnet20sp1 dotnet20sp2" \ + file1="vjredist.exe" \ + installed_file1="c:/windows/Microsoft.NET/Framework/VJSharp/VJSharpSxS10.dll" + +load_vjrun20() +{ + if [ $W_ARCH = win64 ] + then + w_warn "vjrun20 depends on dotnet20, which doesn't work on 64-bit wine yet. Skipping." + return + fi + + w_call dotnet20 + + # See http://www.microsoft.com/downloads/details.aspx?FamilyId=E9D87F37-2ADC-4C32-95B3-B5E3A21BAB2C + w_download http://download.microsoft.com/download/9/2/3/92338cd0-759f-4815-8981-24b437be74ef/vjredist.exe 80a098e36b90d159da915aebfbfbacf35f302bd8 + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" vjredist.exe ${W_OPT_UNATTENDED:+ /q /C:"install $W_UNATTENDED_SLASH_QNT"} +} + +#---------------------------------------------------------------- + +# FIXME: two exe's, one for win64, one for win32.. + +w_metadata windowscodecs dlls \ + title="MS Windows Imaging Component" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + file1="wic_x86_enu.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/WindowsCodecs.dll" + +load_windowscodecs() +{ + # separate 32/64 bit installers: + if [ "$W_ARCH" = "win32" ] ; then + # https://www.microsoft.com/en-us/download/details.aspx?id=32 + w_download http://download.microsoft.com/download/f/f/1/ff178bb1-da91-48ed-89e5-478a99387d4f/wic_x86_enu.exe 53c18652ac2f8a51303deb48a1b7abbdb1db427f + EXE="wic_x86_enu.exe" + else + # https://www.microsoft.com/en-us/download/details.aspx?id=1385 + w_download https://download.microsoft.com/download/6/4/5/645FED5F-A6E7-44D9-9D10-FE83348796B0/wic_x64_enu.exe 4bdbf76a7bc96453306c893b4a7b2b8ae6127f67 + EXE="wic_x64_enu.exe" + fi + + # Avoid a file existence check. + w_try rm -f "$W_SYSTEM32_DLLS"/windowscodecs.dll "$W_SYSTEM32_DLLS"/windowscodecsext.dll "$W_SYSTEM32_DLLS"/photometadatahandler.dll + + if [ "$W_ARCH" = "win64" ] + then + w_try rm -f "$W_SYSTEM64_DLLS"/windowscodecs.dll "$W_SYSTEM64_DLLS"/windowscodecsext.dll "$W_SYSTEM64_DLLS"/photometadatahandler.dll + fi + + # AF says in appdb entry for .net 3.0 that windowscodecs has to be native only + w_override_dlls native windowscodecs windowscodecsext + + # Always run the WIC installer in passive mode. + # See http://bugs.winehq.org/show_bug.cgi?id=16876 and + # http://bugs.winehq.org/show_bug.cgi?id=23232 + cd "$W_CACHE/$W_PACKAGE" + + if test -x /usr/bin/taskset && w_workaround_wine_bug 32859 "Working around possibly broken libX11" + then + TASKSET="taskset -c 0" + else + TASKSET="" + fi + w_try $TASKSET "$WINE" "$EXE" /passive +} + +#---------------------------------------------------------------- + +w_metadata winhttp dlls \ + title="MS Windows HTTP Services" \ + publisher="Microsoft" \ + year="2005" \ + media="download" \ + file1="../win2ksp4/W2KSP4_EN.EXE" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/winhttp.dll" + +load_winhttp() +{ + helper_win2ksp4 i386/new/winhttp.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/new/winhttp.dl_ + w_override_dlls native,builtin winhttp +} + +#---------------------------------------------------------------- + +w_metadata wininet dlls \ + title="MS Windows Internet API" \ + publisher="Microsoft" \ + year="2008" \ + media="download" \ + file1="../win2ksp4/W2KSP4_EN.EXE" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/wininet.dll" + +load_wininet() +{ + helper_win2ksp4 i386/wininet.dl_ + w_try_cabextract --directory="$W_SYSTEM32_DLLS" "$W_TMP"/i386/wininet.dl_ + w_override_dlls native,builtin wininet +} + +#---------------------------------------------------------------- + +w_metadata wmi dlls \ + title="Windows Management Instrumentation (aka WBEM) Core 1.5" \ + publisher="Microsoft" \ + year="2000" \ + media="download" \ + file1="wmi9x.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/wbem/wbemcore.dll" + +load_wmi() +{ + if test $W_ARCH = win64 + then + w_die "Installer doesn't support 64-bit architecture." + fi + + # WMI for NT4.0 need validation: http://www.microsoft.com/downloads/en/details.aspx?FamilyID=c174cfb1-ef67-471d-9277-4c2b1014a31e + # See also http://www.microsoft.com/downloads/en/details.aspx?FamilyId=98A4C5BA-337B-4E92-8C18-A63847760EA5 + w_download http://download.microsoft.com/download/platformsdk/wmi9x/1.5/W9X/EN-US/wmi9x.exe 62752e9c1b879688c26f205eebf07d3783906c3e + + w_set_winver win98 + w_override_dlls native,builtin wbemprox wmiutils + # Note: there is a crash in the background towards the end, doesn't seem to hurt; see http://bugs.winehq.org/show_bug.cgi?id=7920 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" wmi9x.exe $W_UNATTENDED_SLASH_S + w_unset_winver +} + +#---------------------------------------------------------------- + +w_metadata wsh56js dlls \ + title="MS Windows scripting 5.6, jscript only, no cscript" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + file1="Windows2000-KB917344-56-x86-enu.exe" \ + installed_file1="c:/windows/inf/jscren.inf" + +load_wsh56js() +{ + # This installs jscript 5.6 (but not vbscript) + # See also http://www.microsoft.com/downloads/details.aspx?FamilyID=16dd21a1-c4ee-4eca-8b80-7bd1dfefb4f8&DisplayLang=en + w_download http://download.microsoft.com/download/b/c/3/bc3a0c36-fada-497d-a3de-8b0139766f3b/Windows2000-KB917344-56-x86-enu.exe add5f74c5bd4da6cfae47f8306de213ec6ed52c8 + + cd "$W_CACHE/$W_PACKAGE" + w_override_dlls native,builtin jscript + # setupapi looks at the versions in new and original jscript.dll, and wine's original is newer than wsh56js's, so have to nuke the original + w_try rm "$W_SYSTEM32_DLLS/jscript.dll" + w_try "$WINE" Windows2000-KB917344-56-x86-enu.exe $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata wsh56vb dlls \ + title="MS Windows scripting 5.6, vbscript only, no cscript" \ + publisher="Microsoft" \ + year="2007" \ + media="download" \ + file1="vbs56men.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/vbscript.dll" + +load_wsh56vb() +{ + # This installs vbscript 5.6 (but not jscript) + # See also http://www.microsoft.com/downloads/details.aspx?familyid=4F728263-83A3-464B-BCC0-54E63714BC75 + w_download http://download.microsoft.com/download/IE60/Patch/Q318089/W9XNT4Me/EN-US/vbs56men.exe 48f14a93db33caff271da0c93f334971f9d7cb22 + + cd "$W_CACHE/$W_PACKAGE" + w_override_dlls native,builtin vbscript + # setupapi looks at the versions in new and original vbscript.dll, and wine's original is newer than wsh56vb's, so have to nuke the original + w_try rm "$W_SYSTEM32_DLLS/vbscript.dll" + w_try "$WINE" vbs56men.exe $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata wsh57 dlls \ + title="MS Windows Scripting Host 5.7" \ + publisher="Microsoft" \ + year="2007" \ + media="download" \ + file1="scripten.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/scrrun.dll" + +load_wsh57() +{ + # See also http://www.microsoft.com/downloads/details.aspx?FamilyID=47809025-D896-482E-A0D6-524E7E844D81&displaylang=en + w_download http://download.microsoft.com/download/4/4/d/44de8a9e-630d-4c10-9f17-b9b34d3f6417/scripten.exe b15c6a834b7029e2dfed22127cf905b06857e6f5 + + w_try_cabextract -d "$W_SYSTEM32_DLLS" "$W_CACHE"/wsh57/scripten.exe + + # Wine doesn't provide the other dll's (yet?) + w_override_dlls native,builtin jscript scrrun vbscript cscript.exe wscript.exe + w_try_regsvr dispex.dll jscript.dll scrobj.dll scrrun.dll vbscript.dll wshcon.dll wshext.dll +} + +#---------------------------------------------------------------- + +w_metadata xact dlls \ + title="MS XACT Engine" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/xactengine2_0.dll" + +load_xact() +{ + helper_directx_dl + + # Extract xactengine?_?.dll, X3DAudio?_?.dll, xaudio?_?.dll, xapofx?_?.dll + w_try_cabextract -d "$W_TMP" -L -F '*_xact_*x86*' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_TMP" -L -F '*_x3daudio_*x86*' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_TMP" -L -F '*_xaudio_*x86*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'xactengine*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'xaudio*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'x3daudio*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'xapofx*.dll' "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F '*_xact_*x64*' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_TMP" -L -F '*_x3daudio_*x64*' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_TMP" -L -F '*_xaudio_*x64*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'xactengine*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'xaudio*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'x3daudio*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'xapofx*.dll' "$x" + done + fi + + # Register xactengine?_?.dll + for x in "$W_SYSTEM32_DLLS"/xactengine* + do + w_try_regsvr `basename "$x"` + done + + # and xaudio?_?.dll, but not xaudio2_8 (unsupported) + for x in 0 1 2 3 4 5 6 7 + do + w_try_regsvr `basename "$W_SYSTEM32_DLLS/xaudio2_${x}"` + done +} + +#---------------------------------------------------------------- + +w_metadata xact_jun2010 dlls \ + title="MS XACT Engine" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_Jun2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/xactengine2_0.dll" + +load_xact_jun2010() +{ + helper_directx_Jun2010 + + # Extract xactengine?_?.dll, X3DAudio?_?.dll, xaudio?_?.dll, xapofx?_?.dll + w_try_cabextract -d "$W_TMP" -L -F '*_xact_*x86*' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_TMP" -L -F '*_x3daudio_*x86*' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_TMP" -L -F '*_xaudio_*x86*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'xactengine*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'xaudio*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'x3daudio*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'xapofx*.dll' "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F '*_xact_*x64*' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_TMP" -L -F '*_x3daudio_*x64*' "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_TMP" -L -F '*_xaudio_*x64*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'xactengine*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'xaudio*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'x3daudio*.dll' "$x" + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'xapofx*.dll' "$x" + done + fi + + # Register xactengine?_?.dll + for x in "$W_SYSTEM32_DLLS"/xactengine* + do + w_try_regsvr `basename "$x"` + done + + # and xaudio?_?.dll, but not xaudio2_8 (unsupported) + for x in 0 1 2 3 4 5 6 7 + do + w_try_regsvr `basename "$W_SYSTEM32_DLLS/xaudio2_${x}"` + done +} + +#---------------------------------------------------------------- + +w_metadata xinput dlls \ + title="Microsoft XInput (Xbox controller support)" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/xinput1_1.dll" + +load_xinput() +{ + helper_directx_dl + + w_try_cabextract -d "$W_TMP" -L -F '*_xinput_*x86*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*.cab + do + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F 'xinput*.dll' "$x" + done + if test "$W_ARCH" = "win64" + then + w_try_cabextract -d "$W_TMP" -L -F '*_xinput_*x64*' "$W_CACHE"/directx9/$DIRECTX_NAME + for x in "$W_TMP"/*x64.cab + do + w_try_cabextract -d "$W_SYSTEM64_DLLS" -L -F 'xinput*.dll' "$x" + done + fi + w_override_dlls native xinput1_1 + w_override_dlls native xinput1_2 + w_override_dlls native xinput1_3 + w_override_dlls native xinput9_1_0 +} + +#---------------------------------------------------------------- + +# FIXME: extend metadata to allow file1_en, file1_fr, etc. +w_metadata xmllite dlls \ + title="MS xmllite dll" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/xmllite.dll" + +load_xmllite() +{ + case $LANG in + en*) w_download http://download.microsoft.com/download/f/9/6/f964059a-3747-4ed8-9326-ba1e639031b1/WindowsXP-KB915865-v11-x86-ENU.exe 226d246a1c64e693791de5c727509002d089b0d5 ;; + fr*) w_download http://download.microsoft.com/download/4/1/d/41de58a0-6715-4d3e-99e7-ff0c11283d1b/WindowsXP-KB915865-v11-x86-FRA.exe abb70b6a96be7dce453b00877739e90c6f3efba0 ;; + de*) w_download http://download.microsoft.com/download/9/b/6/9b67efdb-cce3-4247-a2e0-386673859a1b/WindowsXP-KB915865-v11-x86-DEU.exe a03a325815acf9d624db58ab94a140a5586e64c8 ;; + ja*) w_download http://download.microsoft.com/download/f/5/c/f5cf73b7-4dc4-4042-815d-29d2fd24ae6f/WindowsXP-KB915865-v11-x86-JPN.exe eaf443d04d9b13cb86f927f8a7fe372268386395 ;; + *) w_die "sorry, xmllite install not yet implemented for language $LANG" ;; + esac + + # Doesn't install in newer versions: + w_set_winver winxp + + cd "$W_CACHE/$W_PACKAGE" + w_override_dlls native xmllite + case $LANG in + en*) w_try "$WINE" WindowsXP-KB915865-v11-x86-ENU.exe $W_UNATTENDED_SLASH_Q ;; + fr*) w_try "$WINE" WindowsXP-KB915865-v11-x86-FRA.exe $W_UNATTENDED_SLASH_Q ;; + de*) w_try "$WINE" WindowsXP-KB915865-v11-x86-DEU.exe $W_UNATTENDED_SLASH_Q ;; + ja*) w_try "$WINE" WindowsXP-KB915865-v11-x86-JPN.exe $W_UNATTENDED_SLASH_Q ;; + esac + + w_unset_winver +} + +#---------------------------------------------------------------- + +w_metadata xna31 dlls \ + title="MS XNA Framework Redistributable 3.1" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="xnafx31_redist.msi" \ + installed_file1="C:/windows/assembly/GAC_32/Microsoft.Xna.Framework.Game/3.1.0.0__6d5c3888ef60e27d/Microsoft.Xna.Framework.Game.dll" + +load_xna31() +{ + w_call dotnet20sp2 + w_download http://download.microsoft.com/download/5/9/1/5912526C-B950-4662-99B6-119A83E60E5C/xnafx31_redist.msi bdd33b677c9576a63ff2a6f65e12c0563cc116e6 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" msiexec $W_UNATTENDED_SLASH_QUIET /i $file1 +} + +#---------------------------------------------------------------- + +w_metadata xna40 dlls \ + title="MS XNA Framework Redistributable 4.0" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="xnafx40_redist.msi" \ + installed_file1="$W_PROGRAMS_X86_WIN/Common Files/Microsoft Shared/XNA/Framework/v4.0/XnaNative.dll" + +load_xna40() +{ + if w_workaround_bug 30718 + then + w_warn "$W_PACKAGE may not install properly in wine yet" + fi + + w_call dotnet45 + + # http://www.microsoft.com/en-us/download/details.aspx?id=20914 + w_download http://download.microsoft.com/download/A/C/2/AC2C903B-E6E8-42C2-9FD7-BEBAC362A930/xnafx40_redist.msi 49efdc29f65fc8263c196338552c7009fc96c5de + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" msiexec $W_UNATTENDED_SLASH_QUIET /i $file1 +} + +#---------------------------------------------------------------- + +w_metadata xvid dlls \ + title="Xvid Video Codec" \ + publisher="xvid.org" \ + year="2009" \ + media="download" \ + file1="Xvid-1.3.2-20110601.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Xvid/xvid.ico" + +load_xvid() +{ + w_call vcrun6 + w_download http://www.koepi.info/Xvid-1.3.2-20110601.exe 0a11498a96f75ad019c4c7d06161504140337dc0 + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" $file1 ${W_OPT_UNATTENDED:+ --mode unattended --decode_divx 1 --decode_3ivx 1 --decode_other 1} +} + +#---------------------------------------------------------------- +# Fonts +#---------------------------------------------------------------- + +w_metadata baekmuk fonts \ + title="Baekmuk Korean fonts" \ + publisher="Wooderart Inc. / kldp.net" \ + year="1999" \ + media="download" \ + file1="fonts-baekmuk_2.2.orig.tar.gz" \ + installed_file1="$W_FONTSDIR_WIN/batang.ttf" + +load_baekmuk() +{ + # See http://kldp.net/projects/baekmuk for project page + # Need to download from Debian as the project page has unique captcha tokens per visitor + w_download http://http.debian.net/debian/pool/main/f/fonts-baekmuk/fonts-baekmuk_2.2.orig.tar.gz afdee34f700007de6ea87b43c92a88b7385ba65b + + cd "$W_TMP" + tar zxvf "$W_CACHE/$W_PACKAGE/$file1" baekmuk-ttf-2.2/ttf + w_try mv baekmuk-ttf-2.2/ttf/*.ttf "$W_FONTSDIR_UNIX" + w_register_font batang.ttf "Baekmuk Batang" + w_register_font gulim.ttf "Baekmuk Gulim" + w_register_font dotum.ttf "Baekmuk Dotum" + w_register_font hline.ttf "Baekmuk Headline" +} + +#---------------------------------------------------------------- + +w_metadata cjkfonts fonts \ + title="All Chinese, Japanese, Korean fonts and aliases" \ + publisher="various" \ + date="1999-2010" \ + media="download" + +load_cjkfonts() +{ + w_call fakechinese + w_call fakejapanese + w_call fakekorean + w_call unifont +} + +#---------------------------------------------------------------- + +w_metadata cambria fonts \ + title="MS Cambria font" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="PowerPointViewer.exe" \ + installed_file1="$W_FONTSDIR_WIN/cambria.ttc" + +load_cambria() +{ + # http://www.microsoft.com/en-us/download/details.aspx?id=13 + w_download_to consolas http://download.microsoft.com/download/E/6/7/E675FFFC-2A6D-4AB0-B3EB-27C9F8C8F696/PowerPointViewer.exe ab48a8ebac88219c84f293c6c1e81f1a0f420da6 + w_try_cabextract -d "$W_TMP" -L -F ppviewer.cab "$W_CACHE"/consolas/PowerPointViewer.exe + w_try_cabextract -d "$W_FONTSDIR_UNIX" -L -F 'CAMBRIA*.TT*' "$W_TMP"/ppviewer.cab + w_register_font cambria.ttc "Cambria" + w_register_font cambriab.ttf "Cambria Bold" + w_register_font cambriai.ttf "Cambria Italic" + w_register_font cambriaz.ttf "Cambria Bold Italic" +} + +#---------------------------------------------------------------- + +w_metadata constantia fonts \ + title="MS Constantia font" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="PowerPointViewer.exe" \ + installed_file1="$W_FONTSDIR_WIN/constan.ttf" + +load_constantia() +{ + # http://www.microsoft.com/en-us/download/details.aspx?id=13 + w_download_to consolas http://download.microsoft.com/download/E/6/7/E675FFFC-2A6D-4AB0-B3EB-27C9F8C8F696/PowerPointViewer.exe ab48a8ebac88219c84f293c6c1e81f1a0f420da6 + w_try_cabextract -d "$W_TMP" -L -F ppviewer.cab "$W_CACHE"/consolas/PowerPointViewer.exe + w_try_cabextract -d "$W_FONTSDIR_UNIX" -L -F 'CONSTAN*.TTF' "$W_TMP"/ppviewer.cab + w_register_font constan.ttf "Constantia" + w_register_font constanb.ttf "Constantia Bold" + w_register_font constani.ttf "Constantia Italic" + w_register_font constanz.ttf "Constantia Bold Italic" +} + +#---------------------------------------------------------------- + +w_metadata consolas fonts \ + title="MS Consolas Console font" \ + publisher="Microsoft" \ + year="2011" \ + media="download" \ + file1="PowerPointViewer.exe" \ + installed_file1="$W_FONTSDIR_WIN/consola.ttf" + +load_consolas() +{ + # http://www.microsoft.com/en-us/download/details.aspx?id=13 + w_download http://download.microsoft.com/download/E/6/7/E675FFFC-2A6D-4AB0-B3EB-27C9F8C8F696/PowerPointViewer.exe ab48a8ebac88219c84f293c6c1e81f1a0f420da6 + w_try_cabextract -d "$W_TMP" -L -F ppviewer.cab "$W_CACHE"/consolas/PowerPointViewer.exe + w_try_cabextract -d "$W_FONTSDIR_UNIX" -L -F 'CONSOL*.TTF' "$W_TMP"/ppviewer.cab + w_register_font consola.ttf "Consoleas" + w_register_font consolab.ttf "Consoleas Bold" + w_register_font consolai.ttf "Consoleas Italic" + w_register_font consolaz.ttf "Consoleas Bold Italic" +} + +#---------------------------------------------------------------- + +w_metadata corefonts fonts \ + title="MS Arial, Courier, Times fonts" \ + publisher="Microsoft" \ + year="2008" \ + media="download" \ + file1="arial32.exe" \ + installed_file1="$W_FONTSDIR_WIN/Arial.TTF" + +load_corefonts() +{ + # FIXME: why is this commented out? Should be removed or enabled. + #w_download ftp://ftp.fi.debian.org/gentoo/distfiles/andale32.exe c4db8cbe42c566d12468f5fdad38c43721844c69 + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/arial32.exe 6d75f8436f39ab2da5c31ce651b7443b4ad2916e + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/arialb32.exe d45cdab84b7f4c1efd6d1b369f50ed0390e3d344 + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/comic32.exe 2371d0327683dcc5ec1684fe7c275a8de1ef9a51 + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/courie32.exe 06a745023c034f88b4135f5e294fece1a3c1b057 + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/georgi32.exe 90e4070cb356f1d811acb943080bf97e419a8f1e + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/impact32.exe 86b34d650cfbbe5d3512d49d2545f7509a55aad2 + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/times32.exe 20b79e65cdef4e2d7195f84da202499e3aa83060 + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/trebuc32.exe 50aab0988423efcc9cf21fac7d64d534d6d0a34a + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/verdan32.exe f5b93cedf500edc67502f116578123618c64a42a + w_download ftp://ftp.fi.debian.org/gentoo/distfiles/webdin32.exe 2fb4a42c53e50bc70707a7b3c57baf62ba58398f + + # Natively installed versions of these fonts will cause the installers + # to exit silently. Because there are apps out there that depend on the + # files being present in the Windows font directory we use cabextract + # to obtain the files and register the fonts by hand. + + # Andale needs a FontSubstitutes entry + # w_try_cabextract --directory="$W_TMP" "$W_CACHE"/corefonts/andale32.exe + + # Display EULA + test x"$W_UNATTENDED_SLASH_Q" = x"" || w_try "$WINE" "$W_CACHE"/corefonts/arial32.exe $W_UNATTENDED_SLASH_Q + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/arial32.exe + w_try cp -f "$W_TMP"/Arial*.TTF "$W_FONTSDIR_UNIX" + w_register_font Arial.TTF "Arial" + w_register_font Arialbd.TTF "Arial Bold" + w_register_font Arialbi.TTF "Arial Bold Italic" + w_register_font Ariali.TTF "Arial Italic" + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/arialb32.exe + w_try cp -f "$W_TMP"/AriBlk.TTF "$W_FONTSDIR_UNIX" + w_register_font AriBlk.TTF "Arial Black" + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/comic32.exe + w_try cp -f "$W_TMP"/Comic*.TTF "$W_FONTSDIR_UNIX" + w_register_font Comic.TTF "Comic Sans MS" + w_register_font Comicbd.TTF "Comic Sans MS Bold" + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/courie32.exe + w_try cp -f "$W_TMP"/cour*.ttf "$W_FONTSDIR_UNIX" + w_register_font Cour.TTF "Courier New" + w_register_font CourBD.TTF "Courier New Bold" + w_register_font CourBI.TTF "Courier New Bold Italic" + w_register_font Couri.TTF "Courier New Italic" + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/georgi32.exe + w_try cp -f "$W_TMP"/Georgia*.TTF "$W_FONTSDIR_UNIX" + w_register_font Georgia.TTF "Georgia" + w_register_font Georgiab.TTF "Georgia Bold" + w_register_font Georgiaz.TTF "Georgia Bold Italic" + w_register_font Georgiai.TTF "Georgia Italic" + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/impact32.exe + w_try cp -f "$W_TMP"/Impact.TTF "$W_FONTSDIR_UNIX" + w_register_font Impact.TTF "Impact" + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/times32.exe + w_try cp -f "$W_TMP"/Times*.TTF "$W_FONTSDIR_UNIX" + w_register_font Times.TTF "Times New Roman" + w_register_font Timesbd.TTF "Times New Roman Bold" + w_register_font Timesbi.TTF "Times New Roman Bold Italic" + w_register_font Timesi.TTF "Times New Roman Italic" + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/trebuc32.exe + w_try cp -f "$W_TMP"/[tT]rebuc*.ttf "$W_FONTSDIR_UNIX" + w_register_font Trebuc.TTF "Trebucet MS" + w_register_font Trebucbd.TTF "Trebucet MS Bold" + w_register_font Trebucbi.TTF "Trebucet MS Bold Italic" + w_register_font Trebucit.TTF "Trebucet MS Italic" + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/verdan32.exe + w_try cp -f "$W_TMP"/Verdana*.TTF "$W_FONTSDIR_UNIX" + w_register_font Verdana.TTF "Verdana" + w_register_font Verdanab.TTF "Verdana Bold" + w_register_font Verdanaz.TTF "Verdana Bold Italic" + w_register_font Verdanai.TTF "Verdana Italic" + + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/corefonts/webdin32.exe + w_try cp -f "$W_TMP"/Webdings.TTF "$W_FONTSDIR_UNIX" + w_register_font Webdings.TTF "Webdings" +} + +#---------------------------------------------------------------- + +w_metadata droid fonts \ + title="Droid fonts" \ + publisher="Ascender Corporation" \ + year="2009" \ + media="download" \ + file1="DroidSans-Bold.ttf" \ + installed_file1="$W_FONTSDIR_WIN/DroidSans-Bold.ttf" + +do_droid() { + w_download ${DROID_URL}$1'?raw=true' $3 $1 + w_try cp -f "$W_CACHE"/droid/$1 "$W_FONTSDIR_UNIX" + w_register_font $1 "$2" +} + +load_droid() +{ + # See http://en.wikipedia.org/wiki/Droid_(font) + # Old url was http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob_plain;f=data/fonts/' + # Then it was https://github.com/android/platform_frameworks_base/blob/master/data/fonts/ + # but the fonts are no longer in master. Using an older commit instead: + DROID_URL='https://github.com/android/platform_frameworks_base/blob/feef9887e8f8eb6f64fc1b4552c02efb5755cdc1/data/fonts/' + + do_droid DroidSans-Bold.ttf "Droid Sans Bold" 560e4bcafdebaf29645fbf92633a2ae0d2f9801f + do_droid DroidSansFallback.ttf "Droid Sans Fallback" c5e4f11e2f1d0b84e5f268a7ebfd28b54dc6bcdc + do_droid DroidSansJapanese.ttf "Droid Sans Japanese" b3a248c11692aa88a30eb25df425b8910fe05dc5 + do_droid DroidSansMono.ttf "Droid Sans Mono" 133fb6cf26ea073b456fb557b94ce8c46143b117 + do_droid DroidSans.ttf "Droid Sans" 62f2841f61e4be66a0303cd1567ed2d300b4e31c + do_droid DroidSerif-BoldItalic.ttf "Droid Serif Bold Italic" 41ce5fef1bd0164caed6958885d7285c841c95f1 + do_droid DroidSerif-Bold.ttf "Droid Serif Bold" 2775e9b8e96a3e9593acb5cf6923abb2e6008187 + do_droid DroidSerif-Italic.ttf "Droid Serif Italic" e91cc6c1ae9a6699683bcee024551cb58d1be790 + do_droid DroidSerif-Regular.ttf "Droid Serif" a689ce25a4063cf501c12d616f832f2235b5b93b +} + +#---------------------------------------------------------------- + +w_metadata eufonts fonts \ + title="Updated fonts for Romanian and Bulgarian" \ + publisher="Microsoft" \ + year="2008" \ + media="download" \ + file1="EUupdate.EXE" \ + installed_file1="$W_FONTSDIR_WIN/trebucbd.ttf" + +load_eufonts() +{ + # https://www.microsoft.com/downloads/details.aspx?FamilyID=0ec6f335-c3de-44c5-a13d-a1e7cea5ddea&displaylang=en + w_download http://download.microsoft.com/download/a/1/8/a180e21e-9c2b-4b54-9c32-bf7fd7429970/EUupdate.EXE 9b076c40cb63aa0d8512aa8e610ba11d3466e441 + w_try_cabextract -q --directory="$W_TMP" "$W_CACHE"/eufonts/EUupdate.EXE + w_try cp -f "$W_TMP"/*.ttf "$W_FONTSDIR_UNIX" + + w_register_font ArialBI.ttf "Arial Bold Italic" + w_register_font ArialI.ttf "Arial Italic" + w_register_font Arial.ttf "Arial" + w_register_font TimesBd.ttf "Times New Roman Bold" + w_register_font TimesBI.ttf "Times New Roman Bold Italic" + w_register_font TimesI.ttf "Times New Roman Italic" + w_register_font Times.ttf "Times New Roman" + w_register_font trebucbd.ttf "Trebuchet Bold" + w_register_font trebucbi.ttf "Trebuchet Bold Italic" + w_register_font trebucit.ttf "Trebuchet Italic" + w_register_font trebuc.ttf "Trebuchet" + w_register_font Verdanab.ttf "Verdana Bold" + w_register_font Verdanai.ttf "Verdana Italian" + w_register_font Verdana.ttf "Verdana" + w_register_font Verdanaz.ttf "Verdana Bold Italic" +} + +#---------------------------------------------------------------- + +w_metadata fakechinese fonts \ + title="Creates aliases for Chinese fonts using WenQuanYi fonts" \ + publisher="wenq.org" \ + year="2009" + +load_fakechinese() +{ + w_call wenquanyi + # Loads Wenquanyi fonts and sets aliases for Microsoft Chinese fonts + # Reference : http://en.wikipedia.org/wiki/List_of_Microsoft_Windows_fonts + + w_register_font_replacement "Microsoft JhengHei" "WenQuanYi Micro Hei" + w_register_font_replacement "Microsoft YaHei" "WenQuanYi Micro Hei" + w_register_font_replacement "SimHei" "WenQuanYi Micro Hei" + w_register_font_replacement "DFKai-SB" "WenQuanYi Micro Hei" + w_register_font_replacement "FangSong" "WenQuanYi Micro Hei" + w_register_font_replacement "KaiTi" "WenQuanYi Micro Hei" + w_register_font_replacement "PMingLiU" "WenQuanYi Micro Hei" + w_register_font_replacement "MingLiU" "WenQuanYi Micro Hei" + w_register_font_replacement "NSimSun" "WenQuanYi Micro Hei" + w_register_font_replacement "SimKai" "WenQuanYi Micro Hei" + w_register_font_replacement "SimSun" "WenQuanYi Micro Hei" +} + +#---------------------------------------------------------------- + +w_metadata fakejapanese fonts \ + title="Creates aliases for Japanese fonts using Takao fonts" \ + publisher="Jun Kobayashi" \ + year="2010" + +load_fakejapanese() +{ + w_call takao + # Loads Takao fonts and sets aliases for MS Gothic, MS UI Gothic, and MS PGothic, mainly for Japanese language support + # Aliases to set: + # MS Gothic --> TakaoGothic + # MS UI Gothic --> TakaoGothic + # MS PGothic --> TakaoPGothic + # MS Mincho --> TakaoMincho + # MS PMincho --> TakaoPMincho + # These aliases were taken from what was listed in Ubuntu's fontconfig definitions. + + w_register_font_replacement "MS Gothic" "TakaoGothic" + w_register_font_replacement "MS UI Gothic" "TakaoGothic" + w_register_font_replacement "MS PGothic" "TakaoPGothic" + w_register_font_replacement "MS Mincho" "TakaoMincho" + w_register_font_replacement "MS PMincho" "TakaoPMincho" +} + +#---------------------------------------------------------------- + +w_metadata fakejapanese_ipamona fonts \ + title="Creates aliases for Japanese fonts using IPAMona fonts" \ + publisher="Jun Kobayashi" \ + year="2008" + +load_fakejapanese_ipamona() +{ + w_call ipamona + + # Aliases to set: + # MS UI Gothic --> IPAMonaUIGothic + # MS Gothic (MS ゴシック) --> IPAMonaGothic + # MS PGothic (MS Pゴシック) --> IPAMonaPGothic + # MS Mincho (MS 明朝) --> IPAMonaMincho + # MS PMincho (MS P明朝) --> IPAMonaPMincho + + jpname_msgothic="$(echo "MS ゴシック" | iconv -f utf8 -t cp932)" + jpname_mspgothic="$(echo "MS Pゴシック" | iconv -f utf8 -t cp932)" + jpname_msmincho="$(echo "MS 明朝" | iconv -f utf8 -t cp932)" + jpname_mspmincho="$(echo "MS P明朝" | iconv -f utf8 -t cp932)" + + w_register_font_replacement "MS UI Gothic" "IPAMonaUIGothic" + w_register_font_replacement "MS Gothic" "IPAMonaGothic" + w_register_font_replacement "MS PGothic" "IPAMonaPGothic" + w_register_font_replacement "MS Mincho" "IPAMonaMincho" + w_register_font_replacement "MS PMincho" "IPAMonaPMincho" + w_register_font_replacement "$jpname_msgothic" "IPAMonaGothic" + w_register_font_replacement "$jpname_mspgothic" "IPAMonaPGothic" + w_register_font_replacement "$jpname_msmincho" "IPAMonaMincho" + w_register_font_replacement "$jpname_mspmincho" "IPAMonaPMincho" +} + +#---------------------------------------------------------------- + +w_metadata fakekorean fonts \ + title="Creates aliases for Korean fonts using Baekmuk fonts" \ + publisher="Wooderart Inc. / kldp.net" \ + year="1999" + +load_fakekorean() +{ + w_call baekmuk + # Loads Baekmuk fonts and sets as an alias for Gulim, Dotum, and Batang for Korean language support + # Aliases to set: + # Gulim --> Baekmuk Gulim + # GulimChe --> Baekmuk Gulim + # Batang --> Baekmuk Batang + # BatangChe --> Baekmuk Batang + # Dotum --> Baekmuk Dotum + # DotumChe --> Baekmuk Dotum + + w_register_font_replacement "Gulim" "Baekmuk Gulim" + w_register_font_replacement "GulimChe" "Baekmuk Gulim" + w_register_font_replacement "Batang" "Baekmuk Batang" + w_register_font_replacement "BatangChe" "Baekmuk Batang" + w_register_font_replacement "Dotum" "Baekmuk Dotum" + w_register_font_replacement "DotumChe" "Baekmuk Dotum" +} + +#---------------------------------------------------------------- + +w_metadata fontfix settings \ + title="Check for broken fonts" + +load_fontfix() +{ + # some versions of ukai.ttf and uming.ttf crash .net and picasa + # See http://bugs.winehq.org/show_bug.cgi?id=7098#c9 + # Very unlikely to still be around, so downgrade to fatal warning + if test -f /usr/share/fonts/truetype/arphic/ukai.ttf + then + w_get_sha1sum /usr/share/fonts/truetype/arphic/ukai.ttf + if [ "$_W_gotsum"x = "96e1121f89953e5169d3e2e7811569148f573985"x ] + then + w_die "Your installed ukai.ttf is known to be broken. Upgrade your ttf-arphic font package!" + fi + fi + + if test -f /usr/share/fonts/truetype/arphic/uming.ttf + then + w_get_sha1sum /usr/share/fonts/truetype/arphic/uming.ttf + if [ "$_W_gotsum"x = "2a4f4a69e343c21c24d044b2cb19fd4f0decc82c"x ] + then + w_die "Your installed uming.ttf is known to be broken. Upgrade your ttf-uming font package!" + fi + fi + + # Focht says Samyak is bad news, and font substitution isn't a good workaround. + # I've seen psdkwin7 setup crash because of this; the symptom was a messagebox saying + # SDKSetup encountered an error: The type initializer for 'Microsoft.WizardFramework.WizardSettings' threw an exception + # and WINEDEBUG=+relay,+seh shows an exception very quickly after + # Call KERNEL32.CreateFileW(0c83b36c L"Z:\\USR\\SHARE\\FONTS\\TRUETYPE\\TTF-ORIYA-FONTS\\SAMYAK-ORIYA.TTF",80000000,00000001,00000000,00000003,00000080,00000000) ret=70d44091 + if xlsfonts 2>/dev/null | egrep -i "samyak.*oriya" + then + w_die "Please uninstall the Samyak/Oriya font, e.g. 'sudo dpkg -r ttf-oriya-fonts', then log out and log in again. That font causes strange crashes in .net programs." + fi +} + +#---------------------------------------------------------------- + +w_metadata ipamona fonts \ + title="IPAMona Japanese fonts" \ + publisher="Jun Kobayashi" \ + year="2008" \ + media="download" \ + file1="opfc-ModuleHP-1.1.1_withIPAMonaFonts-1.0.8.tar.gz" \ + installed_file1="$W_FONTSDIR_WIN/ipag-mona.ttf" \ + homepage="http://www.geocities.jp/ipa_mona/" + +load_ipamona() +{ + w_download http://www.geocities.jp/ipa_mona/$file1 57dd13ab58c0005d3ee2932539e4987ab0242bc7 + + cd "$W_TMP" + + gunzip -dc "$W_CACHE/$W_PACKAGE/$file1" | tar -xf - + w_try mv *IPAMonaFonts*/fonts/*.ttf "$W_FONTSDIR_UNIX" + + w_register_font ipagui-mona.ttf "IPAMonaUIGothic" + w_register_font ipag-mona.ttf "IPAMonaGothic" + w_register_font ipagp-mona.ttf "IPAMonaPGothic" + w_register_font ipam-mona.ttf "IPAMonaMincho" + w_register_font ipamp-mona.ttf "IPAMonaPMincho" +} + +#---------------------------------------------------------------- + +w_metadata liberation fonts \ + title="Red Hat Liberation fonts (Sans, Serif, Mono)" \ + publisher="Red Hat" \ + year="2008" \ + media="download" \ + file1="liberation-fonts-1.04.tar.gz" \ + installed_file1="$W_FONTSDIR_WIN/LiberationMono-BoldItalic.ttf" + +load_liberation() +{ + # http://www.redhat.com/promo/fonts/ + case `uname -s` in + SunOS|Solaris) + echo "If you get 'ERROR: Certificate verification error for fedorahosted.org: unable to get local issuer certificate':" + echo "Then you need to add Verisign root certificates to your local keystore." + echo "OpenSolaris users, see: http://www.linuxtopia.org/online_books/opensolaris_2008/SYSADV1/html/swmgrpatchtasks-14.html" + echo "Or edit winetricks's download function, and add '--no-check-certificate' to the command." + ;; + esac + + w_download https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-1.04.tar.gz 097882c92e3260742a3dc3bf033792120d8635a3 + cd "$W_TMP" + gunzip -dc "$W_CACHE"/liberation/liberation-fonts-1.04.tar.gz | tar -xf - + mv liberation-fonts-1.04/*.ttf "$W_FONTSDIR_UNIX" + + w_register_font LiberationMono-BoldItalic.ttf "LiberationMono-BoldItalic" + w_register_font LiberationMono-Bold.ttf "LiberationMono-Bold" + w_register_font LiberationMono-Italic.ttf "LiberationMono-Italic" + w_register_font LiberationMono-Regular.ttf "LiberationMono-Regular" + w_register_font LiberationSans-BoldItalic.ttf "LiberationSans-BoldItalic" + w_register_font LiberationSans-Bold.ttf "LiberationSans-Bold" + w_register_font LiberationSans-Italic.ttf "LiberationSans-Italic" + w_register_font LiberationSans-Regular.ttf "LiberationSans-Regular" + w_register_font LiberationSerif-BoldItalic.ttf "LiberationSerif-BoldItalic" + w_register_font LiberationSerif-Bold.ttf "LiberationSerif-Bold" + w_register_font LiberationSerif-Italic.ttf "LiberationSerif-Italic" + w_register_font LiberationSerif-Regular.ttf "LiberationSerif-Regular" +} + +#---------------------------------------------------------------- + +w_metadata lucida fonts \ + title="MS Lucida Console font" \ + publisher="Microsoft" \ + year="1998" \ + media="download" \ + file1="eurofixi.exe" \ + installed_file1="$W_FONTSDIR_WIN/lucon.ttf" + +load_lucida() +{ + w_download ftp://ftp.fu-berlin.de/pc/security/ms-patches/winnt/usa/NT40TSE/hotfixes-postSP3/Euro-fix/eurofixi.exe 64c47ad92265f6f10b0fd909a703d4fd1b05b2d5 + w_try_cabextract -d "$W_FONTSDIR_UNIX" -L -F 'lucon.ttf' "$W_CACHE"/lucida/eurofixi.exe + w_register_font lucon.ttf "Lucida Console" +} + +#---------------------------------------------------------------- + +w_metadata opensymbol fonts \ + title="OpenSymbol fonts (replacement for Wingdings)" \ + publisher="OpenOffice.org" \ + year="2014" \ + media="download" \ + file1="fonts-opensymbol_102.6+LibO4.3.3-2+deb8u3_all.deb" \ + installed_file1="$W_FONTSDIR_WIN/opens___.ttf" + +load_opensymbol() +{ + # The OpenSymbol fonts are a replacement for the Windows Wingdings font from OpenOffice.org. + # Need to w_download Debian since I can't find a standalone download from OpenOffice + # Note: The source download package on debian is for _all_ of OpenOffice, which is 266 MB. + w_download http://security.debian.org/debian-security/pool/updates/main/libr/libreoffice/fonts-opensymbol_102.6+LibO4.3.3-2+deb8u3_all.deb d3e2dd921c6694d24865600e40eceaf2a635d1c6 + + cd "$W_TMP" + w_try ar x "$W_CACHE/$W_PACKAGE/$file1" data.tar.xz + w_try tar Jvxf data.tar.xz ./usr/share/fonts/truetype/openoffice/opens___.ttf + w_try mv "$W_TMP/usr/share/fonts/truetype/openoffice/opens___.ttf" "$W_FONTSDIR_UNIX" + w_register_font opens___.ttf "OpenSymbol" +} + +#---------------------------------------------------------------- + +w_metadata tahoma fonts \ + title="MS Tahoma font (not part of corefonts)" \ + publisher="Microsoft" \ + year="2007" \ + media="download" \ + file1="tahoma32.exe" \ + installed_file1="$W_FONTSDIR_WIN/tahoma.ttf" + +load_tahoma() +{ + # The tahoma and tahomabd fonts are needed by e.g. Steam + + w_download http://download.microsoft.com/download/office97pro/fonts/1/w95/en-us/tahoma32.exe 888ce7b7ab5fd41f9802f3a65fd0622eb651a068 + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/tahoma/tahoma32.exe + w_try cp -f "$W_TMP"/Tahoma.TTF "$W_FONTSDIR_UNIX"/tahoma.ttf + w_try cp -f "$W_TMP"/Tahomabd.TTF "$W_FONTSDIR_UNIX"/tahomabd.ttf + + # FIXME: Wine seems to nuke the registry entries for Tahoma. Why? Font Xplorer always lists it as 'not installed'. + w_register_font tahoma.ttf "Tahoma" + w_register_font tahomabd.ttf "Tahoma Bold" + + # ? does some app assume it can overwrite these, or is this a leftover from before we had install checks? + chmod +w "$W_FONTSDIR_UNIX"/tahoma*.ttf +} + +#---------------------------------------------------------------- + +w_metadata takao fonts \ + title="Takao Japanese fonts" \ + publisher="Jun Kobayashi" \ + year="2010" \ + media="download" \ + file1="takao-fonts-ttf-003.02.01.zip" \ + installed_file1="$W_FONTSDIR_WIN/TakaoGothic.ttf" + +load_takao() +{ + # The Takao font provides Japanese glyphs. May also be needed with fakejapanese function above. + # See http://launchpad.net/takao-fonts for project page + w_download http://launchpad.net/takao-fonts/trunk/003.02.01/+download/takao-fonts-ttf-003.02.01.zip 4f636d5c7c1bc16b96ea723adb16838cfb6df059 + cp -f "$W_CACHE"/takao/takao-fonts-ttf-003.02.01.zip "$W_TMP" + w_try_unzip "$W_TMP" "$W_TMP"/takao-fonts-ttf-003.02.01.zip + w_try cp -f "$W_TMP"/takao-fonts-ttf-003.02.01/*.ttf "$W_FONTSDIR_UNIX" + + w_register_font TakaoGothic.ttf "TakaoGothic" + w_register_font TakaoPGothic.ttf "TakaoPGothic" + w_register_font TakaoMincho.ttf "TakaoMincho" + w_register_font TakaoPMincho.ttf "TakaoPMincho" + w_register_font TakaoExGothic.ttf "TakaoExGothic" + w_register_font TakaoExMincho.ttf "TakaoExMincho" +} + +#---------------------------------------------------------------- + +w_metadata uff fonts \ + title="Ubuntu Font Family" \ + publisher="Ubuntu" \ + year="2010" \ + media="download" \ + file1="ubuntu-font-family-0.70.1.zip" \ + installed_file1="$W_FONTSDIR_WIN/Ubuntu-R.ttf" \ + homepage="https://launchpad.net/ubuntu-font-family" + +load_uff() +{ + w_download http://font.ubuntu.com/download/ubuntu-font-family-0.70.1.zip efbab0d5d8cb5cff091307d2360dcb1bfe1ae6e1 + cd "$W_TMP" + w_try_unzip . "$W_CACHE"/uff/ubuntu-font-family-0.70.1.zip + mv ubuntu-font-family-0.70.1/*.ttf "$W_FONTSDIR_UNIX" + + w_register_font Ubuntu-R.ttf "Ubuntu" + w_register_font Ubuntu-I.ttf "Ubuntu Italic" + w_register_font Ubuntu-B.ttf "Ubuntu Bold" + w_register_font Ubuntu-BI.ttf "Ubuntu Bold Italic" +} + +#---------------------------------------------------------------- + +w_metadata wenquanyi fonts \ + title="WenQuanYi CJK font" \ + publisher="wenq.org" \ + year="2009" \ + media="download" \ + file1="wqy-microhei-0.2.0-beta.tar.gz" \ + installed_file1="$W_FONTSDIR_WIN/wqy-microhei.ttc" + +load_wenquanyi() +{ + # See http://wenq.org/enindex.cgi + # Donate at http://wenq.org/enindex.cgi?Download(en)#MicroHei_Beta if you want to help support free CJK font development + w_download $WINETRICKS_SOURCEFORGE/wqy/wqy-microhei-0.2.0-beta.tar.gz 28023041b22b6368bcfae076de68109b81e77976 + cd "$W_TMP/" + gunzip -dc "$W_CACHE/wenquanyi/wqy-microhei-0.2.0-beta.tar.gz" | tar -xf - + w_try mv wqy-microhei/wqy-microhei.ttc "$W_FONTSDIR_UNIX" + w_register_font wqy-microhei.ttc "WenQuanYi Micro Hei" +} + +#---------------------------------------------------------------- + +w_metadata unifont fonts \ + title="Unifont alternative to Arial Unicode MS" \ + publisher="Roman Czyborra / GNU" \ + year="2008" \ + media="download" \ + file1="unifont-5.1.20080907.zip" \ + installed_file1="$W_FONTSDIR_WIN/unifont.ttf" + +load_unifont() +{ + # The GNU Unifont provides glyphs for just about everything in common language. It is intended for multilingual usage. + # See http://unifoundry.com/unifont.html for project page + w_download http://unifoundry.com/unifont-5.1.20080907.zip bb8a3960dc0a96aa305de28312ea8a0ab64123d2 + cp -f "$W_CACHE"/unifont/unifont-5.1.20080907.zip "$W_TMP" + w_try_unzip "$W_TMP" "$W_TMP"/unifont-5.1.20080907.zip + w_try cp -f "$W_TMP"/unifont-5.1.20080907.ttf "$W_FONTSDIR_UNIX/unifont.ttf" + + w_register_font unifont.ttf "Unifont" + w_register_font_replacement "Arial Unicode MS" "Unifont" +} + +#---------------------------------------------------------------- + +w_metadata allfonts fonts \ + title="All fonts" \ + publisher="various" \ + year="1998-2010" \ + media="download" + +load_allfonts() +{ + # This verb uses reflection, should probably do it portably instead, but that would require keeping it up to date + for file in "$WINETRICKS_METADATA"/fonts/*.vars + do + cmd=`basename $file .vars` + case $cmd in + allfonts|cjkfonts) ;; + *) w_call $cmd;; + esac + done +} + +#---------------------------------------------------------------- +# Apps +#---------------------------------------------------------------- + +w_metadata 3m_library apps \ + title="3M Cloud Library" \ + publisher="3M Company" \ + year="2015" \ + media="download" \ + file1="3M-TM-Cloud-Library-PC-App-LIVE-Installer-1.51.735677.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/3M(TM) Cloud Library PC App/3MCloudLibrary.exe" + homepage="http://www.3m.com/us/library/eBook/index.html" + +load_3m_library() +{ + w_download http://www.3m.com/us/library/eBook/docs/3M-TM-Cloud-Library-PC-App-LIVE-Installer-1.51.735677.exe 810dc5f6b74ab7b34893288ee44ef7dc563a4ee7 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" 3M-TM-Cloud-Library-PC-App-LIVE-Installer-1.51.735677.exe $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata 7zip apps \ + title="7-Zip 15.05 beta" \ + publisher="Igor Pavlov" \ + year="2015" \ + media="download" \ + file1="7z1505.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/7-Zip/7zFM.exe" + +load_7zip() +{ + w_download http://www.7-zip.org/a/7z1505.exe ece8bbd4c8903095d44e99196219c953a1d47bfd + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" 7z1505.exe $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata abiword apps \ + title="AbiWord 2.8.6" \ + publisher="AbiSource" \ + year="2010" \ + media="download" \ + file1="abiword-setup-2.8.6.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/AbiWord/bin/AbiWord.exe" + +load_abiword() +{ + w_download http://www.abisource.com/downloads/abiword/2.8.6/Windows/abiword-setup-2.8.6.exe a91acd3f60e842d23556032d34f1600602768318 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" abiword-setup-2.8.6.exe $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata adobe_diged apps \ + title="Adobe Digital Editions 1.7" \ + publisher="Adobe" \ + year="2011" \ + media="download" \ + file1="setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Adobe/Adobe Digital Editions/digitaleditions.exe" \ + homepage="http://www.adobe.com/products/digitaleditions/" + +load_adobe_diged() +{ + w_download http://kb2.adobe.com/cps/403/kb403051/attachments/setup.exe 4c79685408fa6ca12ef8bb0e0eaa4a846e21f915 + # NSIS installer + w_try "$WINE" "$W_CACHE"/$W_PACKAGE/setup.exe ${W_OPT_UNATTENDED:+ /S} +} + +#---------------------------------------------------------------- + +w_metadata adobe_diged4 apps \ + title="Adobe Digital Editions 4.5" \ + publisher="Adobe" \ + year="2015" \ + media="download" \ + file1="ADE_4.5_Installer.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Adobe/Adobe Digital Editions 4.5/DigitalEditions.exe" \ + homepage="http://www.adobe.com/products/digitaleditions/" + +load_adobe_diged4() +{ + w_download http://download.adobe.com/pub/adobe/digitaleditions/ADE_4.5_Installer.exe + + if w_workaround_wine_bug 32323 + then + w_call corefonts + fi + if [ ! -x "`which winbindd 2>/dev/null`" ] + then + w_warn "Adobe Digital Editions 4.5 requires winbind (part of samba) to be installed, but winbind was not detected." + fi + + w_call dotnet40 + + #w_call win7 + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, ${file1} ${W_OPT_UNATTENDED:+ /S} + winwait, Installing Adobe Digital Editions + ControlClick, Button1 ; Don't install Norton Internet Security + ControlClick, Static19 ; Next + " +} + +#---------------------------------------------------------------- + +w_metadata audible apps \ + title="Audible.com Manager / Player" \ + publisher="Audible" \ + year="2011" \ + media="download" \ + file1="ActiveSetupN.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Audible/Bin/Manager.exe" \ + homepage="http://www.audible.com" + +load_audible() +{ + w_download http://download.audible.com/AM50/ActiveSetupN.exe 49f501471912ccca442bcc1c8f2c69160579f712 + cd "$W_CACHE/$W_PACKAGE" + # Use exact title match! + w_ahk_do " + SetWinDelay 500 + SetTitleMatchMode, 3 + Run, $file1 + WinWait, AudibleManager Setup + ControlClick, Button3 ; accept + WinWait, AudibleManager Setup, Start by + ControlClick, Button6 ; OK + WinWaitClose + ; many windows come and go, quite a few of them starting with AudibleManager, so use exact match to get the real mccoy + WinWait, AudibleManager ; the dang thing starts up + WinKill + " +} + +#---------------------------------------------------------------- + +w_metadata audibledm apps \ + title="Audible.com Download Manager" \ + publisher="Audible" \ + year="2011" \ + media="download" \ + file1="AudibleDM_iTunesSetup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Audible/Bin/AudibleDownloadHelper.exe" \ + homepage="http://www.audible.com" + +load_audibledm() +{ + w_download http://download.audible.com/AM50/AudibleDM_iTunesSetup.exe 03261d77a59ebbceedf6683b5301c162bc0c7788 + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetWinDelay 500 + SetTitleMatchMode, 2 + Run, AudibleDM_iTunesSetup.exe + WinWait, Audible Download Manager Setup + ControlClick, Button2 ; accept + WinWait, Audible Download Manager Setup, Choose where + ControlClick, Button1 ; OK + WinWait, Audible Download Manager Setup, Manage + ControlClick, Button1 ; OK + WinWait, Audible Download Manager Setup, success + ControlClick, Button1 ; OK + WinWaitClose + WinWait, Audible Download Manager ; the dang thing starts up + WinKill + " +} + +#---------------------------------------------------------------- + +w_metadata autohotkey apps \ + title="Autohotkey" \ + publisher="autohotkey.org" \ + year="2010" \ + media="download" \ + file1="AutoHotkey104805_Install.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/AutoHotkey/AutoHotkey.exe" + +load_autohotkey() +{ + W_BROWSERAGENT=1 \ + w_download http://www.autohotkey.com/download/AutoHotkey104805_Install.exe 13e5a9ca6d5b7705f1cd02560c3af4d38b1904fc + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" AutoHotkey104805_Install.exe $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata cmake apps \ + title="CMake 2.8" \ + publisher="Kitware" \ + year="2013" \ + media="download" \ + file1="cmake-2.8.11.2-win32-x86.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/CMake 2.8/bin/cmake-gui.exe" + +load_cmake() +{ + w_download http://www.cmake.org/files/v2.8/cmake-2.8.11.2-win32-x86.exe d79af5715c0ad48d78bb731cce93b5ad89b16512 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" cmake-2.8.11.2-win32-x86.exe $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata colorprofile apps \ + title="Standard RGB color profile" \ + publisher="Microsoft" \ + year="2005" \ + media="download" \ + file1="ColorProfile.exe" \ + installed_exe1="c:/windows/system32/spool/drivers/color/sRGB Color Space Profile.icm" + +load_colorprofile() +{ + w_download http://download.microsoft.com/download/whistler/hwdev1/1.0/wxp/en-us/ColorProfile.exe 6b72836b32b343c82d0760dff5cb51c2f47170eb + w_try_unzip "$W_TMP" "$W_CACHE"/colorprofile/ColorProfile.exe + + # It's in system32 for both win32/win64 + mkdir -p "$W_WINDIR_UNIX"/system32/spool/drivers/color + w_try cp -f "$W_TMP/sRGB Color Space Profile.icm" "$W_WINDIR_UNIX"/system32/spool/drivers/color +} + +#---------------------------------------------------------------- + +w_metadata controlpad apps \ + title="MS ActiveX Control Pad" \ + publisher="Microsoft" \ + year="1997" \ + media="download" \ + file1="setuppad.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/ActiveX Control Pad/PED.EXE" + +load_controlpad() +{ + # http://msdn.microsoft.com/en-us/library/ms968493.aspx + w_call wsh57 + w_download http://download.microsoft.com/download/activexcontrolpad/install/4.0.0.950/win98mexp/en-us/setuppad.exe 8921e0f52507ca6a373c94d222777c750fb48af7 + w_try_cabextract --directory="$W_TMP" "$W_CACHE"/controlpad/setuppad.exe + + echo "If setup says 'Unable to start DDE ...', press Ignore" + + cd "$W_TMP" + w_try "$WINE" setup $W_UNATTENDED_SLASH_QT + + if ! test -f "$W_SYSTEM32_DLLS"/FM20.DLL + then + w_die "Install failed. Please report, If you just wanted fm20.dll, try installing art2min instead." + fi +} + +#---------------------------------------------------------------- + +w_metadata controlspy apps \ + title="Control Spy 2.0 " \ + publisher="Microsoft" \ + year="2005" \ + media="download" \ + file1="ControlSpy.msi" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft/ControlSpy/ControlSpyV6.exe" + +load_controlspy() +{ + w_download http://download.microsoft.com/download/a/3/1/a315b133-03a8-4845-b428-ec585369b285/ControlSpy.msi efe33701f78b5853ba73353f028b777b4c849e77 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" msiexec /i ControlSpy.msi ${W_UNATTENDED_SLASH_QB} +} + +#---------------------------------------------------------------- + +# dxdiag is a system component that one usually adds to an existing wineprefix, +# so it belongs in 'dlls', not apps. +w_metadata dxdiag dlls \ + title="DirectX Diagnostic Tool" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="../directx9/directx_feb2010_redist.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/dxdiag.exe" + +load_dxdiag() +{ + helper_directx_dl + + w_call gmdls + + w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME + w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F "dxdiag.exe" "$W_TMP/dxnt.cab" + mkdir -p "$W_WINDIR_UNIX/help" + w_try_cabextract -d "$W_WINDIR_UNIX/help" -L -F "dxdiag.chm" "$W_TMP/dxnt.cab" + w_override_dlls native dxdiag.exe + + if w_workaround_wine_bug 1429 + then + w_call dxdiagn + fi + if w_workaround_wine_bug 9027 + then + w_call directmusic + fi +} + +#---------------------------------------------------------------- + +w_metadata emu8086 apps \ + title="emu8086" \ + publisher="emu8086.com" \ + year="2015" \ + media="download" \ + file1="emu8086v408r11.zip" \ + installed_exe1="c:/emu8086/emu8086.exe" + +load_emu8086() +{ + w_download http://www.emu8086.com/files/emu8086v408r11.zip aa71b46ee9259e5b31a300c820277e551969da7b + w_try_unzip "$W_TMP" "$W_CACHE/$W_PACKAGE"/$file1 + w_try "$WINE" "$W_TMP/Setup.exe" $W_UNATTENDED_SLASH_SILENT +} + +#---------------------------------------------------------------- + +w_metadata ev3 apps \ + title="Lego Mindstorms EV3 Home Edition" \ + publisher="Lego" \ + year="2014" \ + media="download" \ + file1="LMS-EV3-WIN32-ENUS-01-02-01-full-setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/LEGO Software/LEGO MINDSTORMS EV3 Home Edition/MindstormsEV3.exe" + +load_ev3() +{ + if w_workaround_wine_bug 40192 "Installing vcrun2005 as Wine does not have MFC80.dll" + then + w_call vcrun2005 + fi + + if w_workaround_wine_bug 40193 "Installing IE8 is built-in Gecko is not sufficient" + then + w_call ie8 + fi + + w_call dotnet40 + + # 2016-02-18: LMS-EV3-WIN32-ENUS-01-01-01-full-setup.exe 855c914d9a3cf0f4793a046872658fd661389671 + # 2016-03-22: LMS-EV3-WIN32-ENUS-01-02-01-full-setup.exe f4f077befd837e8f5716dbd134dc6828d6c4cc77 + + w_download http://esd.lego.com.edgesuite.net/digitaldelivery/mindstorms/6ecda7c2-1189-4816-b2dd-440e22d65814/public/LMS-EV3-WIN32-ENUS-01-02-01-full-setup.exe f4f077befd837e8f5716dbd134dc6828d6c4cc77 + + if [ $W_UNATTENDED_SLASH_Q ] + then + quiet="$W_UNATTENDED_SLASH_QB /AcceptLicenses yes" + else + quiet="" + fi + + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" "$file1" ${quiet} + + if w_workaround_wine_bug 40174 "Setting override for urlmon.dll to native to avoid crash" + then + w_override_dlls native urlmon + fi + + if w_workaround_wine_bug 34897 "Installing update KB2936068 to work around bug 34897" + then + w_call ie8_kb2936068 + fi +} + +#---------------------------------------------------------------- + +w_metadata firefox apps \ + title="Firefox 39.0" \ + publisher="Mozilla" \ + year="2015" \ + media="download" \ + file1="FirefoxSetup39.0.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Mozilla Firefox/firefox.exe" + +load_firefox() +{ + w_download "https://download.mozilla.org/?product=firefox-39.0-SSL&os=win&lang=en-US" 75eccbd9b2d44210b551c9a5045f03f01e899528 "$file1" + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" "$file1" ${W_OPT_UNATTENDED:+ -ms} +} + +#---------------------------------------------------------------- + +w_metadata fontxplorer apps \ + title="Font Xplorer 1.2.2" \ + publisher="Moon Software" \ + year="2001" \ + media="download" \ + file1="Font_Xplorer_122_Free.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Font Xplorer/FXplorer.exe" \ + homepage="http://www.moonsoftware.com/fxplorer.asp" + +load_fontxplorer() +{ + w_download http://www.moonsoftware.com/files/legacy/Font_Xplorer_122_Free.exe 22feb63be28730cbfad5458b139464490a25a68d + + cd "$W_CACHE/fontxplorer" + w_try "$WINE" Font_Xplorer_122_Free.exe $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata foobar2000 apps \ + title="foobar2000 v1.3.6" \ + publisher="Peter Pawlowski" \ + year="2014" \ + media="manual_download" \ + file1="foobar2000_v1.3.6.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/foobar2000/foobar2000.exe" + +load_foobar2000() +{ + w_download_manual http://www.foobar2000.org/download foobar2000_v1.3.6.exe 77d1c3aa766853701d29e46b3018aaf1e1b5dd39 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" $file1 $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata iceweasel apps \ + title="GNU Icecat 31.7.0" \ + publisher="GNU Foundation" \ + year="2015" \ + media="download" \ + file1="icecat-31.7.0.en-US.win32.zip" \ + installed_exe1="$W_PROGRAMS_X86_WIN/icecat/icecat.exe" + +load_iceweasel() +{ + w_download https://ftp.gnu.org/gnu/gnuzilla/31.7.0/icecat-31.7.0.en-US.win32.zip cf52a728c1af29065b7dc7bdddc9265a79eb5328 + w_try_unzip "${W_PROGRAMS_X86_UNIX}" "${W_CACHE}/${W_PACKAGE}/${file1}" +} + + +#---------------------------------------------------------------- + +w_metadata irfanview apps \ + title="Irfanview" \ + publisher="Irfan Skiljan" \ + year="2014" \ + media="download" \ + file1="iview438_setup.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/IrfanView/i_view32.exe" \ + homepage="http://www.irfanview.com/" + +load_irfanview() +{ + w_download http://fossies.org/windows/misc/iview438_setup.exe c55c2fd91ac1af03e8063442b110ba771357d42e + if w_workaround_wine_bug 657 "Installing mfc42" + then + w_call mfc42 + fi + + cd "$W_CACHE/$W_PACKAGE" + if test "$W_OPT_UNATTENDED" + then + w_ahk_do " + SetWinDelay 200 + SetTitleMatchMode, 2 + run $file1 + winwait, Setup, This program will install + winactivate, Setup, This program will install + Sleep 900 + ControlClick, Button7 ; Uncheck All + Sleep 900 + ControlClick, Button11 ; Next + Sleep 900 + winwait, Setup, version + Sleep 900 + ControlClick, Button11 ; Next + Sleep 900 + winwait, Setup, associate extensions + Sleep 900 + ControlClick, Button1 ; Images Only associations + Sleep 900 + ControlClick, Button16 ; Next + Sleep 900 + winwait, Setup, Search + Sleep 900 + ControlClick, Button1 ; deselect chrome googsrch + Sleep 900 + ControlClick, Button18 ; Next + Sleep 1000 + winwait, Setup, INI + Sleep 1000 + ControlClick, Button23 ; Next + Sleep 1000 + winwait, Setup, You want to change + winactivate, Setup, really + Sleep 900 + ControlClick, Button1 ; Yes + Sleep 900 + winwait, Setup, successful + winactivate, Setup, successful + Sleep 900 + ControlClick, Button2 ; no start irfanview + Sleep 900 + ControlClick, Button27 ; done + Sleep 900 + winwaitclose + " + else + w_try "$WINE" $file1 + fi +} + +#---------------------------------------------------------------- + +# FIXME: ie6 always installs to C:/Program Files even if LANG is de_DE.utf-8, +# so we have to hard code that, but that breaks on 64 bit windows. +w_metadata ie6 dlls \ + title="Internet Explorer 6" \ + publisher="Microsoft" \ + year="2002" \ + media="download" \ + file1="ie60.exe" \ + installed_file1="c:/Program Files/Internet Explorer/iedetect.dll" + +load_ie6() +{ + # Installer doesn't support Win64, and I can't find a x64 version on microsoft.com + if [ $W_ARCH = win64 ] + then + w_die "This package does not work on a 64-bit installation" + fi + + w_download http://download.oldapps.com/Internet_Explorer/ie60.exe 8e483db28ff01a7cabd39147ab6c59753ea1f533 + + cd "$W_TMP" + "$WINE" "$W_CACHE"/"$W_PACKAGE"/$file1 + + w_call msls31 + + # Unregister Wine IE + if [ ! -f "$W_SYSTEM32_DLLS"/plugin.ocx ] + then + w_override_dlls builtin iexplore.exe + w_try "$WINE" iexplore -unregserver + fi + + # Change the override to the native so we are sure we use and register them + w_override_dlls native,builtin iexplore.exe inetcpl.cpl itircl itss jscript mlang mshtml msimtf shdoclc shdocvw shlwapi + + # Remove the fake dlls, if any + mv "$W_PROGRAMS_UNIX"/"Internet Explorer"/iexplore.exe "$W_PROGRAMS_UNIX"/"Internet Explorer"/iexplore.exe.bak + for dll in itircl itss jscript mlang mshtml msimtf shdoclc shdocvw shlwapi + do + test -f "$W_SYSTEM32_DLLS"/$dll.dll && + mv "$W_SYSTEM32_DLLS"/$dll.dll "$W_SYSTEM32_DLLS"/$dll.dll.bak + done + + # The installer doesn't want to install iexplore.exe in XP mode. + w_set_winver win2k + + # Workaround http://bugs.winehq.org/show_bug.cgi?id=21009 + # See also http://code.google.com/p/winezeug/issues/detail?id=78 + rm -f "$W_SYSTEM32_DLLS"/browseui.dll "$W_SYSTEM32_DLLS"/inseng.dll + + # Otherwise regsvr32 crashes later + rm -f "$W_SYSTEM32_DLLS"/inetcpl.cpl + + # Work around http://bugs.winehq.org/show_bug.cgi?id=25432 + w_try_cabextract -F inseng.dll "$W_TMP/IE 6.0 Full/ACTSETUP.CAB" + mv inseng.dll "$W_SYSTEM32_DLLS" + w_override_dlls native inseng + + cd "$W_TMP/IE 6.0 Full" + if [ $W_UNATTENDED_SLASH_Q ] + then + "$WINE" IE6SETUP.EXE /q:a /r:n /c:"ie6wzd /S:""#e"" /q:a /r:n" + else + "$WINE" IE6SETUP.EXE + fi + + # IE6 exits with 194 to signal a reboot + status=$? + case $status in + 0|194) ;; + *) w_die ie6 installation failed + esac + + # Work around DLL registration bug until ierunonce/RunOnce/wineboot is fixed + # FIXME: whittle down this list + cd "$W_SYSTEM32_DLLS" + for i in actxprxy.dll browseui.dll browsewm.dll cdfview.dll ddraw.dll \ + dispex.dll dsound.dll iedkcs32.dll iepeers.dll iesetup.dll imgutil.dll \ + inetcomm.dll inetcpl.cpl inseng.dll isetup.dll jscript.dll laprxy.dll \ + mlang.dll mshtml.dll mshtmled.dll msi.dll msident.dll \ + msoeacct.dll msrating.dll mstime.dll msxml3.dll occache.dll \ + ole32.dll oleaut32.dll olepro32.dll pngfilt.dll quartz.dll \ + rpcrt4.dll rsabase.dll rsaenh.dll scrobj.dll scrrun.dll \ + shdocvw.dll shell32.dll vbscript.dll webcheck.dll \ + wshcon.dll wshext.dll asctrls.ocx hhctrl.ocx mscomct2.ocx \ + plugin.ocx proctexe.ocx tdc.ocx webcheck.dll wshom.ocx + do + "$WINE" regsvr32 /i $i > /dev/null 2>&1 + done + + # Set windows version back to user's default. Leave at win2k for better rendering (is there a bug for that?) + w_unset_winver + + # the ie6 we use these days lacks pngfilt, so grab that + w_call pngfilt +} + +#---------------------------------------------------------------- + +w_metadata ie7 dlls \ + title="Internet Explorer 7" \ + publisher="Microsoft" \ + year="2008" \ + media="download" \ + file1="IE7-WindowsXP-x86-enu.exe" \ + installed_file1="c:/windows/ie7.log" + +load_ie7() +{ + # Unregister Wine IE + if grep -q -i "wine placeholder" "$W_PROGRAMS_X86_UNIX/Internet Explorer/iexplore.exe" + then + w_override_dlls builtin iexplore.exe + w_try "$WINE" iexplore -unregserver + fi + + # Change the override to the native so we are sure we use and register them + w_override_dlls native,builtin itircl itss jscript mshtml msimtf shdoclc shdocvw shlwapi urlmon wininet xmllite + + # IE7 installer will check the version number of iexplore.exe which causes IE7 installer to fail on wine-1.9.0+ + w_override_dlls native iexplore.exe + + # Bundled updspapi cannot work on wine + w_override_dlls builtin updspapi + + # Remove the fake dlls from the existing WINEPREFIX + if [ -f "$W_PROGRAMS_X86_UNIX/Internet Explorer/iexplore.exe" ] + then + mv "$W_PROGRAMS_X86_UNIX/Internet Explorer/iexplore.exe" "$W_PROGRAMS_X86_UNIX/Internet Explorer/iexplore.exe.bak" + fi + for dll in itircl itss jscript mshtml msimtf shdoclc shdocvw shlwapi urlmon + do + test -f "$W_SYSTEM32_DLLS"/$dll.dll && + mv "$W_SYSTEM32_DLLS"/$dll.dll "$W_SYSTEM32_DLLS"/$dll.dll.bak + done + + # See http://bugs.winehq.org/show_bug.cgi?id=16013 + # Find instructions to create this file in dlls/wintrust/tests/crypt.c + w_download https://github.com/Winetricks/winetricks/raw/master/files/winetest.cat ac8f50dd54d011f3bb1dd79240dae9378748449f + + # Put a dummy catalog file in place + mkdir -p "$W_SYSTEM32_DLLS"/catroot/\{f750e6c3-38ee-11d1-85e5-00c04fc295ee\} + w_try cp -f "$W_CACHE"/ie7/winetest.cat "$W_SYSTEM32_DLLS"/catroot/\{f750e6c3-38ee-11d1-85e5-00c04fc295ee\}/oem0.cat + + # KLUDGE: if / is writable (as on MacOSX?), having a z: mapping to it + # causes ie7 to put temporary directories on Z:\ + # so hide it temporarily. This is not very robust! + if test -w / + then + rm -f "$WINEPREFIX/dosdevices/z:.bak_wt" + mv "$WINEPREFIX/dosdevices/z:" "$WINEPREFIX/dosdevices/z:.bak_wt" + fi + + # Install + w_download http://download.microsoft.com/download/3/8/8/38889DC1-848C-4BF2-8335-86C573AD86D9/IE7-WindowsXP-x86-enu.exe d39b89c360fbaa9706b5181ae4718100687a5326 + cd "$W_CACHE/$W_PACKAGE" + + "$WINE" IE7-WindowsXP-x86-enu.exe $W_UNATTENDED_SLASH_QUIET + + # IE7 exits with 194 to signal a reboot + status=$? + case $status in + 0) ;; + 105) echo "exit status $status - normal, user selected 'restart now'" ;; + 194) echo "exit status $status - normal, user selected 'restart later'" ;; + *) w_die "exit status $status - $W_PACKAGE installation failed" ;; + esac + + if test -w / + then + # END KLUDGE: restore z:, assuming user didn't kill us + mv "$WINEPREFIX/dosdevices/z:.bak_wt" "$WINEPREFIX/dosdevices/z:" + fi + + # Work around DLL registration bug until ierunonce/RunOnce/wineboot is fixed + # FIXME: whittle down this list + cd "$W_SYSTEM32_DLLS" + for i in actxprxy.dll browseui.dll browsewm.dll cdfview.dll ddraw.dll \ + dispex.dll dsound.dll iedkcs32.dll iepeers.dll iesetup.dll \ + imgutil.dll inetcomm.dll inseng.dll isetup.dll jscript.dll laprxy.dll \ + mlang.dll mshtml.dll mshtmled.dll msi.dll msident.dll \ + msoeacct.dll msrating.dll mstime.dll msxml3.dll occache.dll \ + ole32.dll oleaut32.dll olepro32.dll pngfilt.dll quartz.dll \ + rpcrt4.dll rsabase.dll rsaenh.dll scrobj.dll scrrun.dll \ + shdocvw.dll shell32.dll urlmon.dll vbscript.dll webcheck.dll \ + wshcon.dll wshext.dll asctrls.ocx hhctrl.ocx mscomct2.ocx \ + plugin.ocx proctexe.ocx tdc.ocx webcheck.dll wshom.ocx + do + "$WINE" regsvr32 /i $i > /dev/null 2>&1 + done + + # Seeing is believing + case $WINETRICKS_GUI in + none) + w_warn "To start ie7, use the command "$WINE" '${W_PROGRAMS_WIN}\\\\Internet Explorer\\\\iexplore'" + ;; + *) + w_warn "Starting ie7. To start it later, use the command "$WINE" '${W_PROGRAMS_WIN}\\\\Internet Explorer\\\\iexplore'" + "$WINE" "${W_PROGRAMS_WIN}\\Internet Explorer\\iexplore" http://www.microsoft.com/windows/internet-explorer/ie7/ > /dev/null 2>&1 & + ;; + esac +} + +#---------------------------------------------------------------- + +w_metadata ie8 dlls \ + title="Internet Explorer 8" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="IE8-WindowsXP-x86-ENU.exe" \ + installed_file1="c:/windows/ie8_main.log" + +load_ie8() +{ + # Unregister Wine IE + if grep -q -i "wine placeholder" "$W_PROGRAMS_X86_UNIX/Internet Explorer/iexplore.exe" + #if [ ! -f "$W_SYSTEM32_DLLS"/plugin.ocx ] + then + w_override_dlls builtin iexplore.exe + w_try "$WINE" iexplore -unregserver + fi + + w_call msls31 + + # Change the override to the native so we are sure we use and register them + w_override_dlls native,builtin itircl itss jscript msctf mshtml shdoclc shdocvw shlwapi urlmon wininet xmllite + + # IE8 installer will check the version number of iexplore.exe which causes IE8 installer to fail on wine-1.9.0+ + w_override_dlls native iexplore.exe + + # Bundled updspapi cannot work on wine + w_override_dlls builtin updspapi + + # Remove the fake dlls from the existing WINEPREFIX + if [ -f "$W_PROGRAMS_X86_UNIX/Internet Explorer/iexplore.exe" ] + then + mv "$W_PROGRAMS_X86_UNIX/Internet Explorer/iexplore.exe" "$W_PROGRAMS_X86_UNIX/Internet Explorer/iexplore.exe.bak" + fi + for dll in browseui.dll inseng.dll itircl itss jscript msctf mshtml shdoclc shdocvw shlwapi urlmon + do + test -f "$W_SYSTEM32_DLLS"/$dll.dll && + mv "$W_SYSTEM32_DLLS"/$dll.dll "$W_SYSTEM32_DLLS"/$dll.dll.bak + done + + # See http://bugs.winehq.org/show_bug.cgi?id=16013 + # Find instructions to create this file in dlls/wintrust/tests/crypt.c + w_download https://github.com/Winetricks/winetricks/raw/master/files/winetest.cat ac8f50dd54d011f3bb1dd79240dae9378748449f + + # Put a dummy catalog file in place + mkdir -p "$W_SYSTEM32_DLLS"/catroot/\{f750e6c3-38ee-11d1-85e5-00c04fc295ee\} + w_try cp -f "$W_CACHE"/ie8/winetest.cat "$W_SYSTEM32_DLLS"/catroot/\{f750e6c3-38ee-11d1-85e5-00c04fc295ee\}/oem0.cat + + w_download http://download.microsoft.com/download/C/C/0/CC0BD555-33DD-411E-936B-73AC6F95AE11/IE8-WindowsXP-x86-ENU.exe e489483e5001f95da04e1ebf3c664173baef3e26 + if [ $W_UNATTENDED_SLASH_QUIET ] + then + quiet="$W_UNATTENDED_SLASH_QUIET /forcerestart" + else + quiet="" + fi + cd "$W_CACHE/$W_PACKAGE" + + # KLUDGE: if / is writable, having a z: mapping to it causes ie8 to put temporary directories on Z:\ + # so hide it temporarily. This is not very robust! + rm -f "$WINEPREFIX/dosdevices/z:.bak_wt" + mv "$WINEPREFIX/dosdevices/z:" "$WINEPREFIX/dosdevices/z:.bak_wt" + + # FIXME: There's an option for /updates-noupdates to disable checking for updates, but that + # forces the install to fail on Wine. Not sure if it's an IE8 or Wine bug... + # FIXME: can't check status, as it always reports failure on wine? + "$WINE" IE8-WindowsXP-x86-ENU.exe $quiet + # END KLUDGE: restore z:, assuming user didn't kill us + mv "$WINEPREFIX/dosdevices/z:.bak_wt" "$WINEPREFIX/dosdevices/z:" + + # Work around DLL registration bug until ierunonce/RunOnce/wineboot is fixed + # FIXME: whittle down this list + cd "$W_SYSTEM32_DLLS" + for i in actxprxy.dll browseui.dll browsewm.dll cdfview.dll ddraw.dll \ + dispex.dll dsound.dll iedkcs32.dll iepeers.dll iesetup.dll \ + imgutil.dll inetcomm.dll isetup.dll jscript.dll laprxy.dll \ + mlang.dll msctf.dll mshtml.dll mshtmled.dll msi.dll msimtf.dll msident.dll \ + msoeacct.dll msrating.dll mstime.dll msxml3.dll occache.dll \ + ole32.dll oleaut32.dll olepro32.dll pngfilt.dll quartz.dll \ + rpcrt4.dll rsabase.dll rsaenh.dll scrobj.dll scrrun.dll \ + shdocvw.dll shell32.dll urlmon.dll vbscript.dll webcheck.dll \ + wshcon.dll wshext.dll asctrls.ocx hhctrl.ocx mscomct2.ocx \ + plugin.ocx proctexe.ocx tdc.ocx uxtheme.dll webcheck.dll wshom.ocx + do + "$WINE" regsvr32 /i $i > /dev/null 2>&1 + done + + if w_workaround_wine_bug 25648 "Setting TabProcGrowth=0 to avoid hang" + then + cat > "$W_TMP"/set-tabprocgrowth.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main] +"TabProcGrowth"=dword:00000000 + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\set-tabprocgrowth.reg + fi + + # Seeing is believing + case $WINETRICKS_GUI in + none) + w_warn "To start ie8, use the command "$WINE" '${W_PROGRAMS_WIN}\\\\Internet Explorer\\\\iexplore'" + ;; + *) + w_warn "Starting ie8. To start it later, use the command "$WINE" '${W_PROGRAMS_WIN}\\\\Internet Explorer\\\\iexplore'" + "$WINE" "${W_PROGRAMS_WIN}\\Internet Explorer\\iexplore" http://www.microsoft.com/windows/internet-explorer > /dev/null 2>&1 & + ;; + esac +} + +#---------------------------------------------------------------- + +w_metadata kobo apps \ + title="Kobo e-book reader" \ + publisher="Kobo" \ + year="2011" \ + media="download" \ + file1="KoboSetup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Kobo/Kobo.exe" \ + homepage="http://www.borders.com/online/store/MediaView_ereaderapps" + +load_kobo() +{ + w_download http://download.kobobooks.com/desktop/1/KoboSetup.exe 31a5f5583edf4b716b9feacb857d2170104cabd9 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" $file1 ${W_OPT_UNATTENDED:+ /S} +} + +#---------------------------------------------------------------- + +w_metadata mingw apps \ + title="Minimalist GNU for Windows, including GCC for Windows" \ + publisher="GNU" \ + year="2013" \ + media="download" \ + file1="mingw-get-setup.exe" \ + installed_exe1="c:/MinGW/bin/gcc.exe" \ + homepage="http://mingw.org/wiki/Getting_Started" + +load_mingw() +{ + w_download "$WINETRICKS_SOURCEFORGE/mingw/files/mingw-get-setup.exe" 66f1355f16ac1e328243e877880eb6e45e8b30e2 + + cd "$W_CACHE/mingw" + w_try "$WINE" "$file1" + + w_append_path 'C:\MinGW\bin' + w_try "$WINE" mingw-get update + w_try "$WINE" mingw-get install gcc msys-base +} + +#---------------------------------------------------------------- + +w_metadata mpc apps \ + title="Media Player Classic - Home Cinema" \ + publisher="doom9 folks" \ + year="2014" \ + media="download" \ + file1="MPC-HC.1.7.5.x86.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/MPC-HC/mpc-hc.exe" \ + homepage="http://mpc-hc.sourceforge.net" + +load_mpc() +{ + w_download $WINETRICKS_SOURCEFORGE/project/mpc-hc/MPC%20HomeCinema%20-%20Win32/MPC-HC_v1.7.5_x86/MPC-HC.1.7.5.x86.exe 39f90869929007ae0576ae30dca6cd22ed5a59c2 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" MPC-HC.1.7.5.x86.exe ${W_OPT_UNATTENDED:+ /VERYSILENT} +} + +#---------------------------------------------------------------- + +w_metadata mspaint apps \ + title="MS Paint" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="WindowsXP-KB978706-x86-ENU.exe" \ + installed_file1="c:/windows/mspaint.exe" + +load_mspaint() +{ + if w_workaround_wine_bug 657 "Native mspaint.exe from XP requires mfc42.dll" + then + w_call mfc42 + fi + w_download http://download.microsoft.com/download/0/A/4/0A40DF5C-2BAE-4C63-802A-84C33B34AC98/WindowsXP-KB978706-x86-ENU.exe f4e076b3867c2f08b6d258316aa0e11d6822b8d7 + w_try $WINE "$W_CACHE"/mspaint/WindowsXP-KB978706-x86-ENU.exe /q /x:"$W_TMP"/WindowsXP-KB978706-x86-ENU + w_try cp -f "$W_TMP"/WindowsXP-KB978706-x86-ENU/SP3GDR/mspaint.exe "$W_WINDIR_UNIX"/mspaint.exe +} + +#---------------------------------------------------------------- + +w_metadata mt4 apps \ + title="Meta Trader 4" \ + year="2005" \ + media="download" \ + file1="mt4setup.exe" + +load_mt4() +{ + w_download https://download.mql5.com/cdn/web/metaquotes.software.corp/mt4/mt4setup.exe 07c094fc95916ba2b8d0282795717db3f4a5a9ba + + if w_workaround_wine_bug 7156 "${title} needs wingdings.ttf, installing opensymbol" + then + w_call opensymbol + fi + + # Opens a webpage + WINEDLLOVERRIDES="winebrowser.exe=" + export WINEDLLOVERRIDES + + # No documented silent install option, unfortunately.. + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + Run, ${file1} + WinWait, MetaTrader 4 Setup, license agreement + ControlClick, Button1 + Sleep 100 + ControlClick, Button3 + WinWait, MetaTrader 4 Setup, Installation successfully completed + ControlClick, Button4 + Process, Wait, terminal.exe + Process, Close, terminal.exe + " +} + +#---------------------------------------------------------------- + +w_metadata nook apps \ + title="Nook for PC (e-book reader)" \ + publisher="Barnes & Noble" \ + year="2011" \ + media="download" \ + file1="bndr2_setup_latest.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Barnes & Noble/BNDesktopReader/BNDReader.exe" \ + homepage="http://www.barnesandnoble.com/u/free-nook-apps/379002321/" + +load_nook() +{ + # dates from curl --head + # 10 Feb 2011 sha1sum 4a06a529b93ed33c3518326d874b40d8d7b70e7a + # 7 Oct 2011 sha1sum 3b0301bd55471cc47cced44501547411fac9fcea + # 7 Mar 2012 sha1sum e7060a63b9b303ddd820de762d9df254e1c931bc + w_download http://images.barnesandnoble.com/PResources/download/eReader2/bndr2_setup_latest.exe e7060a63b9b303ddd820de762d9df254e1c931bc + cd "$W_CACHE/$W_PACKAGE" + "$WINE" $file1 ${W_OPT_UNATTENDED:+ /S} + # normally has exit status 199? +} + +#---------------------------------------------------------------- + +w_metadata npp apps \ + title="Notepad++" \ + publisher="Don Ho" \ + year="2015" \ + media="download" \ + file1="npp.6.7.9.2.Installer.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Notepad++/notepad++.exe" + +load_npp() +{ + w_download https://notepad-plus-plus.org/repository/6.x/6.7.9.2/npp.6.7.9.2.Installer.exe 34574fb2e4e06ff941061bf444b57ce926ce23d7 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" "${file1}" $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata office2003pro apps \ + title="Microsoft Office 2003 Professional" \ + publisher="Microsoft" \ + year="2002" \ + media="cd" \ + file1="setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Office/Office11/WINWORD.EXE" + +load_office2003pro() +{ + w_mount OFFICE11 + w_read_key + + w_ahk_do " + if ( w_opt_unattended > 0 ) { + run ${W_ISO_MOUNT_LETTER}:setup.exe /EULA_ACCEPT=YES /PIDKEY=$W_KEY + } else { + run ${W_ISO_MOUNT_LETTER}:setup.exe + } + SetTitleMatchMode, 2 + WinWait,Microsoft Office 2003 Setup, Welcome + if ( w_opt_unattended > 0 ) { + Sleep 500 + WinWait,Microsoft Office 2003 Setup,Key + Sleep 500 + ControlClick Button1 ; Next + WinWait,Microsoft Office 2003 Setup,Initials + Sleep 500 + ControlClick Button1 ; Next + WinWait,Microsoft Office 2003 Setup,End-User + Sleep 500 + ControlClick Button1 ; I accept + ControlClick Button2 ; Next + WinWait,Microsoft Office 2003 Setup,Recommended + Sleep 500 + ControlClick Button7 ; Next + WinWait,Microsoft Office 2003 Setup,Summary + Sleep 500 + ControlClick Button1 ; Install + } + WinWait,Microsoft Office 2003 Setup,Completed + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button2 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata office2007pro apps \ + title="Microsoft Office 2007 Professional" \ + publisher="Microsoft" \ + year="2006" \ + media="cd" \ + file1="setup.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Microsoft Office/Office12/WINWORD.EXE" + +load_office2007pro() +{ + if w_workaround_wine_bug 14980 "Using native riched20" + then + w_override_app_dlls winword.exe n riched20 + w_override_app_dlls excel.exe n riched20 + w_override_app_dlls powerpnt.exe n riched20 + w_override_app_dlls msaccess.exe n riched20 + w_override_app_dlls outlook.exe n riched20 + w_override_app_dlls mspub.exe n riched20 + w_override_app_dlls infopath.exe n riched20 + fi + + w_mount OFFICE12 + w_read_key + + if test $W_OPT_UNATTENDED + then + # See + # http://blogs.technet.com/b/office_resource_kit/archive/2009/01/29/configure-a-silent-install-of-the-2007-office-system-with-config-xml.aspx + # http://www.symantec.com/connect/articles/office-2007-silent-installation-lessons-learned + cat > "$W_TMP"/config.xml <<__EOF__ + + + + +__EOF__ + "$WINE" ${W_ISO_MOUNT_LETTER}:setup.exe /config "$W_TMP_WIN"\\config.xml + + status=$? + case $status in + 0|43) ;; + 78) + w_die "Installing $W_PACKAGE failed, product key $W_KEY \ +might be wrong. Try again without -q, or put correct key in \ +$W_CACHE/$W_PACKAGE/key.txt and rerun." + ;; + *) + w_die "Installing $W_PACKAGE failed." + ;; + esac + + else + w_try "$WINE" ${W_ISO_MOUNT_LETTER}:setup.exe + fi +} + +#---------------------------------------------------------------- + +w_metadata opera apps \ + title="Opera 11" \ + publisher="Opera Software" \ + year="2011" \ + media="download" \ + file1="Opera_1150_en_Setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Opera/opera.exe" + +load_opera() +{ + w_download ftp://ftp.opera.com/pub/opera/win/1150/en/Opera_1150_en_Setup.exe df50c7aed50e92af858e8834f833dd0543014b46 + cd "$W_CACHE"/$W_PACKAGE + w_try "$WINE" $file1 ${W_OPT_UNATTENDED:+ /silent /launchopera 0 /allusers} +} + +#---------------------------------------------------------------- + +w_metadata picasa39 apps \ + title="Picasa 3.9" \ + publisher="Google" \ + year="2014" \ + file1="picasa39-setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Google/Picasa3/Picasa3.exe" + +load_picasa39() +{ + # 2015/01/17: 39b2df46dbc423e250371e826026a2827f55b956 + # 2015/09/21: 55907fc84b1d9d6a450463869b16927f07737298 + # 2016/01/02: b3f7e2ee168811cb1d924eb34afe2b0d8153f89f + + w_download http://dl.google.com/picasa/picasa39-setup.exe b3f7e2ee168811cb1d924eb34afe2b0d8153f89f + if w_workaround_wine_bug 29434 "Picasa 3.9 fails to authenticate with Google" + then + w_warn "Picasa 3.9 authentication to the Google account is currently broken under wine. See http://bugs.winehq.org/show_bug.cgi?id=29434 for more details." + fi + cd "$W_CACHE"/$W_PACKAGE + w_ahk_do " + SetTitleMatchMode, 2 + run picasa39-setup.exe + WinWait, Picasa 3 Setup + if ( w_opt_unattended > 0 ) { + Sleep 1000 + ControlClick Button2 ;I Agree - License + Sleep 1000 + WinWait, Picasa 3 Setup, Choose Install Location + ControlClick Button2 ;Install + Sleep 1000 + WinWait, Picasa 3 Setup, Picasa 3 has been installed on your computer + Sleep 500 + ControlClick Button5 ; Desktop Icon + Sleep 500 + ControlClick Button6 ; Quick Launch + Sleep 500 + ControlClick Button7 ; Default search off + Sleep 500 + ControlClick Button8 ; Usage statistics sent + Sleep 500 + ControlClick Button4 ; Run Picasa + Sleep 500 + ControlClick Button2 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata protectionid apps \ + title="Protection ID" \ + publisher="CDKiLLER & TippeX" \ + year="2015" \ + media="download" \ + file1="ProtectionId.670.halloween.2015.rar" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/protection_id.exe" + +load_protectionid() +{ + w_download http://pid.gamecopyworld.com/dl.php?f=ProtectionId.670.halloween.2015.rar a307e15f28d00959cffddd8fda073aac6df943c8 "$file1" + cd "$W_SYSTEM32_DLLS" + w_try_unrar "${W_CACHE}/${W_PACKAGE}/${file1}" + # ProtectionId.670.halloween.2015 has a different executable name than usual, this may need to be disabled on next update: + mv Protection_ID.eXe protection_id.exe +} + +#---------------------------------------------------------------- + +w_metadata psdk2003 apps \ + title="MS Platform SDK 2003" \ + publisher="Microsoft" \ + year="2003" \ + media="download" \ + file1="5.2.3790.1830.15.PlatformSDK_Svr2003SP1_rtm.img" \ + installed_file1="$W_PROGRAMS_X86_WIN/Microsoft Platform SDK/SetEnv.Cmd" + +load_psdk2003() +{ + w_call mfc42 + + # http://www.microsoft.com/en-us/download/details.aspx?id=15656 + w_download http://download.microsoft.com/download/7/5/e/75ec7f04-4c8c-4f38-b582-966e76602643/5.2.3790.1830.15.PlatformSDK_Svr2003SP1_rtm.img + + # Unpack ISO (how handy that 7z can do this!) + # Only the windows version of 7z can handle .img files? + WINETRICKS_OPT_SHAREDPREFIX=1 w_call 7zip + cd "$W_PROGRAMS_X86_UNIX"/7-Zip + w_try "$WINE" 7z.exe x -y -o"$W_TMP_WIN" "$W_CACHE_WIN\\psdk2003\\5.2.3790.1830.15.PlatformSDK_Svr2003SP1_rtm.img" + + cd "$W_TMP/Setup" + + # Sanity check... + w_verify_sha1sum 6376ab5394226f426366d0646bf244d26156697b PSDK-x86.msi + + w_try "$WINE" msiexec /i PSDK-x86.msi ${W_UNATTENDED_SLASH_QB} +} + +#---------------------------------------------------------------- + +w_metadata psdkwin7 apps \ + title="MS Windows 7 SDK" \ + publisher="Microsoft" \ + year="2009" \ + media="download" \ + file1="winsdk_web.exe" \ + installed_exe1="C:/Program Files/Microsoft SDKs/Windows/v7.0/Bin/SetEnv.Cmd" + +load_psdkwin7() +{ + # http://www.microsoft.com/downloads/details.aspx?FamilyID=c17ba869-9671-4330-a63e-1fd44e0e2505&displaylang=en + w_call dotnet20 + w_call mfc42 # need mfc42u, or setup will abort + # don't have a working unattended recipe. Maybe we'll have to + # do an autohotkey script until msft gets its act together: + # http://social.msdn.microsoft.com/Forums/en-US/windowssdk/thread/c053b616-7d5b-405d-9841-ec465a8e21d5 + w_download http://download.microsoft.com/download/7/A/B/7ABD2203-C472-4036-8BA0-E505528CCCB7/winsdk_web.exe a01dcc67a38f461e80ea649edf1353f306582507 + cd "$W_CACHE/$W_PACKAGE" + if w_workaround_wine_bug 21596 + then + w_warn "When given a choice, select only C++ compilers and headers, the other options don't work yet. See http://bugs.winehq.org/show_bug.cgi?id=21596" + fi + w_try "$WINE" winsdk_web.exe + + if w_workaround_wine_bug 21362 + then + # Assume user installed in default location + cat > "$W_TMP"/set-psdk7.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs] + +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows] +"CurrentVersion"="v7.0" +"CurrentInstallFolder"="C:\\\Program Files\\\Microsoft SDKs\\\Windows\\\v7.0\\\" + +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0] +"InstallationFolder"="C:\\\Program Files\\\Microsoft SDKs\\\Windows\\\v7.0\\\" +"ProductVersion"="7.0.7600.16385.40715" +"ProductName"="Microsoft Windows SDK for Windows 7 (7.0.7600.16385.40715)" +_EOF_ + w_try_regedit "$W_TMP_WIN"\\set-psdk7.reg + fi +} + +#---------------------------------------------------------------- + +w_metadata psdkwin71 apps \ + title="MS Windows 7.1 SDK" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="winsdk_web.exe" \ + installed_exe1="C:/Program Files/Microsoft SDKs/Windows/v7.1/Bin/SetEnv.Cmd" + +load_psdkwin71() +{ + w_call dotnet20 + w_call dotnet40 + w_call mfc42 # need mfc42u, or setup will abort + # http://www.microsoft.com/downloads/details.aspx?FamilyID=c17ba869-9671-4330-a63e-1fd44e0e2505&displaylang=en + w_download http://download.microsoft.com/download/A/6/A/A6AC035D-DA3F-4F0C-ADA4-37C8E5D34E3D/winsdk_web.exe a8717ebb20a69c7efa85232bcb9899b8b07f98cf + + if w_workaround_wine_bug 21596 + then + w_warn "When given a choice, select only C++ compilers and headers, the other options don't work yet. See http://bugs.winehq.org/show_bug.cgi?id=21596" + fi + + # don't have a working unattended recipe. Maybe we'll have to + # do an autohotkey script until msft gets its act together: + # http://social.msdn.microsoft.com/Forums/en-US/windowssdk/thread/c053b616-7d5b-405d-9841-ec465a8e21d5 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" winsdk_web.exe + + if w_workaround_wine_bug 21362 + then + # Assume user installed in default location + cat > "$W_TMP"/set-psdk71.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs] + +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows] +"CurrentVersion"="v7.1" +"CurrentInstallFolder"="C:\\\Program Files\\\Microsoft SDKs\\\Windows\\\v7.1\\\" + +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1] +"InstallationFolder"="C:\\\Program Files\\\Microsoft SDKs\\\Windows\\\v7.1\\\" +"ProductVersion"="7.0.7600.0.30514" +"ProductName"="Microsoft Windows SDK for Windows 7 (7.0.7600.0.30514)" + +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1\WinSDKBuild] +"ComponentName"="Microsoft Windows SDK Headers and Libraries" +"InstallationFolder"="C:\\\Program Files\\\Microsoft SDKs\\\Windows\\\v7.1\\\" +"ProductVersion"="7.0.7600.0.30514" + +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1\WinSDKTools] +"ComponentName"="Microsoft Windows SDK Headers and Libraries" +"InstallationFolder"="C:\\\Program Files\\\Microsoft SDKs\\\Windows\\\v7.1\\\bin\\\" +"ProductVersion"="7.0.7600.0.30514" + +[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1\WinSDKWin32Tools] +"ComponentName"="Microsoft Windows SDK Utilities for Win32 Development" +"InstallationFolder"="C:\\\Program Files\\\Microsoft SDKs\\\Windows\\\v7.1\\\bin\\\" +"ProductVersion"="7.0.7600.0.30514" +_EOF_ + w_try_regedit "$W_TMP_WIN"\\set-psdk71.reg + fi +} + +#---------------------------------------------------------------- + +w_metadata python26 dlls \ + title="Python Interpreter, version 2.6.2" \ + publisher="Python Software Foundaton" \ + year="2009" \ + media="download" \ + file1="python-2.6.2.msi" \ + installed_exe1="c:/Python26/python.exe" + +load_python26() +{ + w_download http://www.python.org/ftp/python/2.6.2/python-2.6.2.msi 2d1503b0e8b7e4c72a276d4d9027cf4856b208b8 + w_download $WINETRICKS_SOURCEFORGE/project/pywin32/pywin32/Build%20214/pywin32-214.win32-py2.6.exe eca58f29b810d8e3e7951277ebb3e35ac35794a3 + + if [ "$WINETRICKS_WINE_VERSION" = "wine-1.4.1" ] + then + w_die "This installer is broken under $WINETRICKS_WINE_VERSION. Please upgrade Wine. See https://code.google.com/p/winetricks/issues/detail?id=347 for more info." + fi + + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" msiexec /i python-2.6.2.msi ALLUSERS=1 $W_UNATTENDED_SLASH_Q + + w_ahk_do " + SetTitleMatchMode, 2 + run pywin32-214.win32-py2.6.exe + WinWait, Setup, Wizard will install pywin32 + if ( w_opt_unattended > 0 ) { + ControlClick Button2 ; next + WinWait, Setup, Python 2.6 is required + ControlClick Button3 ; next + WinWait, Setup, Click Next to begin + ControlClick Button3 ; next + WinWait, Setup, finished + ControlClick Button4 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata python26_comtypes dlls \ + title="Comtypes for Python 2.6" \ + publisher="theller" \ + year="2014" \ + media="download" \ + file1="1.1.1.zip" \ + installed_file1="c:/Python26/Lib/site-packages/comtypes-1.1.1-py2.6.egg/EGG-INFO/PKG-INFO" \ + homepage="https://github.com/enthought/comtypes/releases" + +load_python26_comtypes() +{ + w_call python26 + w_call python26_setuptools + + w_download https://github.com/enthought/comtypes/archive/${file1} 080921ede048063a3be273f5dca3acc469dfe361 + + w_try_unzip "$W_TMP" "${W_CACHE}/${W_PACKAGE}/${file1}" + cd "$W_TMP/comtypes-$(basename ${file1} .zip)" + w_try "$WINE" "C:\Python26\python.exe" setup.py install +} + +#---------------------------------------------------------------- + +w_metadata python26_setuptools dlls \ + title="Setuptools 18.0.1 for Python 2.6" \ + publisher="Python Packaging Authority" \ + year="2010" \ + media="download" \ + file1="ez_setup.py" \ + installed_file1="c:/Python26/Lib/site-packages/setuptools.pth" \ + homepage="https://pypi.python.org/pypi/setuptools" + +load_python26_setuptools() +{ + w_call python26 + + # Not checking sha1sum, script frequently updates and there aren't stable versions + w_download https://bootstrap.pypa.io/ez_setup.py + + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" "C:\Python26\python.exe" ${file1} +} + +#---------------------------------------------------------------- + +w_metadata spotify apps \ + title="Spotify - All the music, all the time" \ + publisher="Spotify" \ + year="2011" \ + media="download" \ + file1="SpotifyInstaller.exe" \ + installed_exe1="c:/users/$LOGNAME/Application Data/Spotify/spotify.exe" + +load_spotify() +{ + # 0.4.9 f26712b576baa1c78112a05474293deef39f7f62 + # 29 Apr 2011 0.4.10 4becb04f8ad08a3ff59d6830bf1d998fcca1815b + # 7 may 2011 a3c7daecf1051c4aaab544e6b66753617c0706b1 + # updates too frequently to check checksum :-( + w_download http://www.spotify.com/download/Spotify%20Installer.exe + + cd "$W_CACHE/$W_PACKAGE" + # w_download doesn't handle renaming for us without a checksum, tsk. + # And autohotkey thinks % is a variable reference. + if test ! -f SpotifyInstaller.exe + then + cp Spotify%20Installer.exe SpotifyInstaller.exe + fi + + # Install is silent by default, and always starts app + # So all we have to do here is close app if we want unattended install + w_ahk_do " + SetTitleMatchMode, 2 + run SpotifyInstaller.exe + WinWait, ahk_class SpotifyMainWindow + if ( w_opt_unattended > 0 ) { + WinClose + } + WinWaitClose + sleep 1000 + Process, Close, SpotifyWebHelper.exe + " +} + +#---------------------------------------------------------------- + +w_metadata safari apps \ + title="Safari" \ + publisher="Apple" \ + year="2010" \ + media="download" \ + file1="SafariSetup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Safari/Safari.exe" + +load_safari() +{ + w_download http://appldnld.apple.com.edgesuite.net/content.info.apple.com/Safari5/061-7138.20100607.Y7U87/SafariSetup.exe e56d5d79d9cfbb85ac46ac78aa497d7f3d8dbc3d + + if test $W_OPT_UNATTENDED + then + w_warn "Safari's silent install is broken under wine. See http://bugs.winehq.org/show_bug.cgi?id=23493. You should do a regular install if you want to use Safari." + fi + + cd "$W_CACHE"/$W_PACKAGE + w_try "$WINE" SafariSetup.exe $W_UNATTENDED_SLASH_QN +} + +#---------------------------------------------------------------- + +w_metadata sketchup apps \ + title="Sketchup 8" \ + publisher="Google" \ + year="2012" \ + media="download" \ + file1="GoogleSketchUpWEN.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Google/Google SketchUp 8/SketchUp.exe" + +load_sketchup() +{ + w_download http://dl.google.com/sketchup/GoogleSketchUpWEN.exe f0628e6f05241f91e4f36d6be3b8685a408ad12b + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run GoogleSketchUpWEN.exe + WinWait, SketchUp, Welcome + if ( w_opt_unattended > 0 ) { + Sleep 4000 + Send {Enter} + WinWait, SketchUp, License + Sleep 1000 + ControlClick Button1 ; accept + Sleep 1000 + ControlClick Button4 ; Next + WinWait, SketchUp, Destination + Sleep 1000 + ControlClick Button1 ; Next + WinWait, SketchUp, Ready + Sleep 1000 + ControlClick Button1 ; Install + } + WinWait, SketchUp, Completed + if ( w_opt_unattended > 0 ) { + Sleep 1000 + ControlClick Button1 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata steam apps \ + title="Steam" \ + publisher="Valve" \ + year="2010" \ + media="download" \ + file1="SteamInstall.msi" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/Steam.exe" + +load_steam() +{ + # 18 Mar 2011 7f2fee9ffeaba8424a6c76d6c95b794735ac9959 + # 29 Nov 2012 fa053c268b6285741d1a1392c25f92c5cb2a6ffb + # 17 Mar 2014 b2a3fdbe4a662f3bf751f5b8bfc61f8d35e050fe + # 11 Dec 2014 7ad8fbeffa6c963b821f80129c15c9d8e85f9a4a + # 6 Jan 2015 e04aefe8bc894f11f211edec8e8a008abe0147d2 + # 21 Jun 2015 0e8046d40c38d817338135ec73a5b217cc340cf5 + # 29 Dec 2015 728e3c82fd57c68cbbdb64965719081ffee6272c + w_download http://media.steampowered.com/client/installer/SteamSetup.exe 728e3c82fd57c68cbbdb64965719081ffee6272c + cd "$W_CACHE/$W_PACKAGE" + + # Should be fixed in newer steam versions, since 2012. Commenting out for a while before removing in case users need to revert locally + # + # Install corefonts first, so if the user doesn't have cabextract/Wine with cab support, we abort before installing Steam. + # FIXME: support using Wine's cab support + #if ! test -f "$W_FONTSDIR_UNIX/Times.TTF" && \ + # w_workaround_wine_bug 22751 "Installing corefonts to prevent a Steam crash" + #then + # w_call corefonts + #fi + + if test $W_OPT_UNATTENDED + then + w_ahk_do " + run, SteamSetup.exe + SetTitleMatchMode, 2 + WinWait, Steam, Using Steam + ControlClick, Button2 + WinWait, Steam, Please review + ControlClick, Button4 + sleep 1000 + ControlClick, Button2 + WinWait, Steam, Select the language + ControlClick, Button2 + WinWait, Steam, Choose the folder + ControlClick, Button2 + WinWait, Steam, Steam has been installed + ControlClick, Button4 + sleep 1000 + ControlClick, Button2 + WinWaitClose + " + else + w_try "$WINE" SteamSetup.exe + fi + + # Not all users need this disabled, but let's play it safe for now + if w_workaround_wine_bug 22053 "Disabling gameoverlayrenderer to prevent game crashes on some machines." + then + w_override_dlls disabled gameoverlayrenderer + fi +} + +#---------------------------------------------------------------- + +w_metadata uplay apps \ + title="Uplay" \ + publisher="Ubisoft" \ + year="2013" \ + media="download" \ + file1="UplayInstaller.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Ubisoft/Ubisoft Game Launcher/Uplay.exe" + +load_uplay() +{ + # 4 June 2013 3.0.1 sha1sum fdb9e736b5b2211fb23b35d30d52deae6f4b32a4 + # 1 July 2013 3.1.0 sha1sum 21a7f469534dd1463eaaab6b2be2fa9084bceea2 + # 11 Nov 2013 4.0 sha1sum 52e287f9f78313e4713d2f070b15734410da0c5a + # 26 Dec 2013 4.2 sha1sum ada2c11ee62eee19f8b1661bd974862e336623c6 + # 16 Feb 2014 ? sha1sum 19f98632ad1ff330c647f8ff1a3a15b44238c709 + # Changes too frequently, don't check anymore + w_download http://static3.cdn.ubi.com/orbit/launcher_installer/UplayInstaller.exe + cd "$W_CACHE/$W_PACKAGE" + + # NSIS installer + w_try "$WINE" UplayInstaller.exe ${W_OPT_UNATTENDED:+ /S} + + if w_workaround_wine_bug 33673 "Installing gdiplus to work around slow navigation" + then + w_call gdiplus + fi +} + +#---------------------------------------------------------------- + +w_metadata utorrent apps \ + title="µTorrent 2.2.1" \ + publisher="BitTorrent" \ + year="2011" \ + media="manual_download" \ + file1="utorrent_2.2.1.exe" \ + installed_exe1="c:/windows/utorrent.exe" + +load_utorrent() +{ + # Torrent client supported on Windows,Mac OSX, Linux through WINE + # Oct 2010 2.0.4 sha1sum 8382b8a7bc625d68b6efe18a7b9e5488dc0119ee + # Nov 6 2010 2.0.4 sha1sum 263a91693d0976473cd321cd6f1b0103a814f3ad + # Dev 17 2010 2.2 sha1sum 0c95bdfba07421fe706b30ee2ec6779217c5dce4, hangs, see wine bug 24946 + # Feb 11 2011 2.2.1beta sha1sum 82e81e1484b4e8654b83908509f3777532c6fcb3 + # Mar 28 2011 2.2.1 sha1sum 7049109e4d3f72338d54b42ae37ecf38fafed46f + # Apr 14 2011 2.2.1 sha1sum b1378d7cbe5d1e1b168ce44def8f59facdc046d5 + # 7 May 2011 sha1sum 2932c9ed1c1225e485f7e3dd2ed267aa7d568c80 + # 14 May 2011 removed checksum, updates too quickly to track :-( + # 7 Mar 2012 sha1sum c6d9a80c02898139b17194d10293f17ecef054cb + w_download_manual "http://www.oldapps.com/utorrent.php?old_utorrent=38" utorrent_2.2.1.exe c6d9a80c02898139b17194d10293f17ecef054cb + + w_try cp -f "$W_CACHE/utorrent/$file1" "$W_WINDIR_UNIX"/utorrent.exe +} + +#---------------------------------------------------------------- + +w_metadata utorrent3 apps \ + title="µTorrent 3.1" \ + publisher="BitTorrent" \ + year="2011" \ + media="download" \ + file1="uTorrent.exe" \ + installed_exe1="c:/users/$LOGNAME/Application Data/uTorrent/uTorrent.exe" + +load_utorrent3() +{ + # 15 Apr 2011: sha1sum a5f198207919e8f2091a9b4459d7d6fc8a63e874 + # 27 Apr 2011: sha1sum d969f0c61cf2b2afaea4121f097ef690dffbf771 + # 7 May 2011: sha1sum 1793a7b15d905a9fa82f9a969a96fa53abaac04c + # 14 May: removed checksum, changes too often to track + # 7 Mar 2012: sha1sum 73ba69b5d0004239a709af5db57c88c9d9c8f7b2 + # 28 Jun 2013: sha1sum d2408c8a09a2bd9704af39f818ec7ac9e9cca46e + w_download http://download-new.utorrent.com/endpoint/utorrent/os/windows/track/stable/ d2408c8a09a2bd9704af39f818ec7ac9e9cca46e uTorrent.exe + + cd "$W_CACHE/$W_PACKAGE" + # If you don't use /PERFORMINSTALL, it just runs uTorrent + # FIXME: That's no longer a quiet option, though.. + "$WINE" $file1 /PERFORMINSTALL /NORUN + + # dang installer exits with status 1 on success + status=$? + case $status in + 0|1) ;; + *) w_die "Note: utorrent installer returned status '$status'. Aborting." ;; + esac +} + +#---------------------------------------------------------------- + +w_metadata vc2005express apps \ + title="MS Visual C++ 2005 Express" \ + publisher="Microsoft" \ + year="2005" \ + media="download" \ + file1="VC.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Visual Studio 8/Common7/IDE/VCExpress.exe" + +load_vc2005express() +{ + # Thanks to http://blogs.msdn.com/astebner/articles/551674.aspx for the recipe + w_call dotnet20 + + # http://blogs.msdn.com/b/astebner/archive/2006/03/14/551674.aspx + # http://go.microsoft.com/fwlink/?linkid=57034 + w_download http://download.microsoft.com/download/A/9/1/A91D6B2B-A798-47DF-9C7E-A97854B7DD18/VC.iso 1ae44e4eaf8c61c3a39e573fd6efd9889e940529 + + # Unpack ISO (how handy that 7z can do this!) + w_try_7z "$W_TMP" "$W_CACHE"/vc2005express/VC.iso + + cd "$W_TMP" + if [ $W_UNATTENDED_SLASH_Q ] + then + chmod +x Ixpvc.exe + # Add /qn after ReallySuppress for a really silent install (but then you won't see any errors) + + w_try "$WINE" Ixpvc.exe /t:"$W_TMP_WIN" /q:a /c:"msiexec /i vcsetup.msi VSEXTUI=1 ADDLOCAL=ALL REBOOT=ReallySuppress" + + else + w_try "$WINE" setup.exe + w_ahk_do " + SetTitleMatchMode, 2 + WinWait, Visual C++ 2005 Express Edition Setup + WinWaitClose, Visual C++ 2005 Express Edition Setup + " + fi +} + +#---------------------------------------------------------------- + +w_metadata vc2005expresssp1 apps \ + title="MS Visual C++ 2005 Express SP1" \ + publisher="Microsoft" \ + year="2007" \ + media="download" \ + file1="VS80sp1-KB926748-X86-INTL.exe" + +load_vc2005expresssp1() +{ + w_call vc2005express + + # http://www.microsoft.com/downloads/details.aspx?FamilyId=7B0B0339-613A-46E6-AB4D-080D4D4A8C4E + if w_workaround_wine_bug 37375 + then + w_warn "Installer currently fails" + fi + w_download http://download.microsoft.com/download/7/7/3/7737290f-98e8-45bf-9075-85cc6ae34bf1/VS80sp1-KB926748-X86-INTL.exe 8b9a0172efad64774aa122f29e093ad2043b308d + w_try $WINE "$W_CACHE"/vc2005expresssp1/VS80sp1-KB926748-X86-INTL.exe +} + +#---------------------------------------------------------------- + +w_metadata vc2005trial apps \ + title="MS Visual C++ 2005 Trial" \ + publisher="Microsoft" \ + year="2005" \ + media="download" \ + file1="En_vs_2005_vsts_180_Trial.img" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Visual Studio 8/Common7/IDE/devenv.exe" + +load_vc2005trial() +{ + w_call dotnet20 + + # Without mfc42.dll, pidgen.dll won't load, and the app claims "A trial edition is already installed..." + w_call mfc42 + + w_download http://download.microsoft.com/download/6/f/5/6f5f7a01-50bb-422d-8742-c099c8896969/En_vs_2005_vsts_180_Trial.img f66ae07618d67e693ca0524d3582208c20e07823 + + # Unpack ISO (how handy that 7z can do this!) + # Only the windows version of 7z can handle .img files? + WINETRICKS_OPT_SHAREDPREFIX=1 w_call 7zip + cd "$W_PROGRAMS_X86_UNIX"/7-Zip + w_try "$WINE" 7z.exe x -y -o"$W_TMP_WIN" "$W_CACHE_WIN\\vc2005trial\\En_vs_2005_vsts_180_Trial.img" + + cd "$W_TMP" + + # Sanity check... + w_verify_sha1sum 15433993ab7573c5154dbea2dcb65450f2adbf5c vs/wcu/runmsi.exe + + cd vs/Setup + w_ahk_do " + SetTitleMatchMode 2 + run setup.exe + winwait, Visual Studio, Setup is loading + if ( w_opt_unattended > 0 ) { + winwait, Visual Studio, Loading completed + controlclick, button2 + winwait, Visual Studio, Select features + controlclick, button38 + controlclick, button40 + winwait, Visual Studio, You have chosen + controlclick, button1 + winwait, Visual Studio, Select features + controlclick, button11 + } + ;this can take a while + winwait, Finish Page + if ( w_opt_unattended > 0 ) + controlclick, button2 + winwaitclose, Finish Page + " +} + +#---------------------------------------------------------------- + +w_metadata vc2008express apps \ + title="MS Visual C++ 2008 Express" \ + publisher="Microsoft" \ + year="2008" \ + media="download" \ + file1="VS2008ExpressENUX1397868.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Visual Studio 9.0/Common7/IDE/VCExpress.exe" + +load_vc2008express() +{ + w_call dotnet35 + + # This is the version without sp1 baked in. (sp1 requires dotnet35sp1, which doesn't work yet.) + w_download http://download.microsoft.com/download/8/B/5/8B5804AD-4990-40D0-A6AA-CE894CBBB3DC/VS2008ExpressENUX1397868.iso 76c6d28274a67741da720744026ea991a70867d1 + + # Unpack ISO + w_try_7z "$W_TMP" "$W_CACHE"/vc2008express/VS2008ExpressENUX1397868.iso + + # See also http://blogs.msdn.com/b/astebner/archive/2008/04/25/8425198.aspx + cd "$W_TMP"/VCExpress + w_try "$WINE" setup.exe $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata vc2010express apps \ + title="MS Visual C++ 2010 Express" \ + publisher="Microsoft" \ + year="2010" \ + media="download" \ + file1="VS2010Express1.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Visual Studio 10.0/Common7/IDE/VCExpress.exe" + +load_vc2010express() +{ + w_download http://download.microsoft.com/download/1/E/5/1E5F1C0A-0D5B-426A-A603-1798B951DDAE/VS2010Express1.iso adef5e361a1f64374f520b9a2d03c54ee43721c6 + + # Unpack ISO + w_try_7z "$W_TMP" "$W_CACHE"/vc2010express/VS2010Express1.iso + cd "$W_TMP"/VCExpress + + # dotnet40 leaves winver at win2k, which causes vc2010 to abort on + # start because it looks for c:\users\$LOGNAME\Application Data + w_set_winver winxp + + if w_workaround_wine_bug 12501 "Installing mspatcha to work around bug in SQL Server install" + then + w_call mspatcha + fi + + if w_workaround_wine_bug 34627 "Installing Visual C++ 2005 managed runtime to work around bug in SQL Server install" + then + w_call vcrun2005 + fi + + w_try $WINE setup.exe $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +w_metadata vlc apps \ + title="VLC media player 2.2.1" \ + publisher="videolan.org" \ + year="2015" \ + media="download" \ + file1="vlc-2.2.1-win32.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/VideoLAN/VLC/vlc.exe" \ + homepage="http://www.videolan.org/vlc/" + +load_vlc() +{ + w_download http://get.videolan.org/vlc/2.2.1/win32/vlc-2.2.1-win32.exe 4cbcea9764b6b657d2147645eeb5b973b642530e + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" $file1 ${W_OPT_UNATTENDED:+ /S} +} + +#---------------------------------------------------------------- + +w_metadata winamp apps \ + title="Winamp" \ + publisher="Radionomy (AOL (Nullsoft))" \ + year="2013" \ + media="download" \ + file1="winamp5666_full_all_redux.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Winamp/winamp.exe" \ + homepage="http://www.winamp.com" + +load_winamp() +{ + w_info "may send information while installing, see http://www.microsoft.com/security/portal/Threat/Encyclopedia/Entry.aspx?threatid=159633" + # 2014 winamp5621_full_emusic-7plus_en-us.exe afc172039db52fdc202114bec7bcf8b5bf2468bb + + w_download http://winampplugins.co.uk/Winamp/winamp5666_full_all_redux.exe 136314be0da42ed399b88a106cb1f43093e2c0c2 + cd "$W_CACHE/$W_PACKAGE" + if test $W_OPT_UNATTENDED + then + w_ahk_do " + SetWinDelay 500 + SetTitleMatchMode, 2 + Run $file1 + WinWait, Installer Language, Please select + Sleep 500 + ControlClick, Button1 ; OK + WinWait, Winamp Installer, Welcome to the Winamp installer + Sleep 500 + ControlClick, Button2 ; Next + WinWait, Winamp Installer, License Agreement + Sleep 500 + ControlClick, Button2 ; I Agree + WinWait, Winamp Installer, Choose Install Location + Sleep 500 + ControlClick, Button2 ; Next + WinWait, Winamp Installer, Choose Components + Sleep 500 + ControlClick, Button2 ; Next for Full install + WinWait, Winamp Installer, Choose Start Options + Sleep 500 + ControlClick, Button4 ; uncheck start menu entry + Sleep 500 + ControlClick, Button5 ; uncheck ql icon + Sleep 500 + ControlClick, Button6 ; uncheck deskto icon + Sleep 500 + ControlClick, Button2 ; Install + WinWait, Winamp Installer, Installation Complete + Sleep 500 + ControlClick, Button4 ; uncheck launch when complete + Sleep 500 + ControlClick, Button2 ; Finish + WinWaitClose + " + else + w_try "$WINE" "$file1" + fi +} + +#---------------------------------------------------------------- + +w_metadata wme9 apps \ + title="MS Windows Media Encoder 9 (broken in wine)" \ + publisher="Microsoft" \ + year="2002" \ + media="download" \ + file1="WMEncoder.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Windows Media Components/Encoder/wmenc.exe" + +load_wme9() +{ + if [ $W_ARCH = win64 ] + then + w_die "Installer doesn't support 64-bit architecture." + fi + # See also http://www.microsoft.com/downloads/details.aspx?FamilyID=5691ba02-e496-465a-bba9-b2f1182cdf24 + w_download http://download.microsoft.com/download/8/1/f/81f9402f-efdd-439d-b2a4-089563199d47/WMEncoder.exe 7a3f8781f3e5705651992ef0150ee30bc1295116 + + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" WMEncoder.exe $W_UNATTENDED_SLASH_Q +} + +#---------------------------------------------------------------- + +# helper - not useful by itself +load_wm9codecs() +{ + # Note: must install WMP9 or 10 first, or installer will complain and abort. + + # See http://www.microsoft.com/downloads/details.aspx?FamilyID=06fcaab7-dcc9-466b-b0c4-04db144bb601 + # Used by direct calls from load_wmp9, so have to specify cache directory. + # http://birds.camden.rutgers.edu/ + w_download_to wm9codecs http://birds.camden.rutgers.edu/WM9Codecs9x.exe 8b76bdcbea0057eb12b7966edab4b942ddacc253 + cd "$W_CACHE/wm9codecs" + w_set_winver win2k + w_try "$WINE" WM9Codecs9x.exe $W_UNATTENDED_SLASH_Q +} + +w_metadata wmp9 dlls \ + title="Windows Media Player 9" \ + publisher="Microsoft" \ + year="2003" \ + media="download" \ + file1="MPSetup.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN"/l3codeca.acm + +load_wmp9() +{ + w_skip_windows wmp9 && return + + # Not really expected to work well yet; see + # http://appdb.winehq.org/appview.php?versionId=1449 + + if [ $W_ARCH = win64 ] + then + w_die "Installer doesn't support 64-bit architecture." + fi + + w_call wsh57 + + w_set_winver win2k + + # See also http://www.microsoft.com/windows/windowsmedia/player/9series/default.aspx + w_download http://download.microsoft.com/download/1/b/c/1bc0b1a3-c839-4b36-8f3c-19847ba09299/MPSetup.exe 580536d10657fa3868de2869a3902d31a0de791b + + # remove builtin placeholders to allow update + rm -f "$W_SYSTEM32_DLLS"/wmvcore.dll "$W_SYSTEM32_DLLS"/wmp.dll + # need native wmp override to allow update and later checks to succeed + w_override_dlls native wmp + + # FIXME: should we override quartz? Builtin crashes when you play + # anything, but maybe that's bug 30557 and only affects new systems? + # Wine's pidgen is too stubby, crashes, see wine bug 31111 + w_override_app_dlls MPSetup.exe native pidgen + + cd "$W_CACHE"/"$W_PACKAGE" + w_try "$WINE" MPSetup.exe $W_UNATTENDED_SLASH_Q + + load_wm9codecs + + w_unset_winver +} + +#---------------------------------------------------------------- + +w_metadata wmp10 dlls \ + title="Windows Media Player 10" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + file1="MP10Setup.exe" \ + installed_file1="$W_SYSTEM32_DLLS_WIN/l3codecp.acm" + +load_wmp10() +{ + if [ $W_ARCH = win64 ] + then + w_die "Installer doesn't support 64-bit architecture. Use a 32-bit WINEPREFIX instead." + fi + + # FIXME: what versions of windows are really bundled with wmp10? + w_skip_windows wmp10 && return + + # See http://appdb.winehq.org/appview.php?iVersionId=3212 + w_call wsh57 + + # http://www.microsoft.com/downloads/en/details.aspx?FamilyID=b446ae53-3759-40cf-80d5-cde4bbe07999 + w_download http://download.microsoft.com/download/1/2/a/12a31f29-2fa9-4f50-b95d-e45ef7013f87/MP10Setup.exe 69862273a5d9d97b4a2e5a3bd93898d259e86657 + + # Crashes on exit, but otherwise ok; see http://bugs.winehq.org/show_bug.cgi?id=12633 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" MP10Setup.exe $W_UNATTENDED_SLASH_Q + + # Disable WMP's services, since they depend on unimplemented stuff, they trigger the GUI debugger several times + w_try_regedit /D "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Cdr4_2K" + w_try_regedit /D "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Cdralw2k" + + load_wm9codecs + + w_unset_winver +} + +#---------------------------------------------------------------- +# Benchmarks +#---------------------------------------------------------------- + +w_metadata 3dmark2000 benchmarks \ + title="3DMark2000" \ + publisher="MadOnion.com" \ + year="2000" \ + media="download" \ + file1="3dmark2000_v11_100308.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/MadOnion.com/3DMark2000/3DMark2000.exe" + +load_3dmark2000() +{ + # http://www.futuremark.com/download/3dmark2000/ + if ! test -f "$W_CACHE/$W_PACKAGE/3dmark2000_v11_100308.exe" + then + w_download http://www.ocinside.de/download/3dmark2000_v11_100308.exe b0400d59cfd45d8c8893d3d4edc58b6285ee1502 + fi + + w_try_unzip "$W_TMP/$W_PACKAGE" "$W_CACHE/$W_PACKAGE"/3dmark2000_v11_100308.exe + cd "$W_TMP/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run Setup.exe + WinWait Welcome + ;ControlClick Button1 ; Next + Sleep 1000 + Send {Enter} ; Next + WinWait License + ;ControlClick Button2 ; Yes + Sleep 1000 + Send {Enter} ; Yes + ;WinWaitClose ahk_class #32770 ; License + WinWait ahk_class #32770, Destination + ;ControlClick Button1 ; Next + Sleep 1000 + Send {Enter} ; Next + ;WinWaitClose ahk_class #32770 ; Destination + WinWait, Start + ;ControlClick Button1 ; Next + Sleep 1000 + Send {Enter} ; Next + WinWait Registration + ControlClick Button1 ; Next + WinWait Complete + Sleep 1000 + ControlClick Button1 ; Unclick View Readme + ;ControlClick Button4 ; Finish + Send {Enter} ; Finish + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata 3dmark2001 benchmarks \ + title="3DMark2001" \ + publisher="MadOnion.com" \ + year="2001" \ + media="download" \ + file1="3dmark2001se_330_100308.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/MadOnion.com/3DMark2001 SE/3DMark2001SE.exe" + +load_3dmark2001() +{ + # http://www.futuremark.com/download/3dmark2001/ + if ! test -f "$W_CACHE/$W_PACKAGE"/3dmark2001se_330_100308.exe + then + w_download http://www.ocinside.de/download/3dmark2001se_330_100308.exe 643bacbcc1615bb4f46d3b045b1b8d78371a6b54 + fi + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run 3dmark2001se_330_100308.exe + WinWait ahk_class #32770 ; welcome + if ( w_opt_unattended > 0 ) { + ControlClick Button2 ; Next + sleep 5000 + WinWait ahk_class #32770 ; License + ControlClick Button2 ; Next + WinWait ahk_class #32770, Destination + ControlClick Button1 ; Next + WinWait ahk_class #32770, Start + ControlClick Button1 ; Next + WinWait,, Registration + ControlClick Button2 ; Next + } + WinWait,, Complete + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; Unclick View Readme + ControlClick Button4 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata 3dmark03 benchmarks \ + title="3D Mark 03" \ + publisher="Futuremark" \ + year="2003" \ + media="manual_download" \ + file1="3DMark03_v360_1901.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Futuremark/3DMark03/3DMark03.exe" + +load_3dmark03() +{ + # http://www.futuremark.com/benchmarks/3dmark03/download/ + if ! test -f "$W_CACHE/$W_PACKAGE/3DMark03_v360_1901.exe" + then + w_download_manual http://www.futuremark.com/download/3dmark03/ 3DMark03_v360_1901.exe 46a439101ddbbe3c9563b5e9651cb61b46ce0619 + fi + + cd "$W_CACHE/$W_PACKAGE" + w_warn "Don't use mouse while this installer is running. Sorry..." + # This old installer doesn't seem to be scriptable the usual way, so spray and pray. + w_ahk_do " + SetTitleMatchMode, 2 + run 3DMark03_v360_1901.exe + WinWait 3DMark03 - InstallShield Wizard, Welcome + if ( w_opt_unattended > 0 ) { + WinActivate + Send {Enter} + Sleep 2000 + WinWait 3DMark03 - InstallShield Wizard, License + WinActivate + ; Accept license + Send a + Send {Enter} + Sleep 2000 + ; Choose Destination + Send {Enter} + Sleep 2000 + ; Begin install + Send {Enter} + ; Wait for install to finish + WinWait 3DMark03, Registration + ; Purchase later + Send {Tab} + Send {Tab} + Send {Enter} + } + WinWait, 3DMark03 - InstallShield Wizard, Complete + if ( w_opt_unattended > 0 ) { + ; Uncheck readme + Send {Space} + Send {Tab} + Send {Tab} + Send {Enter} + } + WinWaitClose, 3DMark03 - InstallShield Wizard, Complete + " +} + +#---------------------------------------------------------------- + +w_metadata 3dmark05 benchmarks \ + title="3D Mark 05" \ + publisher="Futuremark" \ + year="2005" \ + media="download" \ + file1="3dmark05_v130_1901.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Futuremark/3DMark05/3DMark05.exe" + +load_3dmark05() +{ + # http://www.futuremark.com/download/3dmark05/ + if ! test -f "$W_CACHE/$W_PACKAGE/3DMark05_v130_1901.exe" + then + w_download http://www.ocinside.de/download/3dmark05_v130_1901.exe 8ad6bc2917e22edf5fc95d1fa96cc82515093fb2 + fi + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + run 3DMark05_v130_1901.exe + WinWait ahk_class #32770, Welcome + if ( w_opt_unattended > 0 ) { + Send {Enter} + WinWait, ahk_class #32770, License + ControlClick Button1 ; Accept + ControlClick Button4 ; Next + WinWait, ahk_class #32770, Destination + ControlClick Button1 ; Next + WinWait, ahk_class #32770, Install + ControlClick Button1 ; Install + WinWait, ahk_class #32770, Purchase + ControlClick Button4 ; Later + } + WinWait, ahk_class #32770, Complete + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; Uncheck view readme + ControlClick Button3 ; Finish + } + WinWaitClose, ahk_class #32770, Complete + " + ARGS="" + if w_workaround_wine_bug 22392 + then + w_warn "You must run the app with the -nosysteminfo option to avoid a crash on startup" + ARGS="-nosysteminfo" + fi +} + +#---------------------------------------------------------------- + +w_metadata 3dmark06 benchmarks \ + title="3D Mark 06" \ + publisher="Futuremark" \ + year="2006" \ + media="manual_download" \ + file1="3DMark06_v121_installer.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Futuremark/3DMark06/3DMark06.exe" + +load_3dmark06() +{ + w_download_manual http://www.futuremark.com/support/downloads 3DMark06_v121_installer.exe a125a4b0a5649f848292f38cf424c672d8142058 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + run $file1 + WinWait ahk_class #32770, Welcome + if ( w_opt_unattended > 0 ) { + Send {Enter} + WinWait, ahk_class #32770, License + ControlClick Button1 ; Accept + ControlClick Button4 ; Next + WinWait, ahk_class #32770, Destination + ControlClick Button1 ; Next + WinWait, ahk_class #32770, Install + ControlClick Button1 ; Install + WinWait ahk_class OpenAL Installer + ControlClick Button2 ; OK + WinWait ahk_class #32770 + ControlClick Button1 ; OK + } + WinWait, ahk_class #32770, Complete + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; Uncheck view readme + ControlClick Button3 ; Finish + } + WinWaitClose, ahk_class #32770, Complete + " + + if w_workaround_wine_bug 24417 "Installing shader compiler..." + then + # "Demo" button doesn't work without this. d3dcompiler_43 related. + w_call d3dx9_28 + w_call d3dx9_36 + fi + + ARGS="" + if w_workaround_wine_bug 22392 + then + w_warn "You must run the app with the -nosysteminfo option to avoid a crash on startup" + ARGS="-nosysteminfo" + fi +} + +#---------------------------------------------------------------- + +w_metadata unigine_heaven benchmarks \ + title="Unigen Heaven 2.1 Benchmark" \ + publisher="Unigen" \ + year="2010" \ + media="manual_download" \ + file1="Unigine_Heaven-2.1.msi" + +load_unigine_heaven() +{ + # FIXME: use w_download_torrent() + w_download_manual http://unigine.com/download/torrents/Unigine_Heaven-2.1.msi.torrent Unigine_Heaven-2.1.msi 3d7b94a3734cdae85f98032b61668e743979c444 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run msiexec /i $file1 + if ( w_opt_unattended > 0 ) { + WinWait ahk_class MsiDialogCloseClass + Send {Enter} + WinWait ahk_class MsiDialogCloseClass, License + ControlClick Button1 ; Accept + ControlClick Button3 ; Accept + WinWait ahk_class MsiDialogCloseClass, Choose + ControlClick Button1 ; Typical + WinWait ahk_class MsiDialogCloseClass, Ready + ControlClick Button2 ; Install + ; FIXME: on systems with OpenAL already (Win7?), the next four lines + ; are not needed. We should somehow wait for either OpenAL window + ; *or* Completed window. + WinWait ahk_class OpenAL Installer + ControlClick Button2 ; OK + WinWait ahk_class #32770 + ControlClick Button1 ; OK + } + WinWait ahk_class MsiDialogCloseClass, Completed + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; Finish + Send {Enter} + } + winwaitclose + " +} + +#---------------------------------------------------------------- +# Games +#---------------------------------------------------------------- + +w_metadata algodoo_demo games \ + title="Algodoo Demo" \ + publisher="Algoryx" \ + year="2009" \ + media="download" \ + file1="Algodoo_1_7_1-Win32.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Algodoo/Algodoo.exe" + +load_algodoo_demo() +{ + w_download http://www.algodoo.com/download/Algodoo_1_7_1-Win32.exe caa73e73669a8787652a6bed123bbe2682152f12 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + ; This one's funny... on Wine, keyboard works once you click manually, but until then, only ControlClick seems to work. + run, Algodoo_1_7_1-Win32.exe + SetTitleMatchMode, 2 + winwait, Algodoo, Welcome + if ( w_opt_unattended > 0 ) { + ControlClick, TNewButton1 + winwait, Algodoo, License + ;send {Tab}a{Space}{Enter} + ControlClick, TNewRadioButton1 ; Accept + ControlClick, TNewButton2 ; Next + winwait, Algodoo, Destination + ;send {Enter} + ControlClick, TNewButton3 ; Next + winwait, Algodoo, Folder + ;send {Enter} + ControlClick, TNewButton4 ; Next + winwait, Algodoo, Select Additional Tasks + ;send {Enter} + ControlClick, TNewButton4 ; Next + winwait, Algodoo, Ready to Install + ;send {Enter} + ControlClick, TNewButton4 ; Next + } + winwait, Algodoo, Completing + if ( w_opt_unattended > 0 ) { + sleep 500 + send {Space}{Tab}{Space}{Tab}{Space}{Enter} ; decline to run app or view tutorials + } + WinWaitClose, Algodoo, Completing + " +} + +#---------------------------------------------------------------- + +w_metadata amnesia_tdd_demo games \ + title="Amnesia: The Dark Descent Demo" \ + publisher="Frictional Games" \ + year="2010" \ + media="manual_download" \ + file1="amnesia_tdd_demo_1.0.1.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Amnesia - The Dark Descent Demo/redist/Amnesia.exe" + +load_amnesia_tdd_demo() +{ + w_download_manual "http://www.amnesiagame.com/#demo" amnesia_tdd_demo_1.0.1.exe 0bf0bc6e9c8ea76f1c44582d9302a9b22d31d1b6 + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + Run, amnesia_tdd_demo_1.0.1.exe + if ( w_opt_unattended > 0 ) { + WinWait,Select Setup Language, language + ControlClick, TNewButton1 + WinWait, Amnesia - The Dark Descent Demo, Welcome + ControlClick, TNewButton1 + WinWait, Amnesia - The Dark Descent Demo, License + ControlClick, TNewRadioButton1 + ControlClick, TNewButton2 + WinWait, Amnesia - The Dark Descent Demo, installed? + ControlClick, TNewButton3 + WinWait, Folder Does Not Exist, created + ControlClick, Button1 + WinWait, Amnesia - The Dark Descent Demo, shortcuts + ControlClick, TNewButton4 + WinWait, Amnesia - The Dark Descent Demo, additional tasks + ControlClick, TNewButton4 + WinWait, Amnesia - The Dark Descent Demo, ready to begin installing + ControlClick, TNewButton4 + WinWait, Amnesia - The Dark Descent Demo, finished + ControlClick, TNewButton4 + WinWaitClose, Amnesia - The Dark Descent Demo, finished + } + " +} + +#---------------------------------------------------------------- + +w_metadata aoe3_demo games \ + title="Age of Empires III Trial" \ + publisher="Microsoft" \ + year="2005" \ + media="download" \ + file1="aoe3trial.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Games/Age of Empires III Trial/age3.exe" + +load_aoe3_demo() +{ + + w_download "http://download.microsoft.com/download/a/5/2/a525997e-8423-435b-b694-08118d235064/aoe3trial.exe" 2b0a123243092d79f910db5691d99d469f7c17c3 + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + run aoe3trial.exe + WinWait,Empires,Welcome + if ( w_opt_unattended > 0 ) { + sleep 1000 + winactivate ; else next button click ignored on vista? + Sleep 500 + ControlClick Button1 ; Next + WinWait,Empires,Please + Sleep 500 + ControlClick Button4 ; Next + WinWait,Empires,Complete + Sleep 500 + ControlClick Button4 ; Finish + } + WinWaitClose + " + + if w_workaround_wine_bug 24912 + then + # kill off lingering installer + w_ahk_do " + SetTitleMatchMode, 2 + WinKill,Empires + " + # or should we just do $WINESERVER -k, like fable_tlc does? + PID=`ps augxw | grep IDriver | grep -v grep | awk '{print $2}'` + kill $PID + fi +} + +#---------------------------------------------------------------- + +w_metadata aoe_demo games \ + title="Age of Empires Demo" \ + publisher="Microsoft" \ + year="1997" \ + media="download" \ + file1="MSAoE.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Games/Age of Empires Trial/empires.exe" + +load_aoe_demo() +{ + w_download http://download.microsoft.com/download/aoe/Trial/1.0/WIN98/EN-US/MSAoE.exe 23630a65ce4133038107f3175f8fc54a914bc2f3 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + run, MSAoE.exe + SetTitleMatchMode, 2 + winwait, Microsoft Age of Empires Trial Version + if ( w_opt_unattended > 0 ) { + sleep 1000 + ControlClick, Button1 + winwait, End User License Agreement + sleep 1000 + ControlClick, Button1 + winwait, Microsoft Age of Empires Trial Version, Setup will install + sleep 1000 + ControlClick Button2 + winwait, Microsoft Age of Empires Trial Version, Setup has successfully + sleep 1000 + ControlClick Button1 + } + WinWaitClose, Microsoft Age of Empires Trial Version + " +} + +#---------------------------------------------------------------- + +w_metadata acreedbro games \ + title="Assassin's Creed Brotherhood" \ + publisher="Ubisoft" \ + year="2011" \ + media="dvd" \ + file1="ACB.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Ubisoft/Assassin's Creed Brotherhood/AssassinsCreedBrotherhood.exe" + +load_acreedbro() +{ + w_mount ACB + w_read_key + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run ${W_ISO_MOUNT_LETTER}:setup.exe + winwait, Brotherhood, Choose + if ( w_opt_unattended > 0 ) { + WinActivate + send {Enter} + ;ControlClick, Button3 ; Accept default (english) + winwait, Brotherhood, Welcome + WinActivate + send {Enter} ; Next + winwait, Brotherhood, License + WinActivate + send a ; Agree + sleep 500 + send {Enter} ; Next + winwait, Brotherhood, begin + send {Enter} ; Install + } + winwait, Brotherhood, Finish + if ( w_opt_unattended > 0 ) { + ControlClick Button4 + send {Enter} ; Finish + } + WinWaitClose + " + + w_download http://static3.cdn.ubi.com/ac_brotherhood/ac_brotherhood_1.01_ww.exe a2b76f16616709cc16537b0e98faa4181ca904ce + + # FIXME: figure out why these executables don't exit, and do a proper workaround or fix + sleep 10 + if ps augxw | grep -i exe | egrep 'winemenubuilder.exe|setup.exe|PnkBstrA.exe | egrep -v egrep' + then + w_warn "Killing processes so patcher does not complain about game still running" + $WINESERVER -k + sleep 10 + fi + + w_info "Applying patch $W_CACHE/$W_PACKAGE/ac_brotherhood_1.01_ww.exe..." + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run ac_brotherhood_1.01_ww.exe + WinWait, Choose Setup Language, Select + if ( w_opt_unattended > 0 ) { + send {Enter} + winwait, Brotherhood 1.01, License + WinActivate + send a ; Agree + sleep 500 + send {Enter} ; Next + winwait, Brotherhood 1.01, Details + ControlClick Button1 ; Next + } + winwait, Brotherhood 1.01, Complete + if ( w_opt_unattended > 0 ) { + send {Enter} + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata atmosphir games \ + title="Atmosphir" \ + publisher="Minor Studios" \ + year="2011" \ + media="manual_download" \ + file1="Atmosphir Installer v1.0.0 fixed.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Minor Studios/Atmosphir/Atmosphir.exe" \ + homepage="http://www.atmosphir.com" + +load_atmosphir() +{ + w_download_manual http://download.cnet.com/Atmosphir/3000-7492_4-75335647.html "Atmosphir Installer v1.0.0 fixed.exe" 3ee46b45ea9a8e4a8888148556efb7e61882f7d0 + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + run Atmosphir Installer v1.0.0 fixed.exe + winwait, Atmosphir Setup, Welcome + if ( w_opt_unattended > 0 ) { + sleep 1000 + ControlClick Button2 + winwait, Atmosphir Setup, License Agreement + sleep 1000 + ControlClick Button2 + winwait, Atmosphir Setup, Choose Install Location + sleep 1000 + ControlClick Button2 + winwait, Atmosphir Setup, Choose Start Menu Folder + sleep 1000 + ControlClick Button2 + } + winwait, Atmosphir Setup, Installation complete + if ( w_opt_unattended > 0 ) { + sleep 1000 + send {Space} ; ControlClick Button4 # start + sleep 1000 + ControlClick Button2 + ; Let the launcher do the initial full download + winwait, Atmosphir Launcher + winwaitclose + ; then kill the game when it starts + winwait, Atmosphir + ;winkill ; doesn't work, game traps it + winclose + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata avatar_demo games \ + title="James Camerons Avatar: The Game Demo" \ + publisher="Ubisoft" \ + year="2009" \ + media="manual_download" \ + file1="Avatar_The_Game_Demo.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Ubisoft/Demo/James Cameron's AVATAR - THE GAME (Demo)/bin/AvatarDemo.exe" + +load_avatar_demo() +{ + w_download_manual http://www.fileplanet.com/207386/200000/fileinfo/Avatar:-The-Game-Demo Avatar_The_Game_Demo.exe 8d8e4c82312962706bd2620406d592db4f0fa9c1 + + if w_workaround_wine_bug 23094 "Installing Visual C++ 2005 runtime to avoid installer crash" + then + w_call vcrun2005 + fi + + cd "$W_TMP" + w_try_unrar "$W_CACHE/$W_PACKAGE/Avatar_The_Game_Demo.exe" + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 500 + run, setup.exe + winwait, Language + u = $W_OPT_UNATTENDED + if ( u > 0 ) { + WinActivate + controlclick, Button1 + winwait, AVATAR, Welcome + controlclick, Button1 + winwait, AVATAR, License + controlclick, Button5 + controlclick, Button2 + winwait, AVATAR, setup type + controlclick, Button2 + } + winwait AVATAR + if ( u > 0 ) { + ; Strange CRC error workaround. Will check this out. Stay tuned. + loop + { + ifwinexist, CRC Error + { + winactivate, CRC Error + controlclick, Button3, CRC Error ; ignore + } + ifwinexist, AVATAR, Complete + { + controlclick, Button4 + break + } + sleep 1000 + } + } + winwaitclose AVATAR + " +} + +#---------------------------------------------------------------- + +w_metadata bttf101 games \ + title="Back to the Future Episode 1" \ + publisher="Telltale" \ + year="2011" \ + media="manual_download" \ + file1="bttf_101_setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Telltale Games/Back to the Future The Game/Episode 1/BackToTheFuture101.exe" + +load_bttf101() +{ + w_download_manual http://www.telltalegames.com/bttf bttf_101_setup.exe 9b15e26d9b4d454f714d6559efe509562df9c10b + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run, bttf_101_setup.exe + winwait, Back to the Future, Welcome + if ( w_opt_unattended > 0 ) { + ControlClick, Button2 ; Next + winwait, Back to the Future, Checking DirectX + ControlClick, Button5 ; Don't check + ControlClick, Button2 ; Next + winwait, Back to the Future, License + ControlClick, Button2 ; Agree + winwait, Back to the Future, Location + ControlClick, Button2 ; Install + } + winwait, Back to the Future, has been installed + if ( w_opt_unattended > 0 ) { + ControlClick Button4 ; Don't start now + ControlClick Button2 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata bioshock_demo games \ + title="Bioshock Demo" \ + publisher="2K Games" \ + year="2007" \ + media="download" \ + file1="nzd_BioShockPC.zip" \ + installed_exe1="$W_PROGRAMS_X86_WIN/2K Games/BioShock Demo/Builds/Release/Bioshock.exe" + +load_bioshock_demo() +{ + w_download http://us.download.nvidia.com/downloads/nZone/demos/nzd_BioShockPC.zip 7a19186602cec5210e4505b58965e8c04945b3cf + + w_info "Unzipping demo, installer will start in about 30 seconds." + w_try unzip "$W_CACHE/$W_PACKAGE/nzd_BioShockPC.zip" -d "$W_TMP/$W_PACKAGE" + cd "$W_TMP/$W_PACKAGE/BioShock PC Demo" + + w_ahk_do " + SetTitleMatchMode, 2 + run setup.exe + winwait, BioShock Demo - InstallShield Wizard, Choose Setup Language + if ( w_opt_unattended > 0 ) { + sleep 2000 + ControlClick, Button3 + ControlClick, Button3 + winwait, BioShock Demo - InstallShield Wizard, Welcome + sleep 1000 + ControlClick, Button1 + winwait, BioShock Demo - InstallShield Wizard, Please read + sleep 1000 + ControlClick, Button5 + sleep 1000 + ControlClick, Button2 + winwait, BioShock Demo - InstallShield Wizard, Select the setup type + sleep 1000 + ControlClick, Button2 + winwait, BioShock Demo - InstallShield Wizard, Click Install to begin + ControlClick, Button1 + } + winwait, BioShock Demo - InstallShield Wizard, The InstallShield Wizard has successfully installed BioShock + if ( w_opt_unattended > 0 ) { + sleep 1000 + ControlClick, Button2 ; don't launch + ControlClick, Button6 ; don't show readme + send {Enter} ; finish + } + winwaitclose + sleep 3000 ; wait for splash screen to close + " +} + +#---------------------------------------------------------------- + +w_metadata bioshock2 games \ + title="Bioshock 2" \ + publisher="2K Games" \ + year="2010" \ + media="dvd" \ + file1="BIOSHOCK_2.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/2K Games/BioShock 2/SP/Builds/Binaries/Bioshock2Launcher.exe" \ + installed_exe2="$W_PROGRAMS_X86_WIN/2K Games/BioShock 2/MP/Builds/Binaries/Bioshock2Launcher.exe" + +load_bioshock2() +{ + w_mount BIOSHOCK_2 + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run ${W_ISO_MOUNT_LETTER}:setup.exe + if ( w_opt_unattended > 0 ) { + winwait BioShock 2, Language + controlclick Button3 + winwait BioShock 2, Welcome + controlclick Button1 ; Accept + winwait BioShock 2, License + controlclick Button3 ; Accept + sleep 500 + controlclick Button1 ; Next + winwait BioShock 2, Setup Type + controlclick Button4 ; Next + winwait BioShock 2, Ready to Install + controlclick Button1 ; Install + } + winwait BioShock 2, Complete + if ( w_opt_unattended > 0 ) { + controlclick Button4 ; Finish + } + " +} + +#---------------------------------------------------------------- + +w_metadata bfbc2 games \ + title="Battlefield Bad Company 2" \ + publisher="EA" \ + year="2010" \ + media="dvd" \ + file1="BFBC2.iso" + +load_bfbc2() +{ + # Title of installer window gets the TM symbol wrong, even in utf8 locales. + # Is it like that in Windows, too? + w_mount BFBC2 + w_read_key + w_ahk_do " + SetTitleMatchMode, 2 + run ${W_ISO_MOUNT_LETTER}:setup.exe + winwait, Bad Company, English + sleep 500 + ControlClick, Next, Bad Company + winwait, Bad Company, Registration Code + sleep 500 + send {RAW}$W_KEY + ControlClick, Next, Bad Company, Registration Code + winwait, Bad Company, Setup Wizard will install + sleep 500 + ControlClick, Button1, Bad Company, Setup Wizard + winwait, Bad Company, License Agreement + sleep 500 + ControlClick, Button1, Bad Company, License Agreement + ControlClick, Button3, Bad Company, License Agreement + winwait, Bad Company, End-User License Agreement + sleep 500 + ControlClick, Button1, Bad Company, License Agreement + ControlClick, Button3, Bad Company, License Agreement + winwait, Bad Company, Destination Folder + sleep 500 + ControlClick, Button1, Bad Company, Destination Folder + winwait, Bad Company, Ready to install + sleep 500 + ControlClick, Install, Bad Company, Ready to install + winwait, Authenticate Battlefield + sleep 500 + ControlClick, Disc authentication, Authenticate Battlefield + ControlClick, Button4, Authenticate Battlefield + winwait, Bad Company, PunkBuster + sleep 500 + ControlClick, Button4, Bad Company, PunkBuster + ControlClick, Finish, Bad Company + winwaitclose + " + + w_warn "Patching to latest version..." + + cd "$W_PROGRAMS_X86_UNIX/Electronic Arts/Battlefield Bad Company 2" + w_ahk_do " + SetTitleMatchMode, 2 + run, BFBC2Updater.exe + winwait, Updater, have to update to + sleep 500 + ControlClick, Yes, Updater, have to update + winwait, Updater, successfully updated + sleep 500 + ControlClick,No, Updater, successfully updated ; Button2 + " + + if w_workaround_wine_bug 22762 + then + # FIXME: does this directory name change in win7? + cd "$W_DRIVE_C/users/$LOGNAME/My Documents" + if test -f BFBC2/settings.ini + then + mv BFBC2/settings.ini BFBC2/oldsettings.ini + sed 's,DxVersion=auto,DxVersion=9,; + s,Fullscreen=true,Fullscreen=false,' BFBC2/oldsettings.ini > BFBC2/settings.ini + else + mkdir -p BFBC2 + echo "[Graphics]" > BFBC2/settings.ini + echo "DxVersion=9" >> BFBC2/settings.ini + fi + fi + + if w_workaround_wine_bug 22961 + then + w_warn 'If the game says "No CD/DVD error", try "sudo mount -o remount,unhide,uid=`uid -u`". See http://bugs.winehq.org/show_bug.cgi?id=22961 for more info.' + fi +} + +#---------------------------------------------------------------- + +w_metadata bladekitten_demo games \ + title="Blade Kitten Demo" \ + publisher="Krome Studios" \ + year="2010" \ + media="manual_download" \ + file1="BladeKittenDemoInstall.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Krome Studios/Blade Kitten Demo/BladeKitten_Demo.exe" + +load_bladekitten_demo() +{ + w_download_manual http://news.bigdownload.com/2010/09/23/download-blade-kitten-demo BladeKittenDemoInstall.exe d3568f94c1ce284b7381e457e9497065bd45001d + + cp "$W_CACHE/$W_PACKAGE"/BladeKittenDemoInstall.exe "$W_TMP" + cd "$W_TMP" + w_ahk_do " + ; This script always gives full window title, so no need to set a different title match mode + run BladeKittenDemoInstall.exe + WinWait Blade Kitten Demo Install Package + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button2 ; Install + WinWait Blade Kitten Demo, Next + Sleep 500 + ControlClick Button1 + WinWait Blade Kitten Demo, Cost + Sleep 500 + ControlClick Button1 ; Next + WinWait Blade Kitten Demo, ready + Sleep 500 + ControlClick Button1 ; Next + ; Note - in older versions of wine, the directx installer may take 6-10 minutes at this point + } + WinWaitClose + WinWait Blade Kitten Demo, Complete + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button1 ; Close + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata cnc_tiberian_sun games \ + title="Command and Conquer: Tiberian Sun (2010 edition)" \ + publisher="EA" \ + year="1999" \ + media="download" \ + file1="OfficialCnCTiberianSun.rar" \ + installed_exe1="$W_PROGRAMS_X86_WIN\\EA Games\\Command & Conquer The First Decade\\Command & Conquer(tm) Tiberian Sun(tm)\\SUN\\Game.exe" + +load_cnc_tiberian_sun() +{ + w_download http://lvlt.bioware.cdn.ea.com/u/f/eagames/cnc3/cnc3tv/Classic/$file1 591aabd639fb9f2d2476a2150f3c00b1162674f5 + + cd "$W_PROGRAMS_X86_UNIX" + # FIXME: we need a progress indicator when unpacking large archives + w_info "Unpacking rar file. This will take a minute." + w_try_unrar "$W_CACHE/$W_PACKAGE/$file1" +} + +#---------------------------------------------------------------- + +w_metadata cnc3_demo games \ + title="Command and Conquer 3 Demo" \ + publisher="EA" \ + year="2007" \ + media="download" \ + file1="CnC3Demo.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/Command & Conquer 3 Tiberium Wars Demo/CNC3Demo.exe" + +load_cnc3_demo() +{ + w_download "http://largedownloads.ea.com/pub/demos/CommandandConquer3/CnC3Demo.exe" f6af21eba2d17eb6d8bb6a131b501b41c3a7eaf7 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, CnC3Demo.exe + winwait, Conquer 3, free space to install + if ( w_opt_unattended > 0 ) { + controlclick, button1 + winwait, WinZip, After installation + controlclick, button1 + winwait, Conquer 3, InstallShield + controlclick, button1 + winwait, Conquer 3, license + controlclick, button3 + controlclick, button5 + winwait, Conquer 3, setup type + controlclick, button5 + winwait, Conquer 3, EA Link + controlclick, button1 + winwait, Conquer 3, GameSpy + controlclick, button1 + } + winwait, Conquer 3, Launch the program + if ( w_opt_unattended > 0 ) + controlclick, button1 + + winwaitclose, Conquer 3, Launch the program + " +} + +#---------------------------------------------------------------- + +w_metadata cnc_redalert3_demo games \ + title="Command & Conquer Red Alert 3 Demo" \ + publisher="EA" \ + year="2008" \ + media="manual_download" \ + file1="RedAlert3Demo.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/Red Alert 3 Demo/RA3Demo.exe" + +load_cnc_redalert3_demo() +{ + w_download_manual 'http://www.fileplanet.com/194888/190000/fileinfo/Command-&-Conquer:-Red-Alert-3-Demo' RedAlert3Demo.exe f909b87cc12e386a51be51ede708634348c8af48 + + cd "$W_CACHE/$W_PACKAGE" + if test ! "$W_OPT_UNATTENDED" + then + w_try "$WINE" $file1 + else + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run $file1 + winwait, Demo, readme + send {enter} ; Install button + winwait, Demo, Agreement + ControlFocus, TNewCheckListBox1, accept + send {space} ; accept license + sleep 1000 + send N ; Next + winwait, Demo, Agreement ; DirectX + ControlFocus, TNewCheckListBox1, accept + send {space} ; accept license + sleep 1000 + send N ; Next + winwait, Demo, Next + send N ; Next + winwait, Demo, Install + send {enter} ; Really install + winwait, Demo, Finish + send F ; finish + WinWaitClose + " + fi +} + +#---------------------------------------------------------------- + +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=9320 +w_metadata blobby_volley games \ + title="Blobby Volley" \ + publisher="Daniel Skoraszewsky" \ + year="2000" \ + media="manual_download" \ + file1="blobby.zip" \ + installed_exe1="c:/BlobbyVolley/volley.exe" + +load_blobby_volley() +{ + w_download_manual http://www.chip.de/downloads/Blobby-Volley_12990993.html blobby.zip c7057c77a5009a88d9d877e17a63b5536ebeb177 + w_try_unzip "$W_DRIVE_C/BlobbyVolley" "$W_CACHE/$W_PACKAGE"/blobby.zip +} + +#---------------------------------------------------------------- + +w_metadata cim_demo games \ + title="Cities In Motion Demo" \ + publisher="Paradox Interactive" \ + year="2010" \ + media="manual_download" \ + file1="cim-demo-1-0-8.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Cities In Motion Demo/Cities In Motion.exe" + +load_cim_demo() +{ + # 29 Mar 2011 d40408b59bc0e6e33b564e9bbb55dbab6c44c630, Inno Setup installer + #w_download http://www.pcgamestore.com/games/cities-in-motion-nbsp/trial/cim-demo-1-0-8.exe d40408b59bc0e6e33b564e9bbb55dbab6c44c630 + w_download_manual http://www.fileplanet.com/218762/210000/fileinfo/Cities-in-Motion-Demo cim-demo-1-0-8.exe d40408b59bc0e6e33b564e9bbb55dbab6c44c630 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" cim-demo-1-0-8.exe ${W_OPT_UNATTENDED:+ /sp- /silent /norestart} +} + +#---------------------------------------------------------------- + +w_metadata cod_demo games \ + title="Call of Duty demo" \ + publisher="Activision" \ + year="2003" \ + media="manual_download" \ + file1="call_of_duty_demo.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Call of Duty Single Player Demo/CoDSP.exe" + +load_cod_demo() +{ + w_download_manual http://www.gamefront.com/files/968870/call_of_duty_demo_exe Call_Of_Duty_Demo.exe 1c480a1e64a80f7f97fd0acd9582fe190c64ad8e + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run Call_Of_Duty_Demo.exe + WinWait,Call of Duty Single Player Demo,Welcome + if ( w_opt_unattended > 0 ) { + sleep 1000 + ControlClick Button1 ; next + WinWait,Call of Duty Single Player Demo,License + sleep 1000 + WinActivate + send A ; I Agree + WinWait,Call of Duty Single Player Demo,System + sleep 1000 + send n ; Next + WinWait,Call of Duty Single Player Demo,Location + sleep 1000 + send {Enter} + WinWait,Call of Duty Single Player Demo,Select + sleep 1000 + send n + WinWait,Call of Duty Single Player Demo,Start + sleep 1000 + send i ; Install + WinWait,Create Shortcut + sleep 1000 + send n ; No + } + WinWait,Call of Duty Single Player Demo, Complete + if ( w_opt_unattended > 0 ) { + sleep 1000 + send {Enter} ; Finish + } + WinWaitClose + " + + if w_workaround_wine_bug 21558 + then + # Work around a buffer overflow - not really Wine's fault + setvar="@if not defined %__GL_ExtensionStringVersion% then echo \"If you get a buffer overflow error, set __GL_ExtensionStringVersion=17700 before starting Wine. See http://bugs.winehq.org/show_bug.cgi?id=21558.\"" + else + setvar= + fi +} + +#---------------------------------------------------------------- + +w_metadata cod1 games \ + title="Call of Duty" \ + publisher="Activision" \ + year="2003" \ + media="dvd" \ + file1="CoD1.iso" \ + file2="CoD2.iso" + +load_cod1() +{ + # FIXME: port load_harder from winetricks and use it when caching first disc + w_mount CoD1 + + w_read_key + + __GL_ExtensionStringVersion=17700 w_ahk_do " + SetTitleMatchMode, 2 + run ${W_ISO_MOUNT_LETTER}:setup.exe + WinWait, CD Key, enter + if ( w_opt_unattended > 0 ) { + send {Raw}$W_KEY + ControlClick Button1 + WinWait, CD Key, valid + ControlClick Button1 + WinWait, Call of Duty, Welcome + ControlClick Button1 + WinWait, Call of Duty, License + ControlClick Button3 + WinWait, Call of Duty, Minimum + ControlClick Button4 + WinWait, Call of Duty, Location + ControlClick Button1 + WinWait, Call of Duty, Folder + ControlClick Button1 + WinWait, Call of Duty, Start + ControlClick Button1 + } + WinWait, Insert CD, Please insert the Call of Duty CD 2 + " + + "$WINE" eject ${W_ISO_MOUNT_LETTER}: + w_mount CoD2 + + w_ahk_do " + SetTitleMatchMode, 2 + if ( w_opt_unattended > 0 ) { + Send {Enter} ;continue installation + } + WinWait, Insert CD, Please insert the Call of Duty CD 1 + " + + "$WINE" eject ${W_ISO_MOUNT_LETTER}: + w_mount CoD1 + + w_ahk_do " + SetTitleMatchMode, 2 + if ( w_opt_unattended > 0 ) { + Send {Enter} ;finalize install + WinWait, Create Shortcut, Desktop + ControlClick Button1 + WinWait, DirectX, Call ;directx 9 + ControlClick Button6 + ControlClick Button1 + WinWait, Confirm DX settings, Are + ControlClick Button2 + } + ; handle crash here + WinWait, Installation Complete, Congratulations! + if ( w_opt_unattended > 0 ) { + ControlClick Button1 + } + WinWaitClose + " + "$WINE" eject ${W_ISO_MOUNT_LETTER}: + + if w_workaround_wine_bug 21558 + then + # Work around a buffer overflow - not really Wine's fault + setvar="@if not defined %__GL_ExtensionStringVersion% then echo \"If you get a buffer overflow error, set __GL_ExtensionStringVersion=17700 before starting Wine. See http://bugs.winehq.org/show_bug.cgi?id=21558.\"" + else + setvar= + fi + w_warn "This game is copy-protected, and requires the real disc in a real drive to run." +} + +#---------------------------------------------------------------- + +w_metadata cod4mw_demo games \ + title="Call of Duty 4 Modern Warfare" \ + publisher="Activision" \ + year="2007" \ + media="manual_download" \ + file1="CoD4MWDemoSetup_v2.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Activision/Call of Duty 4 - Modern Warfare Demo/iw3sp.exe" + +load_cod4mw_demo() +{ + w_download http://download.cnet.com/Call-of-Duty-4-Modern-Warfare/3000-7441_4-11277584.html CoD4MWDemoSetup_v2.exe 690a5f789a44437ed10784acfdd6418ca4a21886 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, CoD4MWDemoSetup_v2.exe + WinWait,Modern Warfare,Welcome + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button1 ; Next + WinWait,Modern Warfare, License + Sleep 500 + ControlClick Button5 ; accept + Sleep 2000 + ControlClick Button2 ; Next + WinWait,Modern Warfare, System Requirements + Sleep 500 + ControlClick Button1 ; Next + Sleep 500 + ControlClick Button4 ; Next + WinWait,Modern Warfare, Typical + Sleep 500 + ControlClick Button4 ; License + Sleep 500 + ControlClick Button1 ; Next + WinWait,Question, shortcut + Sleep 500 + ControlClick Button1 ; Yes + WinWait,Microsoft DirectX Setup, license + Sleep 500 + ControlClick Button1 ; Yes + WinWait,Modern Warfare, finished + Sleep 500 + ControlClick Button1 ; Finished + } + WinWaitClose,WinZip Self-Extractor - CoD4MWDemoSetup_v2 + " +} + +#---------------------------------------------------------------- + +w_metadata cod5_waw games \ + title="Call of Duty 5: World at War" \ + publisher="Activision" \ + year="2008" \ + media="dvd" \ + file1="5330161c7960f0770e6b05f498ab9fd13be4cfad.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Activision/Call of Duty - World at War/CoDWaW.exe" + +load_cod5_waw() +{ + w_mount CODWAW + + w_read_key + + w_ahk_do " + SetTitleMatchMode, 2 + run, ${W_ISO_MOUNT_LETTER}:setup.exe + winwait, Call of Duty, Key Code + sleep 1000 + Send $W_KEY + sleep 1000 + ControlClick, Button1, Call of Duty, Key Code + winwait, Key Code Check + sleep 1000 + controlclick, Button1, Key Code Check + winwait, Call of Duty, License Agreement + sleep 1000 + controlclick, Button5, Call of Duty, License Agreement + sleep 1000 + controlclick, Button2, Call of Duty, License Agreement + ; It wants to install PunkBuster here...OH BOY! Luckily, we can say no (see below) + winwait, PunkBuster, Anti-Cheat software system + sleep 1000 + controlclick, Button1, PunkBuster, Anti-Cheat software system + winwait, Call of Duty, install PunkBuster + sleep 1000 + ; Punkbuster: both are scripted below, so you can toggle which one you want. + ; No: + ; controlclick, Button2, Call of Duty, install PunkBuster + ; Yes: + controlclick, Button1, Call of Duty, install PunkBuster + winwait, PunkBuster, License + sleep 1000 + controlclick, Button5, PunkBuster, License + sleep 1000 + controlclick, Button2, PunkBuster, License + ; /end punkbuster + winwait, Call of Duty, Minimum System + sleep 1000 + controlclick, Button1, Call of Duty, Minimum System + winwait, Call of Duty, Setup Type + sleep 1000 + controlclick, Button1, Call of Duty, Setup Type + ; Exits silently after install + ; Need to wait here else next verb will run before this one is done + winwaitclose, Call of Duty + " + + # FIXME: Install latest updates + w_warn "This game is copy-protected, and requires the real disc in a real drive to run." +} + +#---------------------------------------------------------- + +w_metadata cojbib_demo games \ + title="Call of Juarez: Bound in Blood Demo" \ + publisher="Ubisoft" \ + year="2009" \ + media="manual_download" \ + file1="CoJ2PC_20090713_DEMO_16_buy_now_INSTALLER.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Ubisoft/Demo/Techland/Call of Juarez - Bound in Blood SP Demo/CoJBiBDemo_x86.exe" + +load_cojbib_demo() +{ + w_download_manual http://www.gamefront.com/files/14274183/CoJ2PC-20090713-DEMO-16-buy-now-INSTALLER.exe/ CoJ2PC_20090713_DEMO_16_buy_now_INSTALLER.exe 6426101f6c77bacd57c8449b12a3c76db7f761f0 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode 2 + SetWinDelay 500 + run CoJ2PC_20090713_DEMO_16_buy_now_INSTALLER.exe + winwait Setup, language + if ( w_opt_unattended > 0 ) { + controlclick button1 ; next + winwait Call of Juarez, Welcome + controlclick button1 ; next + winwait Call of Juarez, License + controlclick button2 ; yes + winwait Call of Juarez, Location + controlclick button1 ; next + winwait Call of Juarez, Start + controlclick button1 ; next + } + winwait Call of Juarez, Complete + if ( w_opt_unattended > 0 ) + controlclick button2 ; next + + winwaitclose Call of Juarez + " +} + +#---------------------------------------------------------------- + +w_metadata civ4_demo games \ + title="Civilization IV Demo" \ + publisher="Firaxis Games" \ + year="2005" \ + media="manual_download" \ + file1="Civilization4_Demo.zip" \ + installed_file1="$W_PROGRAMS_X86_WIN/Firaxis Games/Sid Meier's Civilization 4 Demo/Civilization4.exe" + +load_civ4_demo() +{ + w_download_manual http://download.cnet.com/Civilization-IV-demo/3000-7489_4-10465206.html Civilization4_Demo.zip b54f1e5d0a1c2d1ef456d0c20098c23bbb6a0ea7 + + w_try_unzip "$W_TMP" "$W_CACHE/$W_PACKAGE"/Civilization4_Demo.zip + cd "$W_TMP/$W_PACKAGE" + chmod +x setup.exe + w_ahk_do " + SetTitleMatchMode, 2 + run, setup.exe + winwait, Choose Setup Language + if ( w_opt_unattended > 0 ) { + sleep 1000 + Send {enter} + winwait, Civilization 4, Welcome + ControlClick &Next >, Civilization 4 + winwait, Civilization 4, I &accept the terms of the license agreement + ControlClick I &accept, Civilization 4 + ControlClick &Next >, Civilization 4 + winwait, Civilization 4, Express Install + ControlClick &Next >, Civilization 4 + winwait, Civilization 4, begin installation + ControlClick &Install, Civilization 4 + winwait, Civilization 4, InstallShield Wizard Complete + ControlClick Finish, Civilization 4 + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata crayonphysics_demo games \ + title="Crayon Physics Deluxe demo" \ + publisher="Kloonigames" \ + year="2011" \ + media="download" \ + file1="crayon_release52demo.exe" \ + installed_exe1="$W_PROGRAMS_WIN/Crayon Physics Deluxe Demo/crayon.exe" \ + homepage="http://crayonphysics.com" + +load_crayonphysics_demo() +{ + w_download http://crayonphysicsdeluxe.s3.amazonaws.com/crayon_release52demo.exe 4ffd64c630f69e7cf024ef946c2c64c8c4ce4eac + # Inno Setup installer + w_try "$WINE" "$W_CACHE/$W_PACKAGE/$file1" ${W_OPT_UNATTENDED:+ /sp- /silent /norestart} +} + +#---------------------------------------------------------------- + +w_metadata crysis2 games \ + title="Crysis 2" \ + publisher="EA" \ + year="2011" \ + media="dvd" \ + file1="Crysis2.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/Electronic Arts/Crytek/Crysis 2/bin32/Crysis2.exe" + +load_crysis2() +{ + w_mount "Crysis 2" + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay, 1000 + run ${W_ISO_MOUNT_LETTER}:EASetup.exe + if ( w_opt_unattended > 0 ) { + Loop { + ; On Windows, this window does not pop up + ifWinExist, Microsoft Visual C++ 2008 Redistributable Setup + { + winwait, Microsoft Visual C++ 2008 Redistributable Setup + controlclick, Button12 ; Next + winwait, Visual C++, License + controlclick, Button11 ; Agree + controlclick, Button8 ; Install + winwait, Setup, configuring + winwaitclose + winwait, Visual C++, Complete + controlclick, Button2 ; Finish + break + } + ifWinExist, Setup, Please read the End User + { + break + } + sleep 1000 + } + winwait, Setup, Please read the End User + controlclick, Button1 ; accept + sleep 500 + ;controlclick, Button3 ; next + send {Enter} + ; Again for DirectX + winwait, Setup, Please read the following End + ;controlclick, Button1 ; accept + send a + sleep 1000 + ;controlclick, Button3 ; next + send {Enter} + winwait,Setup, Ready to install + controlclick, Button1 + } + winwait, Setup, Click the Finish button + if ( w_opt_unattended > 0 ) { + controlclick, Button5 ; Don't install EA Download Manager + controlclick, Button1 ; Finish + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata csi6_demo games \ + title="CSI: Fatal Conspiracy Demo" \ + publisher="Ubisoft" \ + year="2010" \ + media="manual_download" \ + file1="CSI6_PC_Demo_05.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Ubisoft/Telltale Games/CSI - Fatal Conspiracy Demo/CSI6Demo.exe" + +load_csi6_demo() +{ + w_download_manual http://www.fileplanet.com/217175/download/CSI:-Fatal-Conspiracy-Demo CSI6_PC_Demo_05.exe 28473b4dc9760b659f24a397192b74d170b593bb + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run, CSI6_PC_Demo_05.exe + winwait, Installer Language, Please select + if ( w_opt_unattended > 0 ) { + ControlClick, Button1 ; Accept default (english) + ;send {Enter} ; Accept default (english) + winwait, CSI - Fatal Conspiracy Demo Setup + send {Enter} ; Next + winwait, CSI - Fatal Conspiracy Demo Setup, License + send {Enter} ; Agree + winwait, CSI - Fatal Conspiracy Demo Setup, Location + send {Enter} ; Install + } + winwait, CSI - Fatal Conspiracy Demo Setup, Finish + if ( w_opt_unattended > 0 ) { + ControlClick Button4 + send {Enter} ; Finish + WinWaitClose + } + " +} + +#---------------------------------------------------------------- + +w_metadata darknesswithin2_demo games \ + title="Darkness Within 2 Demo" \ + publisher="Zoetrope Interactive" \ + year="2010" \ + media="manual_download" \ + file1="DarknessWithin2Demo.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Iceberg Interactive/Darkness Within 2 Demo/DarkLineage.exe" + +load_darknesswithin2_demo() +{ + w_download_manual http://www.bigdownload.com/games/darkness-within-2-the-dark-lineage/pc/darkness-within-2-the-dark-lineage-demo DarknessWithin2Demo.exe + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, DarknessWithin2Demo.exe + winwait, Darkness Within, will install + if ( w_opt_unattended > 0 ) { + ControlClick, TNewButton1 + winwait, Darkness, License + ControlClick, TNewRadioButton1 + ControlClick, TNewButton2 + winwait, Darkness, Location + ControlClick, TNewButton3 + winwait, Darkness, shortcuts + ControlClick, TNewButton4 + winwait, Darkness, additional + ControlClick, TNewButton4 + winwait, Darkness, Ready to Install + ControlClick, TNewButton4 + winwait, PhysX, License + ControlClick, Button3 + ControlClick, Button4 + winwait, PhysX, successfully + ControlClick, Button1 + } + winwait, Darkness, Setup has finished + if ( w_opt_unattended > 0 ) { + ControlClick, TNewListBoxButton1 + ControlClick, TNewButton4 + } + winwaitclose, Darkness, Setup has finished + " + + if w_workaround_wine_bug 23041 + then + w_call d3dx9_36 + fi +} + +#---------------------------------------------------------------- + +w_metadata darkspore games \ + title="Darkspore" \ + publisher="EA" \ + year="2011" \ + media="dvd" \ + file1="DARKSPORE.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/Darkspore/DarksporeBin/Darkspore.exe" \ + homepage="http://darkspore.com/" + +load_darkspore() +{ + # Mount disc, verify that expected file is present + w_mount DARKSPORE Darkspore.ico + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run ${W_ISO_MOUNT_LETTER}:setup.exe + if ( w_opt_unattended > 0 ) { + winwait, Choose Setup Language + controlclick, Button1 ; ok (accept default, English) + winwait, InstallShield Wizard, Welcome + controlclick, Button1 ; Next + winwait, InstallShield Wizard, License Agreement + controlclick, Button3 ; Accept + sleep 1000 + controlclick, Button1 ; Next + winwait, InstallShield Wizard, Select Features + controlclick, Button5 ; Next + winwait, InstallShield Wizard, Ready to Install the Program + controlclick, Button1 ; Install + winwait, DirectX + controlclick, Button1 ; Accept + sleep 1000 + controlclick, Button4 ; Next + winwait, DirectX, DirectX setup + controlclick, Button4 + winwait, DirectX, components installed + controlclick, Button5 ; Finish + } + winwait, InstallShield Wizard, You are now ready + if ( w_opt_unattended > 0 ) { + controlclick, Button1 ; Uncheck View Readme.txt + controlclick, Button4 ; Finish + } + WinWaitClose, InstallShield Wizard + " +} + +#---------------------------------------------------------------- + +w_metadata dcuo games \ + title="DC Universe Online" \ + publisher="EA" \ + year="2011" \ + media="dvd" \ + file1="DCUO - Disc 1.iso" \ + file2="DCUO - Disc 2.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Sony Online Entertainment/Installed Games/DC Universe Online Live/LaunchPad.exe" + +load_dcuo() +{ + # The installer would take care of this, but let's do it first + w_call flash + + w_mount "DCUO - Disc 1" + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run, ${W_ISO_MOUNT_LETTER}:setup.exe + if ( w_opt_unattended > 0 ) { + winwait, DC Universe, Anti-virus + ControlClick, Button1 ; next + winwait, DC Universe, License + ControlClick, Button5 ; accept + sleep 500 + ControlClick, Button2 ; next + winwait, DC Universe, Shortcut + ControlClick, Button3 ; next + Loop + { + IfWinExist, DC Universe, not enough space + { + exit 1 ; dang, have to quit + } + IfWinExist, DC Universe, Ready + { + break + } + Sleep 1000 + } + winwait, DC Universe, Ready + ControlClick, Button1 ; next + } + winwait, Setup Needs The Next Disk, Please insert disk 2 + " + + w_mount "DCUO - Disc 2" + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + winwait, Setup Needs The Next Disk, Please insert disk 2 + if ( w_opt_unattended > 0 ) { + ControlClick, Button2 ; next + winwaitclose + Loop + { + IfWinExist, DirectX, Welcome + { + ControlClick, Button1 ; accept + Sleep 1000 + ControlClick, Button4 ; next + WinWait, DirectX, Runtime Install + ControlClick, Button4 ; next + WinWait, DirectX, Complete + ControlClick, Button4 ; next + sleep 1000 + process, close, dxsetup.exe ; work around strange 'next button does nothing' bug + } + IfWinExist, Flash ; a newer version of flash is already installed + { + ControlClick, Button3 ; quit + } + IfWinExist, DC Universe, Complete + { + break + } + Sleep 1000 + } + } + WinWait, DC Universe, Complete + if ( w_opt_unattended > 0 ) { + ControlClick, Button4 ; finish + } + winwaitclose + " + w_warn "Now let the wookie install itself, and then quit." +} + +#---------------------------------------------------------------- + +w_metadata deadspace games \ + title="Dead Space" \ + publisher="EA" \ + year="2008" \ + media="dvd" \ + file1="DEADSPACE.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/Dead Space/Dead Space.exe" + +load_deadspace() +{ + w_mount DEADSPACE + + if w_workaround_wine_bug 23324 + then + msvcrun_me_harder=" + winwait, Microsoft + controlclick, Button1 + " + else + msvcrun_me_harder="" + fi + + w_read_key + + w_ahk_do " + SetTitleMatchMode, 2 + ; note: if this is the second run, the installer skips the registration code prompt + run, ${W_ISO_MOUNT_LETTER}:EASetup.exe + winwait, Dead + send {Enter} + winwait, Dead, Registration Code + send {RAW}$W_KEY + Sleep 1000 + controlclick, Button2 + $msvcrun_me_harder + winwait, Setup, License + Sleep 1000 + controlclick, Button1 + Sleep 1000 + send {Enter} + winwait, Setup, License + Sleep 1000 + controlclick, Button1 + Sleep 1000 + send {Enter} + winwait, Setup, Destination + Sleep 1000 + controlclick, Button1 + winwait, Setup, begin + Sleep 1000 + controlclick, Button1 + winwait, Setup, Finish + Sleep 1000 + controlclick, Button5 + controlclick, Button1 + " +} + +#---------------------------------------------------------------- + +w_metadata deadspace2 games \ + title="Dead Space 2" \ + publisher="EA" \ + year="2011" \ + media="dvd" \ + file1="Disc1.iso" \ + file2="Disc2.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/EA Games/Dead Space 2/deadspace2.exe" \ + +load_deadspace2() +{ + w_read_key + + w_mount Disc1 + + # FIXME: this bug was fixed in 1.3.36, so this is unneccessary + # + # Work around bug 25963 (fails to switch discs) + w_warn "Copying discs to hard drive. This will take a few minutes." + cd "$W_TMP" + # Copy takes a LONG time, so offer a way to avoid copy while debugging verb + # You'll need to comment out the five "rm -rf"'s, too. + if test ! -f easetup.exe + then + w_try cp -R "$W_ISO_MOUNT_ROOT"/* . + # Make the directories writable, else 2nd disc copy will fail. + w_try chmod -R +w . + w_mount Disc2 + # On Linux, use symlinks for disc 2. (On Cygwin, we'd have to copy.) + w_try ln -s "$W_ISO_MOUNT_ROOT"/*.dat . + mkdir -p movies/en movies/fr + w_try ln -s "$W_ISO_MOUNT_ROOT"/movies/en/* movies/en/ + w_try ln -s "$W_ISO_MOUNT_ROOT"/movies/fr/* movies/fr/ + # Make the files writable, otherwise you'll get errors when trying to remove the temp directory. + chmod -R +w . + fi + + # Install takes a long time, so offer a way to skip installation + # and go straight to activation while debugging that + if ! test -f "$W_PROGRAMS_X86_UNIX/EA Games/Dead Space 2/deadspace2.exe" + then + w_ahk_do " + run easetup.exe + if ( w_opt_unattended > 0 ) { + SetTitleMatchMode, 2 + ; Not all systems need the Visual C++ runtime + loop + { + ifwinexist, Microsoft Visual C++ 2008 Redistributable Setup + { + sleep 500 + controlclick, Button12 ; Next + winwait, Visual C++, License + sleep 500 + controlclick, Button11 ; Agree + sleep 500 + controlclick, Button8 ; Install + winwait, Setup, configuring + winwaitclose + winwait, Visual C++, Complete + sleep 500 + controlclick, Button2 ; Finish + break + } + ifwinexist, Setup, Dead Space + { + break + } + sleep 1000 + } + winwait, Setup, License ; Dead Space license + sleep 500 + controlclick Button1 ; accept + controlclick Button3 ; next + SetTitleMatchMode, slow ; since word DirectX in next dialog can only be read 'slowly' + winwait, Setup, DirectX ; DirectX license + sleep 500 + controlclick Button1 ; accept + controlclick Button3 ; next + winwait, Setup, Ready to install + sleep 500 + controlclick Button1 ; Install + } + winwait, Setup, Completed + if ( w_opt_unattended > 0 ) { + controlclick Button5 ; (Don't) install EA Download Manager + controlclick Button1 ; Finish + } + winwaitclose + " + fi + + # Activate the game + cd "$W_PROGRAMS_X86/EA Games/Dead Space 2" + w_ahk_do " + run activation.exe + if ( w_opt_unattended > 0 ) { + SetTitleMatchMode, 2 + WinWait, Product activation + sleep 500 + controlclick TBitBtn2 ; Next + WinWait, Product activation, Serial + sleep 500 + send $W_KEY + controlclick TBitBtn3 ; Next + WinWait, Information + sleep 4000 ; let user see what happened + send {Enter} + } + WinWaitClose, Product activation + " +} + +#---------------------------------------------------------------- + +w_metadata deusex2_demo games \ + title="Deus Ex 2 / Deus Ex: Invisible War Demo" \ + publisher="Eidos" \ + year="2003" \ + media="manual_download" \ + file1="dxiw_demo.zip" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Deus Ex - Invisible War Demo/System/DX2.exe" + +load_deusex2_demo() +{ + w_download_manual "http://www.techpowerup.com/downloads/1730/Deus_Ex:_Invisible_War_Demo.html" dxiw_demo.zip ccae48fb046d912b3714ea1b4be4294e74bb3092 + + w_try unzip "$W_CACHE/$W_PACKAGE/dxiw_demo.zip" -d "$W_TMP" + cd "$W_TMP" + w_ahk_do " + SetTitleMatchMode 2 + SetWinDelay 500 + run setup.exe + winwait Deus Ex, Launch + if ( w_opt_unattended > 0 ) { + controlclick button2 + winwait Deus Ex, Welcome + controlclick button1 + winwait Deus Ex, License + controlclick button3 ;accept + controlclick button1 ;next + winwait Deus Ex, Setup Type + controlclick button4 + winwait Deus Ex, Install + controlclick button1 + winwait Question, Readme + controlclick button2 + winwait Question, play + controlclick button2 + } + winwait Deus Ex, Complete + if ( w_opt_unattended > 0 ) + controlclick button4 + winwaitclose Deus Ex, Complete + " +} + +#---------------------------------------------------------------- + +w_metadata diablo2 games \ + title="Diablo II" \ + publisher="Blizzard" \ + year="2000" \ + media="cd" \ + file1="INSTALL.iso" \ + file2="PLAYDISC.iso" \ + file3="CINEMATICS.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Diablo II/Diablo II.exe" + +load_diablo2() +{ + w_download http://ftp.blizzard.com/pub/diablo2/patches/PC/D2Patch_113c.exe c78761bfb06999a9788f25a23a1ed30260ffb8ab + + w_read_key + + w_mount INSTALL + w_ahk_do " + SetWinDelay 500 + run ${W_ISO_MOUNT_LETTER}:setup.exe + winwait, Diablo II Setup + send {i} + winwait, Choose Installation Size + send {u} + send {Enter} + send {Raw}$LOGNAME + send {Tab}{Raw}$W_KEY + send {Enter} + winwait, Diablo II - choose install directory + send {Enter} + winwait, Desktop Shortcut + send {N} + winwait, Insert Disc" + w_mount PLAYDISC + # Needed by patch 1.13c to avoid disc swapping + cp "$W_ISO_MOUNT_ROOT"/d2music.mpq "$W_PROGRAMS_UNIX/Diablo II/" + w_ahk_do " + send, {Enter} + Sleep 1000 + winwait, Insert Disc" + w_mount CINEMATICS + w_ahk_do " + send, {Enter} + Sleep 1000 + winwait, Insert Disc" + w_mount INSTALL + w_ahk_do " + send, {Enter} + Sleep 1000 + winwait, View ReadMe? + ControlClick &No, View ReadMe? + winwait, Register Diablo II Electronically? + send {N} + winwait, Diablo II Setup - Video Test + ControlClick &Cancel, Diablo II Setup - Video Test + winclose, Diablo II Setup" + + cd "$W_CACHE"/$W_PACKAGE + w_try "$WINE" D2Patch_113c.exe + w_ahk_do " + winwait, Blizzard Updater v2.72, has completed + Sleep 1000 + send {Enter} + winwait Diablo II + Sleep 1000 + ControlClick &Cancel, Diablo II" + # Dagnabbit, the darn updater starts the game after it updates, no matter what I do? + w_killall "Game.exe" +} + +w_metadata digitanks_demo games \ + title="Digitanks Demo" \ + publisher="Lunar Workshop" \ + year="2011" \ + media="download" \ + file1="digitanks.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Digitanks/digitanksdemo.exe" \ + homepage="http://www.digitanks.com" + +load_digitanks_demo() +{ + # 8 june 2011: f204b13dc64c1a54fb1aaf27187c6083ebb16acf + # 11 Nov 2011: e54ffb07232f434bcfaf7b3d43ddf9affa93ef15 + w_download "http://static.digitanks.com/files/digitanks.exe" e54ffb07232f434bcfaf7b3d43ddf9affa93ef15 + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" $file1 ${W_OPT_UNATTENDED:+ /S} + if w_workaround_wine_bug 8060 "installing corefonts" + then + w_call corefonts + fi +} + +w_metadata dirt2_demo games \ + title="Dirt 2 Demo" \ + publisher="Codemasters" \ + year="2009" \ + media="manual_download" \ + file1="Dirt2Demo.zip" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Codemasters/DiRT2 Demo/dirt2.exe" + +load_dirt2_demo() +{ + w_download_manual http://www.joystiq.com/game/dirt-2/download/dirt-2-demo/ Dirt2Demo.zip 13af1beb8c4f6300e4655045b66aea1f8a29f2b3 + + w_try_unzip "$W_TMP/$W_PACKAGE" "$W_CACHE/$W_PACKAGE/Dirt2Demo.zip" + + if w_workaround_wine_bug 23532 + then + w_call gfw + fi + + if w_workaround_wine_bug 24868 + then + w_call d3dx9_36 + fi + + cd "$W_TMP/$W_PACKAGE" + + w_ahk_do " + Run, "Setup.exe" + WinWait, Choose Setup Language, Select + if ( w_opt_unattended > 0 ) { + sleep 500 + ControlClick Button1 ;next + WinWait, DiRT2 Demo - InstallShield Wizard, Welcome + sleep 500 + ControlClick Button1 ;next + WinWait, DiRT2 Demo - InstallShield Wizard, License + sleep 500 + ControlClick Button3 ;i accept + sleep 500 + ControlClick Button1 ;next + WinWait, DiRT2 Demo - InstallShield Wizard, Setup + sleep 500 + ControlClick Button4 ;next + WinWait, InstallShield Wizard, In order + sleep 500 + ControlClick Button1 ;next + WinWait, DiRT2 Demo - InstallShield Wizard, Ready + sleep 500 + ControlClick Button1 ;next + } + WinWait, DiRT2 Demo - InstallShield Wizard, Complete + if ( w_opt_unattended > 0 ) { + sleep 500 + ControlClick Button4 ;finish + } + WinWaitClose, DiRT2 Demo - InstallShield Wizard, Complete + " +} + +#---------------------------------------------------------------- + +w_metadata divinity2_demo games \ + title="Divinity II Demo" \ + publisher="DTP Entertainment" \ + year="2010" \ + media="manual_download" \ + file1="Divinity2_DEMO_EN_US.zip" \ + installed_file1="$W_PROGRAMS_X86_WIN/Divinity II - Ego Draconis - Demo/Bin/Divinity2_Demo.exe" + +load_divinity2_demo() +{ + w_download_manual "http://www.gamershell.com/download_54304.shtml" $file1 2a33670b705d4da89e1119d808cda64977bb6096 + + w_try unzip -d "$W_TMP" "$W_CACHE/$W_PACKAGE/$file1" + cd "$W_TMP" + + w_ahk_do " + Run, Divinity2_DEMO_EN_US.exe + SetTitleMatchMode, 2 + WinWait,Setup - Divinity II - Ego Draconis - Demo + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick TNewButton1 ; Next + WinWait,Setup - Divinity II - Ego Draconis - Demo, read + Sleep 500 + ControlClick TNewRadioButton1 ;agreement + Sleep 500 + ControlClick TNewButton2 ; Next + WinWait,Setup - Divinity II - Ego Draconis - Demo, into + Sleep 500 + ControlClick TNewButton3 ; Next + WinWait,Setup - Divinity II - Ego Draconis - Demo, place + Sleep 500 + ControlClick TNewButton4 ; Next + WinWait,Setup - Divinity II - Ego Draconis - Demo, installation + Sleep 500 + ControlClick TNewButton4 ; Install + Loop + { + IfWinExist, NVIDIA PhysX Setup, must + { + WinWait,NVIDIA PhysX Setup, must + Sleep 500 + ControlClick Button3 ;accept + Sleep 500 + ControlClick Button4 ; Next + WinWait,NVIDIA PhysX Setup, been + Sleep 500 + ControlClick Button1 ; Finish + } + IfWinExist,Setup - Divinity II - Ego Draconis - Demo, launched + { + break + } + Sleep 2000 + } + WinWait,Setup - Divinity II - Ego Draconis - Demo, launched + Sleep 500 + ControlFocus, TNewCheckListBox1, Desktop + Sleep 500 + Send {Space} + Sleep 500 + ControlClick TNewButton4 ; Finish + } + WinWaitClose + " + + if w_workaround_wine_bug 24417 + then + w_call d3dx9_36 + fi + if w_workaround_wine_bug 25329 + then + w_call wmp9 + fi +} + +#---------------------------------------------------------------- + +w_metadata demolition_company_demo games \ + title="Demolition Company demo" \ + publisher="Giants Software" \ + year="2010" \ + media="manual_download" \ + file1="DemolitionCompanyDemoENv2.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Demolition Company Demo/DemolitionCompany.exe" + +load_demolition_company_demo() +{ + w_download_manual http://www.demolitioncompany-thegame.com/demo.php DemolitionCompanyDemoENv2.exe + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, DemolitionCompanyDemoENv2.exe + winwait, Setup - Demolition, This will install + if ( w_opt_unattended > 0 ) { + sleep 1000 + controlclick, TNewButton1, Setup - Demolition, This will install + winwait, Setup - Demolition, License Agreement + sleep 1000 + controlclick, TNewRadioButton1, Setup - Demolition, License Agreement + sleep 1000 + controlclick, TNewButton2, Setup - Demolition, License Agreement + winwait, Setup - Demolition, Setup Type + sleep 1000 + controlclick, TNewButton2, Setup - Demolition, Setup Type + winwait, Setup - Demolition, Ready to Install + sleep 1000 + controlclick, TNewButton2, Setup - Demolition, Ready to Install + winwait, Setup - Demolition, Completing + sleep 1000 + controlclick, TNewButton2, Setup - Demolition, Completing + } + winwaitclose, Setup - Demolition + " +} + +#---------------------------------------------------------------- + +w_metadata dragonage games \ + title="Dragon Age: Origins" \ + publisher="Bioware / EA" \ + year="2009" \ + media="dvd" \ + file1="DragonAge.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Dragon Age/bin_ship/daorigins.exe" + +load_dragonage() +{ + w_read_key + + # game can do this, why do we need to? + w_call physx + + w_mount DragonAge + + w_ahk_do " + SetWinDelay 1000 + Run, ${W_ISO_MOUNT_LETTER}:Setup.exe + SetTitleMatchMode, 2 + winwait, Installer Language + if ( w_opt_unattended > 0 ) { + WinActivate + send {Enter} + winwait, Dragon Age: Origins Setup + ControlClick Next, Dragon Age: Origins Setup + winwait, Dragon Age: Origins Setup, End User License + ;ControlClick Button4, Dragon Age: Origins Setup ; agree + send {Tab}a ; agree + ;ControlClick I agree, Dragon Age: Origins Setup + send {Enter} ; continue + SetTitleMatchMode, 1 + winwait, Dragon Age: Origins, Registration + send $W_KEY + send {Enter} + } + winwait, Dragon Age: Origins Setup, Install Type + if ( w_opt_unattended > 0 ) + send {Enter} + winwaitclose + " + # Since the installer explodes on exit, just wait for the + # last file it's known to create + while ! test -f "$W_PROGRAMS_X86_UNIX/Dragon Age/bin_ship/DAOriginsLauncher-MCE.png" + do + w_info "Waiting for installer to finish..." + sleep 1 + done + + # FIXME: does this directory name change in win7? + ini="$W_DRIVE_C/users/$LOGNAME/My Documents/BioWare/Dragon Age/Settings/DragonAge.ini" + if ! test -f "$ini" + then + w_warn "$ini not found?" + else + cp -f "$ini" "$ini.old" + fi + if w_workaround_wine_bug 22383 "use strictdrawordering to avoid video problems" + then + w_call strictdrawordering=enabled + fi + if w_workaround_wine_bug 22557 "Setting UseVSync=0 to avoid black menu" + then + sed 's,UseVSync=1,UseVSync=0,' < "$ini" > "$ini.new" + mv -f "$ini.new" "$ini" + fi +} + +#---------------------------------------------------------------- + +w_metadata dragonage_ue games \ + title="Dragon Age: Origins - Ultimate Edition" \ + publisher="Bioware / EA" \ + year="2010" \ + media="dvd" \ + file1="DRAGONAGE-1.iso" \ + file2="DRAGONAGE-2.iso" + +load_dragonage_ue() +{ + w_read_key + + w_mount DRAGONAGE Setup.exe 1 + + # Annoyingly, it runs a webbrowser so you can activate the extra stuff. Disable that, and w_warn the user after install: + WINEDLLOVERRIDES="winebrowser.exe=" + export WINEDLLOVERRIDES + + w_ahk_do " + SetTitleMatchMode, 2 + SetTitleMatchMode, slow + SetWinDelay 1000 + Run, ${W_ISO_MOUNT_LETTER}:Setup.exe + winwait, Installer, English + if ( w_opt_unattended > 0 ) { + ControlClick Button1, Installer, English + winwait, Dragon Age: Origins Setup + ControlClick Button2, Dragon Age: Origins Setup + winwait, Dragon Age: Origins Setup, License Agreement + ControlClick Button4, Dragon Age: Origins Setup + ControlClick Button2, Dragon Age: Origins Setup + winwait, Dragon Age: Origins, Registration + controlclick, Edit1 + sleep 1000 + send $W_KEY + send {Enter} + winwait, Dragon Age: Origins Setup, Install Type + controlclick, Button2, Dragon Age: Origins Setup, Install Type + winwait, Dragon Age: Origins Setup, expanded content + controlclick, Button1 + } + winwait, Insert Disc... + " + w_mount DRAGONAGE data/ultimate_en.rar 2 + + w_ahk_do " + sleep 5000 + SetTitleMatchMode, 2 + if ( w_opt_unattended > 0 ) { + controlclick, Button2, Insert Disc... + winwait, Dragon Age, Setup was completed successfully + controlclick, Button2, Dragon Age, Setup was completed successfully + } + winwait, Dragon Age, Click Finish to close + if ( w_opt_unattended > 0 ) { + controlclick, Button5, Dragon Age, Click Finish to close + controlclick, Button2, Dragon Age, Click Finish to close + } + winwaitclose + " + + if w_workaround_wine_bug 22383 + then + w_try_winetricks strictdrawordering=enabled + fi + + if w_workaround_wine_bug 23730 + then + w_warn "Run with WINEDEBUG=-all to reduce flickering." + fi + + if w_workaround_wine_bug 23081 + then + w_warn "If you still see flickering, try applying the patch from http://bugs.winehq.org/show_bug.cgi?id=23081" + fi + + w_warn "To activate the additional content, visit http://social.bioware.com/redeem_code.php?path=/dragonage/pc/dlcactivate/en" +} + +#---------------------------------------------------------------- + +w_metadata dragonage2_demo games \ + title="Dragon Age II demo" \ + publisher="EA/Bioware" \ + year="2011" \ + media="download" \ + file1="DragonAge2Demo_F93M2qCj_EnEsItPlRu.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Dragon Age 2 Demo/bin_ship/DragonAge2Demo.exe" + +load_dragonage2_demo() +{ + w_download http://lvlt.bioware.cdn.ea.com/bioware/u/f/eagames/bioware/dragonage2/demo/DragonAge2Demo_F93M2qCj_EnEsItPlRu.exe a94715cd7943533a3cf1d84d40e667b04e1abc2e + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetWinDelay 500 + SetTitleMatchMode, 2 + run, DragonAge2Demo_F93M2qCj_EnEsItPlRu.exe + winwait, Installer Language + if ( w_opt_unattended > 0 ) { + send {Enter} + winwait, Dragon Age II Demo Setup + send {Enter} + winwait, Dragon Age II Demo Setup, License + send !a + send {Enter} + winwait, Dragon Age II Demo Setup, Select + send {Enter} + } + winwait, Dragon Age II Demo Setup, Complete, completed + if ( w_opt_unattended > 0 ) { + send {Enter} + winwait, Dragon Age II Demo Setup, Completing + send {Enter} + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata eve games \ + title="EVE Online Tyrannis" \ + publisher="CCP Games" \ + year="2011" \ + media="download" \ + file1="EVE_Online_Installer_561078.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/CCP/EVE/eve.exe" + +load_eve() +{ + # http://www.eveonline.com/download/?fallback=1& + w_download http://content.eveonline.com/561078/EVE_Online_Installer_561078.exe 5b5f0cd4fbd42f82b1d1cccb2e22ddeed97d1d3a + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + run, $file1 + WinWait, EVE Online + if ( w_opt_unattended > 0 ) { + WinActivate + send {Enter} ; Next + WinWait, EVE,License Agreement + WinActivate + send {Enter} ; Next + WinWait, EVE,Choose Install + WinActivate + send {Enter} ; Install + WinWait, EVE,has been installed + WinActivate + ;Send {Tab}{Tab}{Tab} ; select Launch + ;Send {Space} ; untick Launch + ControlClick Button4 ; untick Launch + Send {Enter} ; Finish (Button2) + } + WinWaitClose, EVE Online + " +} + +#---------------------------------------------------------------- + +w_metadata fable_tlc games \ + title="Fable: The Lost Chapters" \ + publisher="Microsoft" \ + year="2005" \ + media="cd" \ + file1="FABLE_DISC_1.iso" \ + file2="FABLE DISC 2.iso" \ + file3="FABLE DISC 3.iso" \ + file4="FABLE DISC 4.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Games/Fable - The Lost Chapters/Fable.exe" + +load_fable_tlc() +{ + w_read_key + + if w_workaround_wine_bug 657 + then + w_call mfc42 + fi + + w_mount FABLE_DISK_1 + w_ahk_do " + SetTitleMatchMode, 2 + run, ${W_ISO_MOUNT_LETTER}:setup.exe + WinWait,Fable,Welcome + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button1 ; Next + WinWait,Fable,Please + Sleep 500 + ControlClick Button4 ; Next + WinWait,Fable,Product Key + Sleep 500 + Send $W_KEY + Send {Enter} + } + WinWait,Fable,Disk 2 + " + w_mount "FABLE DISK 2" + w_ahk_do " + SetTitleMatchMode, 2 + WinWait,Fable,Disk 2 + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button2 ; Retry + } + WinWait,Fable,Disk 3 + " + + w_mount "FABLE DISK 3" + w_ahk_do " + SetTitleMatchMode, 2 + WinWait,Fable,Disk 3 + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button2 ; Retry + } + WinWait,Fable,Disk 4 + " + + w_mount "FABLE DISK 4" + w_ahk_do " + SetTitleMatchMode, 2 + WinWait,Fable,Disk 4 + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button2 ; Retry + } + WinWait,Fable,Disk 1 + WinKill + " + + # Now tell game what the real disc is so user can insert disc 1 and run the game! + # FIXME: don't guess it's D: + cat > "$W_TMP"/$W_PACKAGE.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\D3BE9C3CAF4226447B48E06CAACF2DDD\InstallProperties] +"InstallSource"="D:\\" + +_EOF_ + try_regedit "$W_TMP_WIN"\\$W_PACKAGE.reg + + # Also accept EULA + cat > "$W_TMP"/$W_PACKAGE.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Microsoft\Microsoft Games\Fable TLC] +"FIRSTRUN"=dword:00000001 + +_EOF_ + try_regedit "$W_TMP_WIN"\\$W_PACKAGE.reg + + if w_workaround_wine_bug 24912 + then + # kill off lingering installer + w_ahk_do " + SetTitleMatchMode, 2 + WinKill,Fable + " + w_killall IDriverT.exe + w_killall IDriver.exe + fi + + if w_workaround_wine_bug 25352 + then + w_call devenum + w_call quartz + w_call wmp9 + fi + + if w_workaround_wine_bug 20074 + then + w_call d3dx9_36 + fi +} + +#---------------------------------------------------------------- + +w_metadata farmsim2011_demo games \ + title="Farming Simulator 2011 Demo" \ + publisher="Astragon" \ + year="2011" \ + media="manual_download" \ + file1="FarmingSimulator2011DemoEN.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Farming Simulator 2011 Demo/game.exe" + +load_farmsim2011_demo() +{ + # From http://www.landwirtschafts-simulator.de/demo.php + w_download_manual http://www.landwirtschafts-simulator.de/demo.php FarmingSimulator2011DemoEN.exe c1221110e55625a3e797a3060c4bf5e3219bf2f0 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetWinDelay 500 + SetTitleMatchMode, 2 + run, FarmingSimulator2011DemoEN.exe + if ( w_opt_unattended > 0 ) { + WinWait, Setup - Farming Simulator 2011 Demo + ControlClick TNewButton1 ; Next + WinWait, Setup - Farming Simulator 2011 Demo, License Agreement + ControlClick TNewRadioButton1 ; Accept + ControlClick TNewButton2 ; Next + WinWait, Setup - Farming Simulator 2011 Demo, Setup Type + ControlClick TNewButton2 ; Next + WinWait, Setup - Farming Simulator 2011 Demo, Ready to Install + ControlClick TNewButton2 ; Install + } + WinWait, Setup - Farming Simulator 2011 Demo, finished + if ( w_opt_unattended > 0 ) + ControlClick TNewButton2 ; Finish + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata fifa11_demo games \ + title="FIFA 11 Demo" \ + publisher="EA Sports" \ + year="2010" \ + media="download" \ + file1="fifa11_pc_demo_NA.zip" \ + installed_exe1="$W_PROGRAMS_X86_WIN/EA Sports/FIFA 11 Demo/Game/fifa.exe" + +load_fifa11_demo() +{ + # From http://www.ea.com/uk/football/news/fifa11-download-2 + w_download "http://static.cdn.ea.com/fifa/u/f/fifa11_pc_demo_NA.zip" c3a66284bffb985f31b11e477dade50c0d4cac52 + + w_try unzip -d "$W_TMP" "$W_CACHE/$W_PACKAGE/fifa11_pc_demo_NA.zip" + cd "$W_TMP" + + w_ahk_do " + SetTitleMatchMode, 2 + run, EASetup.exe + winwait, Microsoft Visual C++ 2008, wizard + if ( w_opt_unattended > 0 ) { + sleep 1000 + controlclick, Button12, Microsoft Visual C++ 2008, wizard + winwait, Microsoft Visual C++ 2008, License Terms + sleep 1000 + controlclick, Button11, Microsoft Visual C++ 2008, License Terms + sleep 1000 + controlclick, Button8, Microsoft Visual C++ 2008, License Terms + winwait, Setup, is configuring + winwaitclose + winwait, Microsoft Visual C++ 2008, Setup Complete + sleep 1000 + controlclick, Button2 + ; There are two license agreements...one is for Directx + winwait, FIFA 11, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button1 + sleep 1000 + controlclick, Button3 + winwaitclose + winwait, FIFA 11, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button1, FIFA 11, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button3, FIFA 11, I &accept the terms in the End User License Agreement + winwait, FIFA 11, Ready to install FIFA 11 + sleep 1000 + controlclick, Button1, FIFA 11, Ready to install FIFA 11 + } + winwait, FIFA 11, Click the Finish button to exit the Setup Wizard. + if ( w_opt_unattended > 0 ) { + sleep 1000 + controlclick, Button5, FIFA 11, Click the Finish button to exit the Setup Wizard. + sleep 1000 + controlclick, Button1, FIFA 11, Click the Finish button to exit the Setup Wizard. + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata hon games \ + title="Heroes of Newerth" \ + publisher="S2 Games" \ + year="2013" \ + media="download" \ + file1="HoNClient-3.1.2.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Heroes of Newerth/hon.exe" + +load_hon() +{ + w_download http://dl.heroesofnewerth.com/HoNClient-3.1.2.exe 49123d092f1fa75b8dddc20c817ab8addd5aee5f + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, $file1 + winwait, Installer Language + if ( w_opt_unattended > 0 ) { + send {Enter} + winwait, Heroes of Newerth + controlclick, Button2, Heroes of Newerth + winwait, Heroes of Newerth, License + controlclick, Button2, Heroes of Newerth, License + winwait, Heroes of Newerth, Components + controlclick, Button2, Heroes of Newerth, Components + winwait, Heroes of Newerth, Install Location + controlclick, Button2, Heroes of Newerth, Install Location + winwait, Heroes of Newerth, Start Menu + controlclick, Button2, Heroes of Newerth, Start Menu + winwait, Heroes of Newerth, Finish + controlclick, Button2, Heroes of Newerth, Finish + } + winwaitclose, Heroes of Newerth, Finish + " +} + +#---------------------------------------------------------------- + +w_metadata hordesoforcs2_demo games \ + title="Hordes of Orcs 2 Demo" \ + publisher="Freeverse" \ + year="2010" \ + media="manual_download" \ + file1="HoO2Demo.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Hordes of Orcs 2 Demo/HoO2.exe" + +load_hordesoforcs2_demo() +{ + w_download_manual http://www.fileplanet.com/216619/download/Hordes-of-Orcs-2-Demo HoO2Demo.exe 1ba26d35697e359f89a30915140e471fadc675da + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 500 + SetTitleMatchMode, slow + run HoO2Demo.exe + WinWait,Orcs + if ( w_opt_unattended > 0 ) { + WinActivate + ControlFocus, Button1, Hordes ; Next + sleep 500 + Send n ; next + WinWait,Orcs,conditions + ControlFocus, Button4, Hordes, agree + Send {Space} + Send {Enter} ; next + WinWait,Orcs,files + Send {Enter} ; next + WinWait,Orcs,exist ; Destination does not exist, create? + Send {Enter} ; yes + WinWait,Orcs,Start + Send {Enter} ; Start + } + WinWait,Orcs,successfully + if ( w_opt_unattended > 0 ) { + Send {Space} ; Finish + } + winwaitclose Orcs + " +} + +#---------------------------------------------------------------- + +w_metadata mfsxde games \ + title="Microsoft Flight Simulator X: Deluxe Edition" \ + publisher="Microsoft" \ + year="2006" \ + media="dvd" \ + file1="FSX DISK 1.iso" \ + file2="FSX DISK 2.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Games/Microsoft Flight Simulator X/fsx.exe" + +load_mfsxde() +{ + if w_workaround_wine_bug 25139 "Setting virtual desktop so license screen shows up on first run" + then + w_call vd=1024x768 + fi + + w_mount "FSX DISK 1" + + if w_workaround_wine_bug 25558 "Copying disc to hard drive. This will take a few minutes." + then + cd "$W_CACHE/$W_PACKAGE" + # Copy takes a LONG time, so offer a way to avoid copy while debugging verb + if test ! -f bothdiscs/setup.exe + then + mkdir bothdiscs + cd bothdiscs + w_try cp -R "$W_ISO_MOUNT_ROOT"/* . + + # A few files are on both DVDs. Remove them manually so cp doesn't complain. + rm -f DVDCheck.exe autorun.inf fsx.ico vcredist_x86.exe + + # Make the directories writable, else 2nd disc copy will fail. + w_try chmod -R +w . + + w_mount "FSX DISK 2" + + # On Linux, use symlinks for disc 2. (On Cygwin, we'd have to copy.) + w_try ln -s "$W_ISO_MOUNT_ROOT"/* . + + # Make the files writable, otherwise you'll get errors when trying to remove bothdiscs. + chmod -R +w . + + # If you leave it mounted, it doesn't ask for the second disk to be inserted. + # If you mount it without extracting though, the install fails. + # Apparently it uses the files from the cache, but does a disk check. + else + cd bothdiscs + fi + else + w_die "non-broken case not yet supported for this game" + fi + + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run setup.exe,,,mfs_pid + winwait, Microsoft Flight Simulator X, To continue, click Install + ControlClick, Button1, Microsoft Flight Simulator X, To continue + ; Accept license: + winwait, Flight Simulator X - End User License Agreement + controlclick, Button1, Flight Simulator X - End User License Agreement + winwait, Microsoft Flight Simulator X Product Activation Wizard + ; Activate later, currently broken on Wine, see http://bugs.winehq.org/show_bug.cgi?id=25579 + controlclick, Button2, Microsoft Flight Simulator X Product Activation Wizard + sleep 1000 + controlclick, Button5, Microsoft Flight Simulator X Product Activation Wizard + ; Close main window: + winwait, Microsoft Flight Simulator, LEARNING CENTER + ; A winclose/winkill isn't forceful enough: + process, close, fsx.exe + ; Setup doesn't close on its own, because this process doesn't exit cleanly + process, close, IDriver.exe + " +} + +#---------------------------------------------------------------- + +w_metadata mfsx_demo games \ + title="Microsoft Flight Simulator X Demo" \ + publisher="Microsoft" \ + year="2006" \ + media="download" \ + file1="FSXDemo.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Games/Microsoft Flight Simulator X Demo/fsx.exe" \ + wine_showstoppers="26411" + +load_mfsx_demo() +{ + w_workaround_wine_bug 26411 "Game hangs on first screen for me" + + if w_workaround_wine_bug 25139 "Setting virtual desktop so license screen shows up on first run" + then + w_call vd=1024x768 + fi + + w_download http://download.microsoft.com/download/4/7/7/477dcc35-0b98-42c5-b06f-7ded38a40491/FSXDemo.exe cbb13d2a7918f409f224eab7d3a2014330fc87bc + cd "$W_TMP" + unzip "$W_CACHE/$W_PACKAGE"/FSXDemo.exe + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run setup.exe,,,mfs_pid + winwait, Microsoft Flight Simulator X, To continue, click Install + ControlClick, Button1, Microsoft Flight Simulator X, To continue + ; Accept license: + winwait, Flight Simulator X - End User License Agreement + controlclick, Button1, Flight Simulator X - End User License Agreement + winwait, Microsoft Flight Simulator X Product Activation Wizard + ; Activate later, currently broken on Wine, see http://bugs.winehq.org/show_bug.cgi?id=25579 + controlclick, Button2, Microsoft Flight Simulator X Product Activation Wizard + sleep 1000 + controlclick, Button5, Microsoft Flight Simulator X Product Activation Wizard + ; Close main window: + winwait, Microsoft Flight Simulator, LEARNING CENTER + ; A winclose/winkill isn't forceful enough: + process, close, fsx.exe + ; Setup doesn't close on its own, because this process doesn't exit cleanly + process, close, IDriver.exe + " +} + +#---------------------------------------------------------------- + +w_metadata gothic4_demo games \ + title="Gothic 4 demo (drm broken on wine)" \ + publisher="Jowood" \ + year="2010" \ + media="manual_download" \ + file1="ArcaniA_Gothic4_Demo_Setup.zip" \ + installed_exe1="$W_PROGRAMS_X86_WIN/JoWooD Entertainment AG/ArcaniA - Gothic 4 Demo/Arcania.exe" + +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=21507 + +load_gothic4_demo() +{ + w_download_manual http://www.gamershell.com/download_63874.shtml ArcaniA_Gothic4_Demo_Setup.zip d36024c0235878c4589234a56cc8b6e05da5c593 + + cd "$W_TMP" + w_try unzip "$W_CACHE/$W_PACKAGE"/ArcaniA_Gothic4_Demo_Setup.zip + + w_ahk_do " + Settitlematchmode, 2 + run, ArcaniA_Gothic4_Demo_Setup.exe + if ( w_opt_unattended > 0 ) { + winwait, Select Setup Language + sleep 1000 + controlclick, TNewButton1, Select Setup Language + winwait, Setup - ArcaniA, Welcome to the + sleep 1000 + controlclick, TNewButton1, Setup - ArcaniA, Welcome to the + winwait, Setup - ArcaniA, License Agreement + sleep 1000 + controlclick, TNewRadioButton1, Setup - ArcaniA, License Agreement + sleep 1000 + controlclick, TNewButton2, Setup - ArcaniA, License Agreement + winwait, Setup - ArcaniA, Select Destination Location + sleep 1000 + controlclick, TNewButton3, Setup - ArcaniA, Select Destination Location + winwait, Setup - ArcaniA, Select Components + sleep 1000 + controlclick, TNewButton3, Setup - ArcaniA, Select Components + winwait, Setup - ArcaniA, Select Start Menu + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Select Start Menu + winwait, Setup - ArcaniA, Select Additional + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Select Additional + winwait, Setup - ArcaniA, Ready to Install + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Ready to Install + winwait, Setup - ArcaniA, Information + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Information + } + winwait, Setup - ArcaniA, Completing + if ( w_opt_unattended > 0 ) { + sleep 1000 + ; The two checkboxes share the same button id. App/Wine bug? + mousemove, 190, 155 + click + sleep 1000 + mousemove, 190, 180 + click + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Completing + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata gta_vc games \ + title="Grand Theft Auto: Vice City" \ + publisher="Rockstar" \ + year="2003" \ + media="cd" \ + file1="GTA_VICE_CITY.iso" \ + file2="VICE_CITY_PLAY.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Rockstar Games/Grand Theft Auto Vice City/gta-vc.exe" + +load_gta_vc() +{ + w_mount GTA_VICE_CITY + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + Run, ${W_ISO_MOUNT_LETTER}:Setup.exe + winwait, Choose Setup Language + if ( w_opt_unattended > 0 ) { + Send {enter} + winwait, Grand Theft Auto Vice City, Welcome to the InstallShield Wizard + Send {enter} + winwait, Grand Theft Auto Vice City, License Agreement + Send !a + send {enter} + winwait, Grand Theft Auto Vice City, Customer Information + controlclick, edit1 + send $LOGNAME + send {tab} + send company ; installer won't proceed without something here + send {enter} + winwait, Grand Theft Auto Vice City, Choose Destination Location + controlclick, Button1 + winwait, Grand Theft Auto Vice City, Select Components + controlclick, Button2 + winwait, Grand Theft Auto Vice City, Ready to Install the Program + send {enter} + } + winwait, Setup Needs The Next Disk, Please insert disk 2 + " + w_mount VICE_CITY_PLAY + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + winwait, Setup Needs The Next Disk, Please insert disk 2 + if ( w_opt_unattended > 0 ) { + controlclick, Button2 + } + winwait, Grand Theft Auto Vice City, InstallShield Wizard Complete + if ( w_opt_unattended > 0 ) { + send {enter} + } + winwaitclose + " + + if w_workaround_wine_bug 26322 "Setting virtual desktop" + then + w_call vd=800x600 + fi + + myexec="Exec=env WINEPREFIX=\"$WINEPREFIX\" wine cmd /c 'C:\\\\\\\\Run-gta_vc.bat'" + mymenu="$XDG_DATA_HOME/applications/wine/Programs/Rockstar Games/Grand Theft Auto Vice City/Play GTA Vice City.desktop" + if test -f "$mymenu" && w_workaround_wine_bug 26304 "Fixing system menu" + then + # this is a hack, hopefully the wine bug will be fixed soon + sed -i "s,Exec=.*,$myexec," "$mymenu" + fi +} + +#---------------------------------------------------------------- + +w_metadata guildwars games \ + title="Guild Wars" \ + publisher="NCsoft" \ + year="2005" \ + media="download" \ + file1="GwSetup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Guild Wars/Gw.exe" \ + homepage="http://www.guildwars.com" + +load_guildwars() +{ + w_download "http://guildwars.com/download/" a7c4c8cb3b8cbee20707dcf8176d3da6a1686c05 GwSetup.exe + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + Run, GwSetup.exe + WinWait, ahk_class ArenaNet_Dialog_Class + if ( w_opt_unattended > 0 ) { + ; Wait for network connection to finish. This might need to be longer. Can we detect this better? + Sleep 6000 + ; For some reason, the OK doesn't take for me unless I activate the window first + WinActivate + Send {Enter} + ; Installation takes a long time... and then starts the game, which we don't want. + } + WinWait, ahk_class ArenaNet_Dx_Window_Class + Sleep 4000 + WinClose, ahk_class ArenaNet_Dx_Window_Class + " +} + +#---------------------------------------------------------------- + +w_metadata hegemonygold_demo games \ + title="Hegemony Gold" \ + publisher="Longbow Games" \ + year="2011" \ + media="download" \ + file1="HegemonyGoldInstaller.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Longbow Digital Arts/Hegemony Gold/Hegemony Gold.exe" \ + homepage="http://www.longbowgames.com/forums/topic/?id=2146" \ + rating="bronze" + +load_hegemonygold_demo() +{ + # 6 Mar 2011: 8c4d8aa8f997b106c78b065a4b200e5e1ab846a8 + # 28 Apr 2011: 93677013fc17f014b1640bed070e8bb1b2a17445 + # 25 Jun 2011: 4069656ea3c3760b67d1c5adff37de7472955f72 + # 5 Nov 2011: 723c575ff5fff77941a1c786e28f46c094b8159c + # 8 Mar 2012: 36634314f571e345d082bdefe1150c76ef5610a7 + + w_download "http://www.longbowgames.com/downloads/Hegemony%20Gold%20Installer.exe" 36634314f571e345d082bdefe1150c76ef5610a7 HegemonyGoldInstaller.exe + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetWinDelay 500 + SetTitleMatchMode, 2 + Run, HegemonyGoldInstaller.exe + WinWait,Hegemony + if ( w_opt_unattended > 0 ) { + ControlClick Button2 ; Next + WinWait,Hegemony, License + ControlClick Button2 ; Agree + WinWait,Hegemony, Components + Click, Left, 187, 185 + Sleep 500 + ControlClick Button2 ; Next + WinWait,Hegemony, Location + ControlClick Button2 ; Next + WinWait,Hegemony, shortcuts + ControlClick Button2 ; Install + WinWait,Hegemony, Completing + ControlFocus,Button4,launch + Sleep 1000 + Send {Space} + Sleep 500 + ControlClick Button2 ; finish + } + WinWaitClose,Hegemony + " +} + +#---------------------------------------------------------------- + +w_metadata hegemony_demo games \ + title="Hegemony: Philip of Macedon Demo" \ + publisher="Longbow Games" \ + year="2010" \ + media="download" \ + file1="Hegemony_Philip_of_Macedon_Installer.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Longbow Digital Arts/Hegemony Philip of Macedon/Hegemony Philip of Macedon.exe" + +load_hegemony_demo() +{ + # Oct 2010: d3d2aa020d38b594d112360ae40871662d35dea4 + # Nov 2010: 80cad805ad4bed0d3c493f2d9a40d06512c429a9 http://www.longbowgames.com/forums/topic/?id=2223&start=0#post22184 + # Feb 16 2011: 38e92e3e4d0f0d10393790bc37350a2094f60c37 + w_download "http://www.longbowgames.com/downloads/Hegemony%20Philip%20of%20Macedon%20Installer.exe" 38e92e3e4d0f0d10393790bc37350a2094f60c37 Hegemony_Philip_of_Macedon_Installer.exe + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + run, Hegemony_Philip_of_Macedon_Installer.exe + winwait, Hegemony, installation + if ( w_opt_unattended > 0 ) { + controlclick, Button2 + Sleep 500 + winwait, Hegemony, License + controlclick, Button2 + winwait, Hegemony, Components + controlclick, Button2 + winwait, Hegemony, Install Location + controlclick, Button2 + winwait, Hegemony, shortcuts + controlclick, Button2 + Loop + { + ; Work around wine bug 24484 + IfWinExist, Log message, IKnownFolderManager + { + send {Enter} + } + ; Work around wine bug 21261 + IfWinExist, Log message, Games Explorer + { + send {Enter} + } + IfWinExist, Hegemony, has been installed + { + break + } + Sleep (2000) + } + winwait, Hegemony, has been installed + Sleep 500 + controlclick, Button4 + Sleep 500 + controlclick, Button2 + } + WinWaitClose,Hegemony + " +} + +#---------------------------------------------------------------- + +w_metadata hphbp_demo games \ + title="Harry Potter & The Half Blood Prince Demo" \ + publisher="EA" \ + year="2009" \ + media="download" \ + file1="Release_HBP_demo_PC_DD_DEMO_Final_348428.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/Harry Potter and the Half-Blood Prince Demo/pc/hp6_demo.exe" + +load_hphbp_demo() +{ + case "$LANG" in + ""|"C") w_die "Harry Potter will not install in the Posix locale; please do 'export LANG=en_US.UTF-8' or something like that" ;; + esac + + w_download http://largedownloads.ea.com/pub/demos/HarryPotter/Release_HBP_demo_PC_DD_DEMO_Final_348428.exe dadc1366c3b5e641454aa337ad82bc8c5082bad2 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, Release_HBP_demo_PC_DD_DEMO_FINAL_348428.exe + winwait, Harry Potter, Install + if ( w_opt_unattended > 0 ) { + controlclick, Button1, Harry Potter + winwait, Setup, License + controlclick, Button1 + controlclick, Button3 + winwait, Setup, License + controlclick, Button1 + controlclick, Button3 + winwait, Setup, Destination + controlclick, Button1 + winwait, Setup, begin + controlclick, Button1 + } + winwait, Setup, Finish + if ( w_opt_unattended > 0 ) + controlclick, Button1 + winwaitclose + " + + # Work around locale issues by symlinking the app's directory to not have a funny char + # Won't really work on cygwin, but that's ok. + cd "$W_PROGRAMS_X86_UNIX/Electronic Arts" + ln -s "Harry Potter and the Half-Blood Prince"* "Harry Potter and the Half-Blood Prince Demo" +} + +#---------------------------------------------------------------- + +w_metadata imvu games \ + title="IMVU - Instant Messaging Virtual Universe" \ + publisher="IMVU" \ + year="2004" \ + media="download" \ + file1="InstallIMVU_465.0_st_c.exe" \ + installed_exe1="c:/users/$LOGNAME/Application Data/IMVUClient/IMVUClient.exe" + +load_imvu() +{ + w_download http://static-akm.imvu.com/imvufiles/installers/InstallIMVU_465.0_st_c.exe 3a5c6c335227a5709c5772f91d8407edd07d4012 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 500 + Run, $file1 + if ( w_opt_unattended > 0 ) { + WinWait,IMVU Setup, IMVU Extension + ControlClick Button4 ; Don't install extension + Sleep 500 + ControlClick Button2 ; Finish + ; There's no way to tell it not to launch + WinWait,IMVU Login, chrome + Click, Left, 29, 230 ; Uncheck [run on startup] + Sleep 500 + Click, Left, 416, 11 ; Click X on window decoration to close + Sleep 500 + WinKill,IMVU Login, chrome ; and then close harshly, just in case? + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata kotor1 games \ + title="Star Wars: Knights Of The Old Republic" \ + publisher="Lucas Arts" \ + year="2003" \ + media="cd" \ + file1="KOTOR_1.iso" \ + file2="KOTOR_2.iso" \ + file3="KOTOR_3.iso" \ + file4="KOTOR_4.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/LucasArts/SWKotOR/swkotor.exe" + +load_kotor1() +{ + w_mount "KOTOR_1" + w_ahk_do " + SetTitleMatchMode 2 + SetWinDelay 500 + run ${W_ISO_MOUNT_LETTER}:setup.exe + winwait Star Wars, Welcome + if ( w_opt_unattended > 0 ) { + controlclick button1 + winwait Star Wars, Licensing Agreement + controlclick button2 + winwait Question, Licensing Agreement + controlclick button1 + winwait Star Wars, Destination Folder + controlclick button1 + winwait Star Wars, Program Folder + controlclick button2 + winwait Star Wars, Additional Shortcuts + ;unselect start menu shortcuts + controlclick button1 + controlclick button2 + controlclick button3 + controlclick button4 + controlclick button5 + controlclick button11 + winwait Star Wars, Review settings + controlclick button1 + } + winwait Next Disk, Please insert disk 2 + " + w_mount "KOTOR_2" + w_ahk_do " + SetTitleMatchMode 2 + if ( w_opt_unattended > 0 ) { + winwait Next Disk + controlclick button2 + } + winwait Next Disk, Please insert disk 3 + " + w_mount "KOTOR_3" + w_ahk_do " + SetTitleMatchMode 2 + if ( w_opt_unattended > 0 ) { + winwait Next Disk + controlclick button2 + } + winwait Next Disk, Please insert disk 4 + " + w_mount "KOTOR_4" + w_ahk_do " + SetTitleMatchMode 2 + if ( w_opt_unattended > 0 ) { + winwait Next Disk + controlclick button2 + winwait Question, Desktop + controlclick button2 + winwait Question, DirectX + controlclick button2 ;don't install directx + } + winwait Star Wars, Complete + if ( w_opt_unattended > 0 ) { + controlclick button1 ;don't launch game + controlclick button4 + } + winwaitclose Star Wars, Complete + " +} + +#---------------------------------------------------------------- + +w_metadata losthorizon_demo games \ + title="Lost Horizon Demo" \ + publisher="Deep Silver" \ + year="2010" \ + media="manual_download" \ + file1="Lost_Horizon_Demo_EN.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Deep Silver/Lost Horizon Demo/fsasgame.exe" + +load_losthorizon_demo() +{ + w_download_manual http://www.fileplanet.com/215704/download/Lost-Horizon-Demo Lost_Horizon_Demo_EN.exe + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + run Lost_Horizon_Demo_EN.exe + WinWait,Lost Horizon Demo, Destination + if ( w_opt_unattended > 0 ) { + Sleep 500 + Send {RAW}"$W_TMP" + ControlClick Button2 ;Install + WinWaitClose,Lost Horizon Demo,Installation + Sleep 1000 + Click, Left, 169, 371 + WinWait,Lost Horizon Demo - InstallShield Wizard,Welcome + Sleep 500 + ControlClick Button1 ;Next + WinWait,Lost Horizon Demo - InstallShield Wizard,License + ControlFocus,Button3,Lost Horizon Demo + Sleep 500 + Send {Space} + ControlClick Button1 ;Next + WinWait,Lost Horizon Demo - InstallShield Wizard,program + Sleep 500 + ControlClick Button2 ;Next + WinWait,Lost Horizon Demo - InstallShield Wizard,features + Sleep 500 + ControlClick Button4 ;Next + WinWait,Lost Horizon Demo - InstallShield Wizard,begin + Sleep 500 + ControlClick Button1 ;Next + } + WinWaitClose + WinWait,Lost Horizon Demo - InstallShield Wizard,Complete + if ( w_opt_unattended > 0 ) { + ControlFocus,Button2,Lost Horizon + Sleep 500 + Send {Space} + Sleep 500 + ControlClick Button4 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata lego_potc_demo games \ + title="Lego Pirates of the Caribbean Demo" \ + publisher="Travellers Tales" \ + year="2011" \ + media="manual_download" \ + file1="LPOTC_PC_Demo.zip" \ + installed_file1="$W_PROGRAMS_X86_WIN/Disney Interactive Studios/LEGO Pirates DEMO/LEGOPiratesDEMO.exe" + +load_lego_potc_demo() +{ + w_download_manual http://www.gamershell.com/download_73976.shtml LPOTC_PC_Demo.zip 3025dcbbee9ff2d74d7837a78ef5b7aceae15d8f + cd "$W_TMP" + w_info "Unpacking $file1" + w_try_unzip . "$W_CACHE/$W_PACKAGE/$file1" LPOTC_PC_Demo.exe + w_ahk_do " + SetWinDelay, 500 + SetTitleMatchMode, 2 + SetTitleMatchMode, slow ; since word English in first dialog can only be read 'slowly' + run LPOTC_PC_Demo.exe + if ( w_opt_unattended > 0 ) { + winwait,LEGO,English + sleep 500 + winactivate + send {Tab}{Tab}{Enter} + winwaitclose,LEGO,English + + winwait, LEGO, License + winactivate + send {Space} + sleep 500 + send {Enter} + winwaitclose, LEGO, License + + winwait, DirectX + ControlClick, Button1 ; next + ;send {Enter} ; next + winwaitclose, DirectX + + winwait, LEGO, License ; DIRECTX shows up in slow text, could wait for that + winactivate + sleep 500 + ControlClick, Button1 ; accept + ;send {Tab}{Tab}{Space} ; accept + sleep 500 + send {Enter} + winwaitclose, LEGO, License + } + winwait, LEGO, continue + if ( w_opt_unattended > 0 ) { + ControlClick, Button2 + sleep 1000 + } + winwaitclose, LEGO + " +} + +#---------------------------------------------------------------- + +w_metadata lhp_demo games \ + title="LEGO Harry Potter Demo [Years 1-4]" \ + publisher="Travellers Tales / WB" \ + year="2010" \ + media="download" \ + file1="LEGOHarryPotterDEMO.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/WB Games/LEGO_Harry_Potter_DEMO/LEGOHarryPotterDEMO.exe" + +load_lhp_demo() +{ + case "$LANG" in + *UTF-8*|*utf8*) ;; + *) + w_warn "This installer fails in non-utf-8 locales. Doing 'export LANG=en_US.UTF-8'." + LANG=en_US.UTF-8 + export LANG + ;; + esac + + w_download "http://static.kidswb.com/legoharrypottergame/LEGOHarryPotterDEMO.exe" bb0a30ad9a7cc51c80e1bb1f3eec22e6ccc1a706 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, LEGOHarryPotterDEMO.exe + winwait, LEGO, language + if ( w_opt_unattended > 0 ) { + controlclick, Button1 + winwait, LEGO, License + controlclick, Button1 + controlclick, Button2 + winwait, LEGO, installation method + controlclick, Button2 + } + winwait, LEGO, Finish + if ( w_opt_unattended > 0 ) + controlclick, Button1 + + winwaitclose, LEGO, Finish + " + + # Work around locale issues by symlinking the app's directory to not have a funny char + # Won't really work on cygwin, but that's ok. + cd "$W_PROGRAMS_X86_UNIX/WB Games" + ln -s LEGO*Harry\ Potter*DEMO LEGO_Harry_Potter_DEMO +} + +#---------------------------------------------------------------- + +w_metadata lswcs games \ + title="Lego Star Wars Complete Saga" \ + publisher="Lucasarts" \ + year="2009" \ + media="dvd" \ + file1="LEGOSAGA.iso" \ + installed_file1="$W_PROGRAMS_X86_WIN/LucasArts/LEGO Star Wars - The Complete Saga/LEGOStarWarsSaga.exe" + +load_lswcs() +{ + w_mount LEGOSAGA + w_ahk_do " + run ${W_ISO_MOUNT_LETTER}:setup.exe + SetTitleMatchMode, 2 + winwait, Choose Setup Language + if ( w_opt_unattended > 0 ) { + send {Enter} + winwait, LEGO, License Agreement + send a{Enter} + } + winwait, LEGO, method + if ( w_opt_unattended > 0 ) { + ControlClick Easy Installation + sleep 1000 + } + winwaitclose, LEGO + " + w_warn "This game is copy-protected, and requires the real disc in a real drive to run." +} + +#---------------------------------------------------------------- + +w_metadata lemonysnicket games \ + title="Lemony Snicket: A Series of Unfortunate Events" \ + publisher="Activision" \ + year="2004" \ + media="cd" \ + file1="Lemony Snicket.iso" + +load_lemonysnicket() +{ + w_mount "Lemony Snicket" + w_ahk_do " + SetTitleMatchMode, 2 + Run, ${W_ISO_MOUNT_LETTER}:setup.exe + WinWait, Lemony, Welcome + if ( w_opt_unattended > 0 ) { + sleep 1000 + ControlClick, Button1 ; Next + WinWait, Lemony, License + sleep 1000 + ControlClick, Button2 ; Accept + WinWait, Lemony, Minimum System + sleep 1000 + ControlClick, Button2 ; Yes + WinWait, Lemony, Destination + sleep 1000 + ControlClick, Button1 ; Next + WinWait, Lemony, Select Program Folder + sleep 1000 + ControlClick, Button2 ; Next + WinWait, Lemony, Start Copying + sleep 1000 + ControlClick, Button1 ; Next + WinWait, Question, Would you like to add a desktop shortcut + sleep 1000 + ControlClick, Button2 ; No + WinWait, Question, Would you like to register + sleep 1000 + ControlClick, Button2 ; No + ;WinWait, Information, Please register + ;sleep 1000 + ;ControlClick, Button1 ; OK + WinWait, Lemony, Complete + sleep 1000 + ControlClick, Button4 ; Finish + WinWait, Lemony, Play + sleep 1000 + ControlClick, Button6 ; Exit + WinWait, Lemony, Are you sure + sleep 1000 + ControlClick, Button1 ; Yes already + } + WinWaitClose, Lemony + " +} + +#---------------------------------------------------------------- + +w_metadata luxor_ar games \ + title="Luxor Amun Rising" \ + publisher="MumboJumbo" \ + year="2006" \ + media="cd" \ + file1="LUXOR_AMUNRISING.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/MumboJumbo/Luxor Amun Rising/Luxor AR.exe" + +load_luxor_ar() +{ + w_mount LUXOR_AMUNRISING + + w_ahk_do " + SetWinDelay, 500 + SetTitleMatchMode, 2 + run, ${W_ISO_MOUNT_LETTER}:Luxor_AR_Setup.exe + winwait, Luxor + if ( w_opt_unattended > 0 ) { + ControlClick, Button2 ; Agree + winwait, Folder + ControlClick, Button2 ; Install + winwait, Completed + ControlClick, Button2 ; Next + } + winwait, Success + if ( w_opt_unattended > 0 ) { + ControlClick, Button6 ; Uncheck Play + ControlClick, Button2 ; Close + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata masseffect2 games \ + title="Mass Effect 2 (drm broken on wine)" \ + publisher="BioWare" \ + year="2010" \ + media="dvd" \ + file1="MassEffect2.iso" \ + file2="ME2_Disc2.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Mass Effect 2/Binaries/MassEffect2.exe" \ + wine_showstoppers="23184" + +load_masseffect2() +{ + w_mount MassEffect2 + w_read_key + + # FIXME: only do this for nvidia cards + if w_workaround_wine_bug 23151 "Disabling glsl" + then + w_call glsl=disabled + fi + + w_ahk_do " + SetTitleMatchMode, 2 + run, ${W_ISO_MOUNT_LETTER}:Setup.exe + winwait, Installer Language + if ( w_opt_unattended > 0 ) { + send {Enter} + winwait, Mass Effect + send {Enter} + winwait, Mass Effect, License + ControlClick, Button4 + ControlClick, Button2 + winwait, Mass Effect, Registration Code + send $W_KEY + ControlClick, Button2 + winwait, Mass Effect, Install Type + ControlClick, Button2 + } + winwait, Insert Disc + " + sleep 5 + w_mount ME2_Disc2 + w_ahk_do " + SetTitleMatchMode, 2 + if ( w_opt_unattended > 0 ) { + winwait, Insert Disc + ControlClick, Button4 + ; on windows, the first click doesn't seem to do it, so press enter, too + sleep 1000 + send {Enter} + } + ; Some installs may not get to this point due to an installer hang/crash (bug 22919) + ; The hang/crash happens after the Physx install but does not seem to affect gameplay + loop + { + ifwinexist, Mass Effect, Finish + { + if ( w_opt_unattended > 0 ) { + winkill, Mass Effect + } + break + } + Process, exist, Installer.exe + me2pid = %ErrorLevel% + if me2pid = 0 + break + sleep 1000 + } + " +} + +#---------------------------------------------------------------- + +w_metadata masseffect2_demo games \ + title="Mass Effect 2" \ + publisher="BioWare" \ + year="2010" \ + media="download" \ + file1="MassEffect2DemoEN.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Mass Effect 2 Demo/Binaries/MassEffect2.exe" + +load_masseffect2_demo() +{ + w_download http://static.cdn.ea.com/bioware/u/f/eagames/bioware/masseffect2/ME2_DEMO/MassEffect2DemoEN.exe cda9a25387a98e29772b3ccdcf609f87188285e2 + + # FIXME: only do this for nvidia cards + if w_workaround_wine_bug 23151 "Disabling glsl" + then + w_call glsl=disabled + fi + + # Don't let self-extractor write into $W_CACHE + case "$OS" in + "Windows_NT") + cp "$W_CACHE/$W_PACKAGE/MassEffect2DemoEN.exe" "$W_TMP" + chmod +x "$W_TMP"/MassEffect2DemoEN.exe ;; + *) + ln -sf "$W_CACHE/$W_PACKAGE/MassEffect2DemoEN.exe" "$W_TMP" ;; + esac + cd "$W_TMP" + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run, MassEffect2DemoEN.exe + winwait, Mass Effect 2 Demo + if ( w_opt_unattended > 0 ) { + send {Enter} + winwait, Mass Effect 2 Demo, conflicts + send {Enter} + winwait, Mass Effect, License + ControlClick, Button4 + ;ControlClick, Button2 + send {Enter} + winwait, Mass Effect, Install Type + ControlClick, Button2 + } + ; Some installs may not get to this point due to an installer hang/crash (bug 22919) + ; The hang/crash happens after the Physx install but does not seem to affect gameplay + loop + { + ifwinexist, Mass Effect, Finish + { + if ( w_opt_unattended > 0 ) { + winkill, Mass Effect + } + break + } + Process, exist, Installer.exe + me2pid = %ErrorLevel% + if me2pid = 0 + break + sleep 1000 + } + " +} + +#---------------------------------------------------------------- + +w_metadata maxmagicmarker_demo games \ + title="Max & the Magic Marker Demo" \ + publisher="Press Play" \ + year="2010" \ + media="download" \ + file1="max_demo_pc.zip" \ + installed_exe1="$W_PROGRAMS_X86_WIN/maxmagicmarker_demo/max and the magic markerdemo pc.exe" + +load_maxmagicmarker_demo() +{ + w_download http://www.maxandthemagicmarker.com/maxdemo/max_demo_pc.zip 1a79c583ff40e7b2cf05d18a89a806fd6b88a5d1 + + w_try_unzip "$W_PROGRAMS_X86_UNIX"/$W_PACKAGE "$W_CACHE/$W_PACKAGE"/max_demo_pc.zip + # Work around bug in game?! + cd "$W_PROGRAMS_X86_UNIX/$W_PACKAGE" + mv "max and the magic markerdemo pc" "max and the magic markerdemo pc"_Data +} + +#---------------------------------------------------------------- + +w_metadata mdk games \ + title="MDK (3dfx)" \ + publisher="Playmates International" \ + year="1997" \ + media="cd" \ + file1="MDK.iso" \ + installed_exe1="C:/SHINY/MDK/MDK3DFX.EXE" + +load_mdk() +{ + # Needed even on Windows, some people say. Haven't tried the D3D version on win7 yet. + w_call glidewrapper + + w_download http://www.falconfly.de/downloads/patch-mdk3dfx.zip edcff0160c62d23b00c55c0bdfa38a6e90d925b0 + + w_mount MDK + cd "$W_ISO_MOUNT_ROOT" + w_ahk_do " + SetTitleMatchMode, 2 + SetTitleMatchMode, slow + run ${W_ISO_MOUNT_LETTER}:setup.exe + winwait, MDK + if ( w_opt_unattended > 0 ) { + click, left, 80, 80 ; USA + winwait, Welcome, purchasing MDK + ControlClick, Button1 ; Next + winwait, Select Target Platform + ControlClick, Button6 ; Next + winwait, Select Installation Options + ControlClick, Button3 ; Large + ControlClick, Button6 ; Next + winwait, Destination + ControlClick, Button1 ; Next + winwait, Program Folder + ControlClick, Button2 ; Next + winwait, Start + ControlClick, Button1 ; Next + Loop { + IfWinExist, Setup, ProgramFolder + send {Enter} + IfWinExist, Setup Complete + break + sleep 500 + } + } + WinWait, Setup Complete + if ( w_opt_unattended > 0 ) { + ControlClick, Button1 ; uncheck readme + ControlClick, Button4 ; Finish + WinWait, Question, DirectX + ControlClick, Button2 ; No + WinWait, Information, complete + ControlClick, Button1 ; No + } + WinWaitClose + " + cd "$W_DRIVE_C/SHINY/MDK" + w_try_unzip . "$W_CACHE/$W_PACKAGE"/patch-mdk3dfx.zip + + # TODO: wine fails to install menu items, add a workaround for that +} + +#---------------------------------------------------------------- + +w_metadata menofwar games \ + title="Men of War" \ + publisher="Aspyr Media" \ + year="2009" \ + media="dvd" \ + file1="Men of War.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Aspyr/Men of War/mow.exe" + +load_menofwar() +{ + w_mount "Men of War" + + cd "$W_ISO_MOUNT_ROOT" + w_ahk_do " + SetTitleMatchMode, 2 + SetTitleMatchMode, slow + run ${W_ISO_MOUNT_LETTER}:setup.exe + winwait, Select Setup Language, Select the language + if ( w_opt_unattended > 0 ) { + sleep 1000 + ControlClick, TNewButton1, Select Setup Language, Select the language + winwait, Men of War + sleep 1000 + ControlClick, TButton4, Men of War + winwait, Setup - Men of War, ACCEPTANCE OF AGREEMENT + sleep 1000 + ControlClick, TNewRadioButton1, Setup - Men of War, ACCEPTANCE OF AGREEMENT + ControlClick, TNewButton1, Setup - Men of War, ACCEPTANCE OF AGREEMENT + } + winwait, Setup - Men of War, Setup has finished installing + if ( w_opt_unattended > 0 ) { + sleep 1000 + ControlClick, x242 y254 + ControlClick, x242 y278 + ControlClick, TNewButton1, Setup - Men of War, Setup has finished + } + " +} + +#---------------------------------------------------------------- + +w_metadata mb_warband_demo games \ + title="Mount & Blade Warband Demo" \ + publisher="Taleworlds" \ + year="2010" \ + media="download" \ + file1="mb_warband_setup_1143.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Mount&Blade Warband/mb_warband.exe" \ + homepage="http://www.taleworlds.com" + +load_mb_warband_demo() +{ + w_download "http://download.taleworlds.com/mb_warband_setup_1143.exe" 94fb829068678e27bcd67d9e0fde7f08c51a23af + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode 2 + run mb_warband_setup_1143.exe + winwait Warband + if ( w_opt_unattended > 0 ) { + controlclick button2 + winwait Warband + controlclick button2 + winwait Warband, Finish + controlclick button4 + controlclick button2 + } + winwaitclose Warband + " +} + +#---------------------------------------------------------------- + +w_metadata mise games \ + title="Monkey Island: Special Edition" \ + publisher="LucasArts" \ + year="2009" \ + media="dvd" \ + file1="SecretOfMonkeyIslandSE_ddsetup.zip" \ + installed_exe1="$W_PROGRAMS_X86_WIN/LucasArts/The Secret of Monkey Island Special Edition/MISE.exe" + +load_mise() +{ + w_download_manual "http://www.direct2drive.com/8241/product/Buy-The-Secret-of-Monkey-Island(R):-Special-Edition-Download" SecretOfMonkeyIslandSE_ddsetup.zip 2e32458698c9ec7ebce94ae5c57531a3fe1dbb9e + + mkdir -p "$W_TMP/$W_PACKAGE" + cd "$W_TMP/$W_PACKAGE" + + # Don't extract DirectX/dotnet35 installers, they just take up extra time and aren't needed. Luckily, MISE copes well and just skips them if they are missing: + w_try unzip "$W_CACHE/$W_PACKAGE"/SecretOfMonkeyIslandSE_ddsetup.zip -x DirectX* dotnet* + + w_ahk_do " + SetTitleMatchMode, 2 + run, setup.exe + WinWait, The Secret of Monkey Island, This wizard will guide you + sleep 1000 + ControlClick, Button2 + WinWait, The Secret of Monkey Island, License Agreement + sleep 1000 + ControlSend, RichEdit20A1, {CTRL}{END} + sleep 1000 + ControlClick, Button4 + sleep 1000 + ControlClick, Button2 + WinWait, The Secret of Monkey Island, Setup Type + sleep 1000 + ControlClick, Button2 + WinWait, The Secret of Monkey Island, Click Finish + sleep 1000 + ControlClick, Button2 + " + + # FIXME: This app has two different keys - you can use either one. How do we handle that with w_read_key? + if test -f "$W_CACHE"/$W_PACKAGE/activationcode.txt + then + MISE_KEY=`cat "$W_CACHE"/$W_PACKAGE/activationcode.txt` + w_ahk_do " + SetTitleMatchMode, 2 + run, $W_PROGRAMS_X86_WIN\\LucasArts\\The Secret of Monkey Island Special Edition\\MISE.exe + winwait, Product Activation + ControlClick, Edit1 ; Activation Code + send $MISE_KEY + ControlClick Button4 ; Activate Online + winwait, Product Activation, SUCCESSFUL + winClose + sleep 1000 + Process, Close, MISE.exe + " + elif test -f "$W_CACHE"/$W_PACKAGE/unlockcode.txt + then + MISE_KEY=`cat "$W_CACHE"/$W_PACKAGE/unlockcode.txt` + w_ahk_do " + SetTitleMatchMode, 2 + run, $W_PROGRAMS_X86_WIN\\LucasArts\\The Secret of Monkey Island Special Edition\\MISE.exe + winwait, Product Activation + ControlClick, Edit3 ; Unlock Code + send $MISE_KEY + ControlClick Button6 ; Activate manual + winClose + sleep 1000 + Process, Close, MISE.exe + " + fi +} + +#---------------------------------------------------------------- + +w_metadata myth2_demo games \ + title="Myth II demo 1.7.2" \ + publisher="Project Magma" \ + year="2011" \ + media="download" \ + file1="Myth2_Demo_172.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Myth II Demo/Myth II Demo.exe" \ + homepage="http://projectmagma.net/" + +load_myth2_demo() +{ + # Originally a 1998 game by Bungie; according to Wikipedia, they handed the + # source code to Project Magma for further development. + + # 1 May 2011 1.7.2 sha1sum e0a8f707377e71314a471a09ad2a55179ea44588 + w_download http://tain.totalcodex.net/items/download/myth-ii-demo-windows e0a8f707377e71314a471a09ad2a55179ea44588 Myth2_Demo_172.exe + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 500 + run, $file1 + winwait, Setup, Welcome + if ( w_opt_unattended > 0 ) { + winactivate + send {Enter} ; next + winwait, Setup, Components + send {Enter} ; next + winwait, Setup, Location + send {Enter} ; install + } + winwait, Setup, Complete + if ( w_opt_unattended > 0 ) { + controlclick, Button4 ; Do not run + controlclick, Button2 ; Finish + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata nfsshift_demo games \ + title="Need For Speed: SHIFT Demo" \ + publisher="EA" \ + year="2009" \ + media="download" \ + file1="NFSSHIFTPCDEMO.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/Need for Speed SHIFT Demo/shiftdemo.exe" + +load_nfsshift_demo() +{ + #w_download http://cdn.needforspeed.com/data/downloads/shift/NFSSHIFTPCDEMO.exe 7b267654d08c54f15813f2917d9d74ec40905db7 + w_download http://www.legendaryreviews.com/download-center/demos/NFSSHIFTPCDEMO.exe 7b267654d08c54f15813f2917d9d74ec40905db7 + + w_try cp "$W_CACHE/$W_PACKAGE/$file1" "$W_TMP" + + cd "$W_TMP" + w_ahk_do " + SetTitleMatchMode, 2 + SetTitleMatchMode, slow + run, $file1 + winwait, WinRAR + if ( w_opt_unattended > 0 ) { + ControlClick, Button2 + winwait, SHIFT, View the readme + controlclick, Button1 + ; Not all systems need the Visual C++ runtime + loop + { + ifwinexist, Visual C++ + { + controlclick, Button1 + break + } + ifwinexist, Setup, SHIFT Demo License + { + break + } + sleep 1000 + } + winwait, Setup, SHIFT Demo License + Sleep 1000 + send {Space} + Sleep 1000 + send {Enter} + winwait, Setup, DirectX + Sleep 1000 + send {Space} + Sleep 1000 + send {Enter} + winwait, Setup, Destination + Sleep 1000 + send {Enter} + winwait, Setup, begin + Sleep 1000 + controlclick, Button1 + } + winwait, Setup, Finish + if ( w_opt_unattended > 0 ) { + Sleep 1000 + controlclick, Button5 + controlclick, Button1 + } + winwaitclose, Setup, Finish + " +} + +#---------------------------------------------------------------- + +w_metadata njcwp_trial apps \ + title="NJStar Chinese Word Processor trial" \ + publisher="NJStar" \ + year="2009" \ + media="download" \ + file1="njcwp.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/NJStar Chinese WP/njstar.exe" \ + homepage="http://www.njstar.com/cms/njstar-chinese-word-processor" + +load_njcwp_trial() +{ + w_download http://www.njstar.com/download/njcwp.exe 006da155bad1ac4a73b953c98cb821eb7fd96507 + cd "$W_CACHE/$W_PACKAGE" + if test "$W_OPT_UNATTENDED" + then + w_ahk_do " + SetTitleMatchMode, 2 + run $file1 + WinWait, Setup, Wizard + ControlClick Button2 ; next + WinWait, Setup, License + ControlClick Button2 ; agree + WinWait, Setup, Install + ControlClick Button2 ; install + WinWait, Setup, Completing + ControlClick Button4 ; do not launch + ControlClick Button2 ; finish + WinWaitClose + " + else + w_try "$WINE" $file1 + fi +} + +#---------------------------------------------------------------- + +w_metadata njjwp_trial apps \ + title="NJStar Japanese Word Processor trial" \ + publisher="NJStar" \ + year="2009" \ + media="download" \ + file1="njjwp.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/NJStar Japanese WP/njstarj.exe" \ + homepage="http://www.njstar.com/cms/njstar-japanese-word-processor" + +load_njjwp_trial() +{ + w_download http://www.njstar.com/download/njjwp.exe 363d22e4ca7b79d0290a8ccdb0fa99169971d418 + cd "$W_CACHE/$W_PACKAGE" + if test "$W_OPT_UNATTENDED" + then + w_ahk_do " + SetTitleMatchMode, 2 + run $file1 + WinWait, Setup, Wizard + ControlClick Button2 ; next + WinWait, Setup, License + ControlClick Button2 ; agree + WinWait, Setup, Install + ControlClick Button2 ; install + WinWait, Setup, Completing + ControlClick Button4 ; do not launch + ControlClick Button2 ; finish + WinWaitClose + " + else + w_try "$WINE" $file1 + fi +} + +#---------------------------------------------------------------- + +w_metadata oblivion games \ + title="Elder Scrolls: Oblivion" \ + publisher="Bethesda Game Studios" \ + year="2006" \ + media="dvd" \ + file1="Oblivion.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Bethesda Softworks/Oblivion/Oblivion.exe" + +load_oblivion() +{ + w_mount "Oblivion" + + cd "$W_ISO_MOUNT_ROOT" + w_ahk_do " + SetTitleMatchMode, 2 + run, Setup.exe + winwait, Oblivion, Welcome to the + if ( w_opt_unattended > 0 ) { + sleep 500 + controlclick, Button1 + winwait, Oblivion, License Agreement + sleep 500 + controlclick, Button3 + sleep 500 + controlclick, Button1 + winwait, Oblivion, Choose Destination + sleep 500 + controlclick, Button1 + winwait, Oblivion, Ready to Install + sleep 500 + controlclick, Button1 + winwait, Oblivion, Complete + sleep 500 + controlclick, Button1 + sleep 500 + controlclick, Button2 + sleep 500 + controlclick, Button3 + } + winwaitclose, Oblivion, Complete + " + + if w_workaround_wine_bug 20074 "Installing native d3dx9_36" + then + w_call d3dx9_36 + fi +} + +#---------------------------------------------------------------- + +w_metadata penpenxmas games \ + title="Pen-Pen Xmas Olympics" \ + publisher="Army of Trolls / Black Cat" \ + year="2007" \ + media="download" \ + file1="PenPenXmasOlympics100.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/PPO/PPO.exe" + +load_penpenxmas() +{ + W_BROWSERAGENT=1 \ + w_download http://retrospec.sgn.net/download/files/PenPenXmasOlympics100.exe 36ec83cffa0ad3cc19dea33193b54bdaaea6db5b + + cd "$W_CACHE/$W_PACKAGE" + "$WINE" PenPenXmasOlympics100.exe $W_UNATTENDED_SLASH_S +} + +#---------------------------------------------------------------- + +w_metadata plantsvszombies games \ + title="Plants vs. Zombies" \ + publisher="PopCap Games" \ + year="2009" \ + media="download" \ + file1="PlantsVsZombiesSetup.exe" \ + installed_file1="$W_PROGRAMS_X86_WIN/PopCap Games/Plants vs. Zombies/PlantsVsZombies.exe" + +load_plantsvszombies() +{ + w_download "http://downloads.popcap.com/www/popcap_downloads/PlantsVsZombiesSetup.exe" c46979be135ef1c486144fa062466cdc51b740f5 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + run PlantsVsZombiesSetup.exe + winwait, Plants vs. Zombies Installer + if ( w_opt_unattended > 0 ) { + sleep 1000 + send {Enter} + winwait, Plants vs. Zombies License Agreement + ControlClick Button1 + } + winwait, Plants vs. Zombies Installation Complete! + if ( w_opt_unattended > 0 ) { + sleep 1000 + send {Space}{Enter} + ControlClick, x309 y278, Plants vs. Zombies Installation Complete!,,,, Pos + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata popfs games \ + title="Prince of Persia The Forgotten Sands" \ + publisher="Ubisoft" \ + year="2010" \ + media="dvd" \ + file1="PoP_TFS.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Ubisoft/Prince of Persia The Forgotten Sands/Prince of Persia.exe" + +load_popfs() +{ + w_mount PoP_TFS + + w_ahk_do " + SetTitleMatchMode, 2 + run, ${W_ISO_MOUNT_LETTER}:Setup.exe + winwait, Prince of Persia, Language + if ( w_opt_unattended > 0 ) { + sleep 500 + ControlClick, Button3 + winwait, Prince of Persia, Welcome + sleep 500 + ControlClick, Button1 + winwait, Prince of Persia, License + sleep 500 + ControlClick, Button5 + sleep 500 + ControlClick, Button2 + winwait, Prince of Persia, Click Install + sleep 500 + ControlClick, Button1 + ; Avoid error when creating desktop shortcut + Loop + { + IfWinActive, Prince of Persia, Click Finish + break + IfWinExist, Prince of Persia, desktop shortcut + { + sleep 500 + ControlClick, Button1, Prince of Persia, desktop shortcut + break + } + sleep 5000 + } + } + winwait, Prince of Persia, Click Finish + if ( w_opt_unattended > 0 ) { + sleep 500 + ControlClick, Button4 + } + " +} + +#---------------------------------------------------------------- + +w_metadata qq apps \ + title="QQ 8.0(Chinese chat app)" \ + publisher="Tencent" \ + year="2015" \ + media="download" \ + file1="QQ8.0.exe" \ + file2="QQ.tar.gz"\ + installed_exe1="$W_PROGRAMS_X86_WIN/Tencent/QQ/Bin/QQScLauncher.exe" \ + homepage="http://www.qq.com" \ + unattended="no" + +load_qq() +{ + w_download http://dldir1.qq.com/qqfile/qq/QQ8.0/16968/QQ8.0.exe ef92f3863113971c95a79aa75e601893d803826c + w_download http://hillwoodhome.net/wine/QQ.tar.gz 08de45d3e5bb34b22e7c33e1163daec69742db58 + + if w_workaround_wine_bug 5162 "Installing native riched20 to work around can't input username." + then + w_call riched20 + fi + + # Make sure chinese fonts are available + w_call fakechinese + + # uses mfc42u.dll + w_call mfc42 + + if w_workaround_wine_bug 38171 "Installing desktop file to work around bug" + then + cd "$W_TMP/" + tar -zxf "$W_CACHE/qq/QQ.tar.gz" + mkdir -p $HOME/.local/share/applications/wine/Programs/腾讯软件/QQ + mkdir -p $HOME/.local/share/icons/hicolor/48x48/apps + mkdir -p $HOME/.local/share/icons/hicolor/256x256/apps + w_try mv QQ/腾讯QQ.desktop ~/.local/share/applications/wine/Programs/腾讯软件/QQ + w_try mv QQ/48x48/QQ.png ~/.local/share/icons/hicolor/48x48/apps + w_try mv QQ/256x256/QQ.png ~/.local/share/icons/hicolor/256x256/apps + echo Exec=env WINEPREFIX="$WINEPREFIX" "$WINE" $W_PROGRAMS_X86_WIN\/Tencent\/QQ\/bin\/QQScLauncher.exe >> $HOME/.local/share/applications/wine/Programs/腾讯软件/QQ/腾讯QQ.desktop + fi + + if w_workaround_wine_bug 39657 "Disable ntoskrnl.exe to work around can't be started bug" + then + w_override_dlls disabled ntoskrnl.exe + fi + + if w_workaround_wine_bug 37680 "Disable txplatform.exe to work around QQ can't be quit cleanly" + then + w_override_dlls disabled txplatform.exe + fi + + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" "$file1" +} + +#---------------------------------------------------------------- + +w_metadata qqintl apps \ + title="QQ International Instant Messenger 2.11" \ + publisher="Tencent" \ + year="2014" \ + media="download" \ + file1="QQIntl2.11.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Tencent/QQIntl/Bin/QQ.exe" \ + homepage="http://www.imqq.com" \ + unattended="no" + +load_qqintl() +{ + w_download http://dldir1.qq.com/qqfile/QQIntl/QQi_PC/QQIntl2.11.exe 030df82390e7962177fcef66fc1a0fd1a3ba4090 + + if w_workaround_wine_bug 33086 "Installing native riched20 to allow typing in username" + then + w_call riched20 + fi + + if w_workaround_wine_bug 37617 "Installing native wininet to work around crash" + then + w_call wininet + fi + + if w_workaround_wine_bug 37680 "Disable txplatform.exe to work around QQ can't be quit cleanly" + then + w_override_dlls disabled txplatform.exe + fi + + # Make sure chinese fonts are available + w_call fakechinese + + # wants mfc80u.dll + w_call vcrun2005 + + cd "$W_CACHE/$W_PACKAGE" + w_try "$WINE" "$file1" +} + +#---------------------------------------------------------------- + +w_metadata ragnarok games \ + title="Ragnarok" \ + publisher="GRAVITY" \ + year="2002" \ + media="manual_download" \ + file1="iRO-13.2.2-FullInstall-20110421-1717.msi" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Gravity/Ragnarok Online/Ragnarok.exe" + +load_ragnarok() +{ + if w_workaround_wine_bug 657 "Visual C++ 6 runtime" + then + w_call vcrun6 + fi + + # publisher puts SHA1 checksums on download page, nice + # BDA295E3A2A57CD02BD122ED7BF4836AC012369A + w_download_manual http://www.playragnarok.com/downloads/clientdownload.aspx iRO-13.2.2-FullInstall-20110421-1717.msi bda295e3a2a57cd02bd122ed7bf4836ac012369a + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + Run, msiexec /i $file1 + SetTitleMatchMode, 2 + WinWait, Ragnarok Online Setup, Please read the Ragnarok Online License Agreement + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button1 + Sleep 500 + ControlClick Button3 + } + WinWait, Ragnarok Online Setup, Completed the Ragnarok Online Setup Wizard + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button1 ;Direct + } + " + + # Game autoupdates: + w_killall "Ragnarok.exe" +} + +#---------------------------------------------------------------- + +w_metadata rct3deluxe games \ + title="RollerCoaster Tycoon 3 Deluxe (drm broken on wine)" \ + publisher="Atari" \ + year="2004" \ + media="cd" \ + file1="RCT3.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Atari/RollerCoaster Tycoon 3/RCT3.EXE"\ + wine_showstoppers="21448" + +load_rct3deluxe() +{ + w_mount RCT3 + + # FIXME: make videos and music work + # Game still doesn't show .wmv logo videos nor play .wma background audio in menu + # though it does in Jake's screencast. Loading wmp9 and devenum gets it to + # try to load the .wmv logos, but it crashes in quartz :-( + # But at least it's playable without the logo videos and background. + + w_ahk_do " + SetWinDelay 500 + SetTitleMatchMode, 2 + run ${W_ISO_MOUNT_LETTER}:setup-rtc3.exe + if ( w_opt_unattended > 0 ) { + WinWait, Select Setup Language + controlclick, TButton1 ; accept + WinWait Setup - RollerCoaster Tycoon 3, Welcome + controlclick, TButton1 ; Next + WinWait Setup - RollerCoaster Tycoon 3, License + controlclick, TRadioButton1 ; Accept + sleep 500 + controlclick, TButton2 ; Next + WinWait Setup - RollerCoaster Tycoon 3, Destination + controlclick, TButton3 ; Next + WinWait Setup - RollerCoaster Tycoon 3, Start Menu + controlclick, TButton4 ; Next + WinWait Setup - RollerCoaster Tycoon 3, Additional + controlclick, TButton4 ; Next + WinWait Setup - RollerCoaster Tycoon 3, begin + controlclick, TButton4 ; Install + WinWait, Atari Product Registration + controlclick, Button6 ; Close + WinWait, Product Registration, skip + controlclick, Button2 ; Yes, skip + } + WinWait Setup - RollerCoaster Tycoon 3, finished + if ( w_opt_unattended > 0 ) { + controlclick, TNewCheckListBox1 ; uncheck Launch + controlclick, TButton4 ; Finish + } + WinWaitClose Setup - RollerCoaster Tycoon 3, finished + " +} + +#---------------------------------------------------------------- + +w_metadata rayman2_demo games \ + title="Rayman 2 High Demo" \ + publisher="Ubisoft" \ + year="1999" \ + media="download" \ + file1="rayman2high.zip" \ + installed_exe1="c:/UbiSoft/Rayman2Demo/Rayman2Demo.exe" + +load_rayman2_demo() +{ + w_download "ftp://ftp.ubisoft.com/Rayman2/rayman2high.zip" 14b2ad6f41e2e1358f3a4a5167d67a7111ea4fb5 + + cd "$W_TMP" + w_try unzip "$W_CACHE/$W_PACKAGE/rayman2high.zip" + + w_ahk_do " + SetWinDelay 500 + SetTitleMatchMode, 3 + Run, SETUP.EXE + WinWaitActive, UBI Soft Installer - Language Choice + if ( w_opt_unattended > 0 ) { + ControlClick button1 ; OK + WinWait, Ubi Soft Installer - Rayman 2 Demo + ControlClick button1 ; Install + WinWait, Ubi Soft Installer - Configuration choice + ControlClick button1 ; Install + WinWait, Ubi Soft Installer - Installation Directory + ControlClick button1 ; OK + WinWait, Ubi Soft Installer - Shortcut Choice + ControlClick button1 ; OK + WinWait, Ubi Soft Installer - Information file + ControlClick button2 ; No + } + WinWait, Ubi Soft Installer - Rayman 2 Demo + if ( w_opt_unattended > 0 ) { + ControlClick button4 ; Quit + } + WinWaitClose + " + + myexec="Exec=env WINEPREFIX=\"$WINEPREFIX\" wine "'C:\\\\\\\\windows\\\\\\\\UbiSoft\\\\\\\\SetupUbi.exe -play Rayman2' + mymenu="$HOME/Desktop/To Play Rayman 2 Demo.desktop" + if test -f "$mymenu" && w_workaround_wine_bug 26303 "Fixing desktop entry" + then + # this is a hack, hopefully the wine bug will be fixed soon + sed -i "s,Exec=.*,$myexec," "$mymenu" + fi + mymenu="$XDG_DATA_HOME/applications/wine/Programs/Ubi Soft Games/Rayman 2 Demo/1 To Play Rayman 2 Demo.desktop" + if test -f "$mymenu" && w_workaround_wine_bug 26304 "Fixing system menu" + then + # this is a hack, hopefully the wine bug will be fixed soon + sed -i "s,Exec=.*,$myexec," "$mymenu" + fi +} + +#---------------------------------------------------------------- + +w_metadata riseofnations_demo games \ + title="Rise of Nations Trial" \ + publisher="Microsoft" \ + year="2003" \ + media="manual_download" \ + file1="RiseOfNationsTrial.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Games/Rise of Nations Trial/nations.exe" + +load_riseofnations_demo() +{ + w_download_manual http://download.cnet.com/Rise-of-Nations-Trial-Version/3000-7562_4-10730812.html RiseOfNationsTrial.exe 33cbf1ebc0a93cb840f6296d8b529f6155db95ee + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + run RiseOfNationsTrial.exe + WinWait,Rise Of Nations Trial Setup + if ( w_opt_unattended > 0 ) { + sleep 2500 + ControlClick CButtonClassName2 + WinWait,Rise Of Nations Trial Setup, installed + sleep 2500 + ControlClick CButtonClassName7 + } + WinWaitClose + " + + if w_workaround_wine_bug 9027 + then + w_call directmusic + fi +} + +#---------------------------------------------------------------- + +w_metadata secondlife games \ + title="Second Life Viewer" \ + publisher="Linden Labs" \ + year="2003-2011" \ + media="download" \ + file1="Second_Life_3-2-8-248931_Setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/SecondLifeViewer/SecondLife.exe" + +load_secondlife() +{ + w_download http://download.cloud.secondlife.com/Viewer-3/Second_Life_3-2-8-248931_Setup.exe e08c16edc4d2fb68bb6275bed11a259a74918da5 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 500 + run, $file1 + if ( w_opt_unattended > 0 ) { + winwait, Installer Language + send {Enter} + winwait, Installation Folder + send {Enter} + } + winwait, Second Life, Start Second Life now + if ( w_opt_unattended > 0 ) { + send {Tab}{Enter} + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata sims3 games \ + title="The Sims 3 (drm broken on wine)" \ + publisher="EA" \ + year="2009" \ + media="dvd" \ + file1="Sims3.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/The Sims 3/Game/Bin/TS3.exe" \ + wine_showstoppers="26273" + +load_sims3() +{ + w_read_key + + w_mount Sims3 + # Default lang, USA, accept defaults, uncheck EA dl mgr, uncheck readme + w_ahk_do " + run ${W_ISO_MOUNT_LETTER}:Sims3Setup.exe + winwait, Choose Setup Language + if ( w_opt_unattended > 0 ) { + send {Enter} + SetTitleMatchMode, 2 + winwait, - InstallShield Wizard + sleep 1000 + ControlClick &Next >, - InstallShield Wizard + sleep 1000 + send uuuuuu{Tab}{Tab}{Enter} + sleep 1000 + send a{Enter} + sleep 1000 + send {Raw}$W_KEY + send {Enter} + winwait, - InstallShield Wizard, Setup Type + send {Enter} + winwait, - InstallShield Wizard, Click Install to begin + send {Enter} + winwait, - InstallShield Wizard, EA Download Manager + ControlClick Yes, - InstallShield Wizard + send {Enter} + } + winwait, - InstallShield Wizard, Complete + if ( w_opt_unattended > 0 ) { + ControlClick View the readme file, - InstallShield Wizard + ControlClick Finish, - InstallShield Wizard + } + winwaitclose + " + w_umount + + # DVD Region code is last digit. + # FIXME: download appropriate one rather than just US version. + w_download http://akamai.cdn.ea.com/eadownloads/u/f/sims/sims3/patches/TS3_1.19.44.010001_Update.exe 7d21a81aaea70bf102267456df4629ce68be0cc8 + + cd "$W_CACHE"/$W_PACKAGE + w_ahk_do " + run TS3_1.19.44.010001_Update.exe + SetTitleMatchMode, 2 + winwait, - InstallShield Wizard, Complete + if ( w_opt_unattended > 0 ) { + ControlClick Finish, - InstallShield Wizard + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata simsmed games \ + title="The Sims Medieval (drm broken on wine)" \ + publisher="EA" \ + year="2011" \ + media="dvd" \ + file1="TSimsM.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/The Sims Medieval/Game/Bin/TSM.exe" \ + wine_showstoppers="26273" + +load_simsmed() +{ + w_read_key + + w_mount TSimsM + # Default lang, USA, accept defaults, uncheck EA dl mgr, uncheck readme + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 1000 + run ${W_ISO_MOUNT_LETTER}:SimsMedievalSetup.exe + winwait, Choose Setup Language + if ( w_opt_unattended > 0 ) { + send {Enter} + SetTitleMatchMode, 2 + winwait, - InstallShield Wizard + ControlClick &Next >, - InstallShield Wizard + sleep 1000 + send uuuuuu{Tab}{Tab}{Enter} + WinWait, Sims, License + ControlClick Button3 ; Accept + sleep 1000 + ControlClick Button1 ; Next + sleep 1000 + send {Raw}$W_KEY + send {Enter} + winwait, - InstallShield Wizard, Setup Type + ControlClick &Complete ; was not defaulting to complete? + send {Enter} + winwait, - InstallShield Wizard, Click Install to begin + send {Enter} + + ; Handle optional dialogs + ; In Wine-1.3.16 and lower, before + ; http://www.winehq.org/pipermail/wine-cvs/2011-March/076262.html, + ; wine didn't claim to already have .net 4 installed, + ; and ran into bug 25535. + Loop + { + ; .net 4 install sometimes fails nicely + ifWinExist,, .NET Framework 4 has not been installed + { + ControlClick Button3 ; Finish + } + ; .net 4 install sometimes explodes + ifWinExist .NET Framework Initialization Error + { + send {Enter} + } + ifWinExist, Sims, Customer Experience Improvement + { + send {Enter} ; Next + } + ifWinExist, - InstallShield Wizard, Complete + break + sleep 1000 + } + } + winwait, - InstallShield Wizard, Complete + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; Do not view readme + send {Enter} ; Finish + } + winwaitclose + " + + # DVD Region code is last digit. + # FIXME: download appropriate one rather than just US version. + w_download http://akamai.cdn.ea.com/eadownloads/u/f/sims/sims/patches/TheSimsMedievalPatch_1.1.10.00001_Update.exe 7214ced8af7315741e05024faeacf9053b999b1b + + cd "$W_CACHE"/$W_PACKAGE + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 500 + run TheSimsMedievalPatch_1.1.10.00001_Update.exe + winwait, Medieval, will reset any in-progress quests + send {Enter} + winwait, Medieval, Welcome + if ( w_opt_unattended > 0 ) { + send {Enter} + } + winwait, - InstallShield Wizard, Complete + if ( w_opt_unattended > 0 ) { + ControlClick Finish, - InstallShield Wizard + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata sims3_gen games \ + title="The Sims 3: Generations (drm broken on Wine)" \ + publisher="EA" \ + year="2011" \ + media="dvd" \ + file1="Sims3EP04.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/The Sims 3 Generations/Game/Bin/TS3EP04.exe" \ + wine_showstoppers="26273" + +load_sims3_gen() +{ + if [ ! -f "$W_PROGRAMS_X86_WIN/Electronic Arts/The Sims 3/Game/Bin/TS3.exe" ] + then + w_die "You must have sims3 installed to install sims3_gen!" + fi + + w_read_key + w_mount Sims3EP04 + + # Default lang, USA, accept defaults, uncheck EA dl mgr, uncheck readme + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 1000 + run ${W_ISO_MOUNT_LETTER}:Sims3EP04Setup.exe + winwait, - InstallShield Wizard + if ( w_opt_unattended > 0 ) { + send {Enter} + loop + { + SetTitleMatchMode, 2 + ifwinexist, - InstallShield Wizard, Setup will now attempt to update + { + ControlClick, Button1, - InstallShield Wizard + sleep 1000 + winwait, - InstallShield Wizard, Setup has finished updating The Sims + sleep 1000 + controlclick, Button1, - InstallShield Wizard + sleep 1000 + } + ifwinexist, Sims, License + { + winactivate, Sims, License + sleep 1000 + ControlClick, Button3 + sleep 1000 + ControlClick, Button1 + sleep 1000 + break + } + sleep 1000 + } + winwait, Sims, Please enter the entire Registration Code + sleep 1000 + send {Raw}$W_KEY + send {Enter} + winwait, - InstallShield Wizard, Setup Type + ControlClick &Complete ; was not defaulting to complete? + send {Enter} + winwait, - InstallShield Wizard, Click Install to begin + send {Enter} + winwait, - InstallShield Wizard, Would you like to install the latest + sleep 1000 + ControlClick, Button4 ; No thanks + sleep 1000 + ControlClick, Button1 + sleep 1000 + } + winwait, - InstallShield Wizard, Complete + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; Do not view readme + send {Enter} ; Finish + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata splitsecond games \ + title="Split Second" \ + publisher="Disney" \ + year="2010" \ + media="dvd" \ + file1="SplitSecond.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Disney Interactive Studios/Split Second/SplitSecond.exe" + +load_splitsecond() +{ + # Key is used in first run activation, no need to read it here. + w_mount SplitSecond + + # Aborts with dialog about FirewallInstallHelper.dll if that's not on the path (e.g. in current dir) + cd "$W_ISO_MOUNT_ROOT" + w_ahk_do " + SetTitleMatchMode, 2 + run setup.exe + winwait, Split, Language + sleep 500 + ControlClick, Next, Split, Language ; FIXME: Use button name + winwait, Split, game installation + sleep 500 + ControlClick, Button1, Split, game installation + winwait, Split, license + sleep 500 + ControlClick, Button5, Split, license + sleep 500 + ControlClick, Button2, Split, license + winwait, Split, DirectX + sleep 500 + ControlClick, Button5, Split, DirectX + sleep 500 + ControlClick, Button2, Split, DirectX + winwait, Split, installation method + sleep 500 + controlclick, Next, Split, installation method ; FIXME: Use button name + winwait, DirectX needs to be updated + sleep 500 + send {Enter} + winwait, Split, begin + sleep 500 + ControlClick, Button1 + winwait, Split, completed + sleep 500 + ControlClick, Button1, Split + sleep 500 + ControlClick, Button4, Split + " +} + +#---------------------------------------------------------------- + +w_metadata splitsecond_demo games \ + title="Split Second Demo" \ + publisher="Disney" \ + year="2010" \ + media="manual_download" \ + file1="SplitSecondDemo_FilePlanet.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Disney Interactive Studios/Split Second/SplitSecondDEMO.exe" + +load_splitsecond_demo() +{ + w_download_manual http://www.fileplanet.com/212404/210000/fileinfo/Split/Second-Demo SplitSecondDemo_FilePlanet.exe 72b070712cfe951297263fae143521b45dae16b4 + + if w_workaround_wine_bug 22774 "" 1.3.0 + then + w_warn "On wine, install takes an extra 7 minutes at the end, please be patient." + fi + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + run, SplitSecondDemo_FilePlanet.exe + winwait, Split, Language + ;ControlClick, Next, Split, Language ; does not quite work, have to use {Enter} instead + Send {Enter} + winwait, Split, game installation + ControlClick, Button1, Split, game installation + winwait, Split, license + ControlClick, Button5, Split, license + ControlClick, Button2, Split, license + winwait, Split, DirectX + ControlClick, Button5, Split, DirectX + ControlClick, Button2, Split, DirectX + winwait, Split, installation path + ControlClick, Button1, Split, installation path + winwait, Split, Game features + ControlClick, Button2, Split, Game features + winwait, Split, start copying + ControlClick, Button1, Split, start copying + winwait, Split, completed + ControlClick, Button1, Split, completed + ControlClick, Button4, Split, completed + " +} + +#---------------------------------------------------------------- + +w_metadata spore games \ + title="Spore" \ + publisher="EA" \ + year="2008" \ + media="dvd" \ + file1="SPORE.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/SPORE/Sporebin/SporeApp.exe" + +load_spore() +{ + w_mount SPORE + + w_read_key + + w_ahk_do " + SetTitleMatchMode, 2 + run, ${W_ISO_MOUNT_LETTER}:SPORESetup.exe + winwait, Language + if ( w_opt_unattended > 0 ) { + sleep 500 + controlclick, Button1 + winwait, SPORE, Welcome + sleep 500 + controlclick, Button1 + winwait, SPORE, License + sleep 500 + controlclick, Button3 + sleep 500 + controlclick, Button1 + winwait, SPORE, Registration Code + send {RAW}$W_KEY + sleep 500 + controlclick, Button2 + winwait, SPORE, Setup Type + sleep 500 + controlclick, Button6 + winwait, SPORE, Shortcut + sleep 500 + controlclick, Button6 + winwait, SPORE, begin + sleep 500 + controlclick, Button1 + winwait, Question + ; download managers are usually a pain, so always say no to such questions + sleep 500 + controlclick, Button2 + } + winwait, SPORE, complete + sleep 500 + if ( w_opt_unattended > 0 ) { + controlclick, Button1 + sleep 500 + controlclick, Button2 + sleep 500 + controlclick, Button4 + } + winwaitclose, SPORE, complete + " +} + +#---------------------------------------------------------------- + +w_metadata spore_cc_demo games \ + title="Spore Creature Creator trial" \ + publisher="EA" \ + year="2008" \ + media="download" \ + file1="792248d6ad421d577132c2b648bbed45_scc_trial_na.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Electronic Arts/SPORE/Sporebin/SporeCreatureCreator.exe" + +load_spore_cc_demo() +{ + w_download http://lvlt.bioware.cdn.ea.com/u/f/eagames/spore/scc/promo/792248d6ad421d577132c2b648bbed45_scc_trial_na.exe 06da5558e6ebbc39d2fac955eceab78cf8470e07 + + w_info "The installer runs on for about a minute after it's done." + + cd "$W_CACHE/$W_PACKAGE" + if test "$W_OPT_UNATTENDED" + then + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + run $file1 + winwait, Wizard, Welcome to the SPORE + send N + winwait, Wizard, Please read the following + send a + send N + winwait, Wizard, your setup + send N + winwait, Wizard, options below + send N + winwait, Wizard, We're ready + ;send i ; didn't take once? + ControlClick, Button1 + winwait, Question, do not install the latest + send N ; reject EA Download Manager + winwait, Wizard, Launch + send {SPACE}{DOWN}{SPACE}{ENTER} + winwaitclose + " + while ps | grep $file1 | grep -v grep > /dev/null + do + w_info "Waiting for installer to finish." + sleep 2 + done + else + w_try "$WINE" "$file1" + fi +} + +#---------------------------------------------------------------- + +w_metadata starcraft2_demo games \ + title="Starcraft II Demo" \ + publisher="Blizzard" \ + year="2010" \ + media="manual_download" \ + file1="SC2-WingsOfLiberty-enUS-Demo-Installer.zip" \ + installed_exe1="$W_PROGRAMS_X86_WIN/StarCraft II Demo/StarCraft II.exe" + +load_starcraft2_demo() +{ + w_download_manual http://www.fileplanet.com/217982/210000/fileinfo/Starcraft-2-Demo SC2-WingsOfLiberty-enUS-Demo-Installer.zip 4c06ad755fbde73f135a7359bf6bfdbd2c6eb00e + + cd "$W_TMP" + w_try_unzip . "$W_CACHE/$W_PACKAGE"/SC2-WingsOfLiberty-enUS-Demo-Installer.zip + + w_ahk_do " + SetTitleMatchMode, 2 + Run, Installer.exe + WinWait, StarCraft II Installer + if ( w_opt_unattended > 0 ) { + sleep 500 + ControlClick, x300 y200 + winwait, End User License Agreement + winactivate + ;MouseMove, 300, 300 + ;Click WheelDown, 70 + Sleep, 1000 + ControlClick, Button2 ; Accept + winwaitclose + winwait, StarCraft II Installer + sleep 1000 + ControlClick, x800 y500 + ; Is there any better wait to await completion? + Loop { + PixelGetColor, color, 473, 469 ; the 1 in 100% + ; The digits are drawn white, but because the whole + ; window is flickering, it cycles through about 20 + ; brightnesses. Check a bunch of them to reduce + ; chances of getting stuck for a long time. + ifEqual, color, 0xffffff + break + ifEqual, color, 0xf4f4f4 + break + ifEqual, color, 0xf1f1f1 + break + ifEqual, color, 0xf0f0f0 + break + ifEqual, color, 0xeeeeee + break + ifEqual, color, 0xebebeb + break + ifEqual, color, 0xe4e4e4 + break + sleep 500 ; changes rapidly, so sample often + } + ControlClick, x800 y500 ; Finish + winwaitclose + ; no way to tell game to not start? + process, wait, SC2.exe + sleep 2000 + process, close, SC2.exe + } + " +} + +#---------------------------------------------------------------- + +w_metadata theundergarden_demo games \ + title="The UnderGarden Demo" \ + publisher="Atari" \ + year="2010" \ + media="manual_download" \ + file1="TheUnderGarden_PC_B34_SRTB.30_28OCT10.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/The UnderGarden/TheUndergarden.exe" + +load_theundergarden_demo() +{ + w_download_manual http://www.bigdownload.com/games/the-undergarden/pc/the-undergarden-demo TheUnderGarden_PC_B34_SRTB.30_28OCT10.exe acf90c422ac2f2f242100f39bedfe7df0c95f7a + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + Run, TheUnderGarden_PC_B34_SRTB.30_28OCT10.exe + WinWait,WinRAR + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick Button2 ; Install + WinWait,Select Setup Language, during + Sleep 500 + ControlClick TNewButton1 ;OK + WinWait,Setup - The UnderGarden, your + Sleep 500 + ControlClick TNewButton1 ;OK + WinWait,Setup - The UnderGarden, License + Sleep 500 + ControlClick TNewRadioButton1 ; accept + Sleep 500 + ControlClick TNewButton2 ; Next + WinWait,Setup - The UnderGarden, different + Sleep 500 + ControlClick TNewButton3 ;Next + WinWait,Setup - The UnderGarden, shortcuts + Sleep 500 + ControlClick TNewButton4 ;OK + WinWait,Setup - The UnderGarden, additional + Sleep 500 + ControlFocus,TNewCheckListBox1,desktop + Sleep 500 + Send {Space} + Sleep 500 + ControlClick TNewButton4 ; Next + WinWait,Setup - The UnderGarden, review + Sleep 500 + ControlClick TNewButton4 ;Install + WinWait,Microsoft Visual C, Visual + Sleep 500 + ControlClick Button13 ;Cancel + WinWait,Microsoft Visual C, want + Sleep 500 + ControlClick Button1 ;Yes + WinWait,Microsoft Visual C, chosen + Sleep 500 + ControlClick Button2 ;Finish + WinWait,Framework 3, Press + Sleep 500 + ControlClick Button21 ;Cancel + WinWait,Framework 3, want + Sleep 500 + ControlClick Button1 ;Yes + WinWait,Installing Microsoft, Runtime + Sleep 500 + ControlClick Button6 ;Cancel + } + WinWait,Setup,launched + if ( w_opt_unattended > 0 ) { + Sleep 500 + ControlClick TNewButton4 ;Finish + } + WinWaitClose,Setup,launched + " +} + +#---------------------------------------------------------------- + +w_metadata tmnationsforever games \ + title="TrackMania Nations Forever" \ + publisher="Nadeo" \ + year="2009" \ + media="download" \ + file1="tmnationsforever_setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/TmNationsForever/TmForever.exe" + +load_tmnationsforever() +{ + # Before: cab0cf66db0471bc2674a3b1aebc35de0bca6ed0 + # 29 Mar 2011: 23388798d5c90ad4a233b4cd7e9fcafd69756978 + w_download "http://files.trackmaniaforever.com/tmnationsforever_setup.exe" 23388798d5c90ad4a233b4cd7e9fcafd69756978 + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + Run, tmnationsforever_setup.exe + WinWait,Select Setup Language + if ( w_opt_unattended > 0 ) { + Sleep 1000 + ControlClick TNewButton1 ; OK + WinWait,Setup - TmNationsForever,Welcome + Sleep 1000 + ControlClick TNewButton1 ; Next + WinWait,Setup - TmNationsForever,License + Sleep 1000 + ControlClick TNewRadioButton1 ; Accept + Sleep 1000 + ControlClick TNewButton2 ; Next + WinWait,Setup - TmNationsForever,Where + Sleep 1000 + ControlClick TNewButton3 ; Next + WinWait,Setup - TmNationsForever,shortcuts + Sleep 1000 + ControlClick TNewButton4 ; Next + WinWait,Setup - TmNationsForever,perform + Sleep 1000 + ControlClick TNewButton4 ; Next + WinWait,Setup - TmNationsForever,installing + Sleep 1000 + ControlClick TNewButton4 ; Install + } + WinWait,Setup - TmNationsForever,finished + if ( w_opt_unattended > 0 ) { + Sleep 1000 + ControlFocus, TNewCheckListBox1, TmNationsForever, finished + Sleep 1000 + Send {Space} ; don't start game + ControlClick TNewButton4 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata trainztcc_2004 games \ + title="Trainz: The Complete Collection: TRS2004" \ + publisher="Paradox Interactive" \ + year="2008" \ + media="dvd" \ + file1="TRS2006DVD.iso" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Auran/TRS2004/TRS2004.exe" + +load_trainztcc_2004() +{ + w_call mfc42 + + w_read_key + # yup, they got the volume name wrong + w_mount TRS2006DVD + cd ${W_ISO_MOUNT_ROOT}/TRS2004_SP4_DVD_Installer_BUILD_2370/Installer/Disk1 + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 500 + run setup.exe + if ( w_opt_unattended > 0 ) { + winwait TRS2004 Setup, Please install the latest drivers + send {Enter} + winwait TRS2004, Welcome + send {Enter} + winwait TRS2004, License + ControlClick Button2 + winwait TRS2004, serial + winactivate + send ${W_RAW_KEY}{Enter} + winwait TRS2004, Destination + send {Enter} + winwait Install DirectX + send n + winwait Windows Update, Your computer already + send {Enter} + } + winwait TRS2004, Complete + if ( w_opt_unattended > 0 ) { + send {Space} ; uncheck View Readme + send {Enter} ; Finish + } + winwaitclose + " + + # And, while we're at it, also install the accompanying paint shed app + cd ${W_ISO_MOUNT_ROOT}/TRAINZ_PAINTSHED + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 500 + run Trainz_Paint_Shed_Setup.exe + if ( w_opt_unattended > 0 ) { + winwait Trainz Paint Shed, Welcome + send {Enter} + winwait Trainz Paint Shed, License + send a ; accept + send {Enter} ; Next + winwait Trainz Paint Shed, Destination + send {Enter} + winwait Trainz Paint Shed, Install + send {Enter} + } + winwait Trainz Paint Shed, Complete + if ( w_opt_unattended > 0 ) { + send {Enter} ; Finish + } + winwaitclose + " +} + +#---------------------------------------------------------------- + +w_metadata sammax301_demo games \ + title="Sam & Max 301: The Penal Zone" \ + publisher="Telltale Games" \ + year="2010" \ + media="manual_download" \ + file1="SamMax301_PC_Setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Telltale Games/Sam and Max - The Devil's Playhouse/The Penal Zone/SamMax301.exe" + +load_sammax301_demo() +{ + w_download_manual "http://www.fileplanet.com/211314/210000/fileinfo/Sam-&-Max:-Devil's-Playhouse---Episode-One-Demo" SamMax301_PC_Setup.exe 83f47b7f3a5074a6e29bdc9b4f1fd2c4471d9641 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + SetWinDelay 500 + run SamMax301_PC_Setup.exe + winwait Sam and Max The Penal Zone Setup, Welcome + if ( w_opt_unattended > 0 ) { + controlclick button2 ; Next + winwait Sam and Max The Penal Zone Setup, DirectX + controlclick button5 ; Uncheck check directx + controlclick button2 ; Next + winwait Sam and Max The Penal Zone Setup, License + controlclick button2 ; I Agree + winwait Sam and Max The Penal Zone Setup, Location + controlclick button2 ; Install + winwait Sam and Max The Penal Zone Setup, Finish + controlclick button4 ; Uncheck play now + controlclick button5 ; Uncheck create shortcut + controlclick button2 ; Finish + } + winwaitclose Sam and Max The Penal Zone Setup + " +} + +#---------------------------------------------------------------- + +w_metadata sammax304_demo games \ + title="Sam & Max 304: Beyond the Alley of the Dolls" \ + publisher="Telltale Games" \ + year="2010" \ + media="manual_download" \ + file1="SamMax304_PC_setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Telltale Games/Sam and Max - The Devil's Playhouse/Beyond the Alley of the Dolls/SamMax304.exe" + +load_sammax304_demo() +{ + w_download_manual "http://www.fileplanet.com/214770/210000/fileinfo/Sam-&-Max:-The-Devi's-Playhouse---Beyond-the-Alley-of-the-Dolls-Demo" SamMax304_PC_setup.exe 1a385a1f1e83770c973e6457b923b7a44bbe44d8 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetTitleMatchMode, 2 + Run, $file1 + WinWait,Sam and Max Beyond the Alley of the Dolls Setup + if ( w_opt_unattended > 0 ) { + ControlClick Button2 ; Next + WinWait,Sam and Max Beyond the Alley of the Dolls Setup,DirectX + ControlClick Button2 ; Next - Directx check defaulted + WinWait,Sam and Max Beyond the Alley of the Dolls Setup,License + ControlClick Button2 ; Agree + WinWait,Sam and Max Beyond the Alley of the Dolls Setup,Location + ControlClick Button2 ; Install + WinWait,Sam and Max Beyond the Alley of the Dolls Setup,Finish + ControlClick Button4 ; Uncheck Play Now + ControlClick Button2 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata tropico3_demo games \ + title="Tropico 3 Demo" \ + publisher="Kalypso Media GmbH" \ + year="2009" \ + media="manual_download" \ + file1="Tropico3Demo.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Kalypso/Tropico 3 Demo/Tropico3 Demo.exe" + +load_tropico3_demo() +{ + w_download_manual "http://www.tropico3.com/?p=downloads" Tropico3Demo.exe e031749db346ac3a87a675787c81eb1ca8cb5909 + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetWinDelay 1000 + SetTitleMatchMode, 2 + Run, Tropico3Demo.exe + WinWait,Installer + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; OK + WinWait,Tropico,Welcome + ControlClick Button2 ; Next + WinWait,Tropico,License + ControlClick Button2 ; Agree + WinWait,Tropico,Typical + ControlClick Button2 ; Next + } + WinWait,Tropico,Completing + if ( w_opt_unattended > 0 ) { + ControlClick Button4 ; Uncheck Run Now + ControlClick Button2 ; Finish + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata singularity games \ + title="Singularity" \ + publisher="Activision" \ + year="2010" \ + media="dvd" \ + file1="SNG_DVD.iso" + +load_singularity() +{ + w_read_key + w_mount SNG_DVD + + w_ahk_do " + run ${W_ISO_MOUNT_LETTER}:setup.exe + winwait, Activision(R) - InstallShield, Select the language for the installation from the choices below. + if ( w_opt_unattended > 0 ) { + sleep 1000 + controlclick, Button1, Activision(R) - InstallShield, Select the language for the installation from the choices below. + sleep 1000 + winwait, Singularity(TM), Keycode Check + sleep 1000 + Send $W_KEY + sleep 1000 + Send {Enter} + ; Well this is annoying... + Winwait, Keycode Check, The Keycode you entered appears to be valid. + sleep 1000 + Send {Enter} + winwait, Singularity(TM), The InstallShield Wizard will install Singularity(TM) on your computer + sleep 1000 + controlclick, Button1, Singularity(TM), The InstallShield Wizard will install Singularity(TM) on your computer + winwait, Singularity(TM), Please read the following license agreement carefully + sleep 1000 + controlclick, Button5, Singularity(TM), Please read the following license agreement carefully + sleep 1000 + controlclick, Button2, Singularity(TM), Please read the following license agreement carefully + winwait, Singularity(TM), Minimum System Requirements + sleep 1000 + controlclick, Button1, Singularity(TM), Minimum System Requirements + winwait, Singularity(TM), Select the setup type to install + controlclick, Button4, Singularity(TM), Select the setup type to install + } + ; Loop until installer window has been gone for at least two seconds + Loop + { + sleep 1000 + IfWinExist, Singularity + continue + IfWinExist, Activision + continue + sleep 1000 + IfWinExist, Singularity + continue + IfWinExist, Activision + continue + break + } + " + + # Clean up crap left over in c:\ when the installer runs the vc 2008 redistributable installer + cd "$W_DRIVE_C" + rm -f VC_RED.* eula.*.txt globdata.ini install.exe install.ini install.res.*.dll vcredist.bmp +} + +#---------------------------------------------------------------- + +w_metadata wglgears benchmarks \ + title="wglgears" \ + publisher="Clinton L. Jeffery" \ + year="2005" \ + media="download" \ + file1="wglgears.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/misc/wglgears.exe" + +load_wglgears() +{ + w_download http://www2.cs.uidaho.edu/~jeffery/win32/wglgears.exe d65d2098bc11af76cb614946342913b1af62924d + mkdir -p "$W_PROGRAMS_X86_UNIX/misc" + cp "$W_CACHE"/wglgears/wglgears.exe "$W_PROGRAMS_X86_UNIX/misc" + chmod +x "$W_PROGRAMS_X86_UNIX/misc/wglgears.exe" +} + +#---------------------------------------------------------------- + +w_metadata stalker_pripyat_bench benchmarks \ + title="S.T.A.L.K.E.R Call of Pripyat benchmark" \ + publisher="GSC Game World" \ + year="2009" \ + media="manual_download" \ + file1="stkcop-bench-setup.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Call Of Pripyat Benchmark/Benchmark.exe" + +load_stalker_pripyat_bench() +{ + # Much faster + w_download_manual http://www.bigdownload.com/games/stalker-call-of-pripyat/pc/stalker-call-of-pripyat-benchmark stkcop-bench-setup.exe 8691c3f289ecd0521bed60ffd46e65ad080206e0 + #w_download http://files.gsc-game.com/st/bench/stkcop-bench-setup.exe 8691c3f289ecd0521bed60ffd46e65ad080206e0 + + cd "$W_CACHE/$W_PACKAGE" + + # FIXME: a bit fragile, if you're browsing the web while installing, it sometimes gets stuck. + w_ahk_do " + SetTitleMatchMode, 2 + run stkcop-bench-setup.exe + WinWait,Setup - Call Of Pripyat Benchmark + if ( w_opt_unattended > 0 ) { + sleep 1000 + ControlClick TNewButton1 ; Next + WinWait,Setup - Call Of Pripyat Benchmark,License + sleep 1000 + ControlClick TNewRadioButton1 ; accept + sleep 1000 + ControlClick TNewButton2 ; Next + WinWait,Setup - Call Of Pripyat Benchmark,Destination + sleep 1000 + ControlClick TNewButton3 ; Next + WinWait,Setup - Call Of Pripyat Benchmark,shortcuts + sleep 1000 + ControlClick TNewButton4 ; Next + WinWait,Setup - Call Of Pripyat Benchmark,performed + sleep 1000 + ControlClick TNewButton4 ; Next + WinWait,Setup - Call Of Pripyat Benchmark,ready + sleep 1000 + ControlClick, TNewButton4 ; Next (nah, who reads doc?) + } + WinWait,Setup - Call Of Pripyat Benchmark,finished + if ( w_opt_unattended > 0 ) { + sleep 1000 + Send {Space} ; uncheck launch + sleep 1000 + ControlClick TNewButton4 ; Finish + } + WinWaitClose,Setup - Call Of Pripyat Benchmark,finished + " + + if w_workaround_wine_bug 24868 + then + w_call d3dx9_31 + w_call d3dx9_42 + fi +} + +#---------------------------------------------------------------- + +w_metadata torchlight games \ + title="Torchlight - boxed version" \ + publisher="Runic Games" \ + year="2009" \ + media="dvd" \ + file1="Torchlight.iso" + +load_torchlight() +{ + w_mount "Torchlight" + w_ahk_do " + SetTitleMatchMode, 2 + Run, ${W_ISO_MOUNT_LETTER}:Torchlight.exe + WinWait, Torchlight Setup, This wizard will guide + if ( w_opt_unattended > 0 ) { + sleep 1000 + ControlClick, Button2, Torchlight Setup, This wizard will guide + WinWait, Torchlight Setup, Please review the license terms + sleep 1000 + ControlClick, Button2, Torchlight Setup, Please review the license terms + WinWait, Torchlight Setup, Choose Install Location + sleep 1000 + ControlClick, Button2, Torchlight Setup, Choose Install Location + WinWait, Torchlight Setup, Installation Complete + sleep 1000 + ControlClick, Button2, Torchlight Setup, Installation Complete + WinWait, Torchlight Setup, Completing the Torchlight Setup Wizard + sleep 1000 + ControlClick, Button4, Torchlight Setup, Completing the Torchlight Setup Wizard + ControlClick, Button2, Torchlight Setup, Completing the Torchlight Setup Wizard + } + WinWaitClose, Torchlight Setup + " +} + +#---------------------------------------------------------------- + +w_metadata twfc games \ + title="Transformers: War for Cybertron" \ + publisher="Activision" \ + year="2010" \ + media="dvd" \ + file1="TWFC_DVD.iso" + +load_twfc() +{ + w_read_key + w_mount TWFC_DVD + + w_ahk_do " + run ${W_ISO_MOUNT_LETTER}:setup.exe + SetTitleMatchMode, 2 + winwait, Activision, Select the language for the installation + if ( w_opt_unattended > 0 ) { + sleep 1000 + controlclick, Button1, Activision, Select the language for the installation + winwait, Transformers, Press NEXT to verify your key + sleep 1000 + send $W_KEY + send {Enter} + winwait, Keycode Check, The Keycode you entered appears to be valid + sleep 1000 + send {Enter} + winwait, Transformers, The InstallShield Wizard will install Transformers + sleep 1000 + controlclick, Button1, Transformers, The InstallShield Wizard will install Transformers + winwait, Transformers, License Agreement + sleep 1000 + controlclick, Button5, Transformers, License Agreement + sleep 1000 + controlclick, Button2, Transformers, License Agreement + winwait, Transformers, Minimum System Requirements + sleep 1000 + controlclick, Button1, Transformers, Minimum System Requirements + winwait, Transformers, Select the setup type to install + sleep 1000 + controlclick, Button4, Transformers, Select the setup type to install + } + ; Installer exits silently. Prevent an early umount + Loop + { + sleep 1000 + IfWinExist, Transformers + continue + IfWinExist, Activision + continue + sleep 1000 + IfWinExist, Transformers + continue + IfWinExist, Activision + continue + break + } + " + + # Clean up crap left over in c:\ when the installer runs the vc 2008 redistributable installer + cd "$W_DRIVE_C" + rm -f VC_RED.* eula.*.txt globdata.ini install.exe install.ini install.res.*.dll vcredist.bmp +} + +#---------------------------------------------------------------- + +w_metadata typingofthedead_demo games \ + title="Typing of the Dead Demo" \ + publisher="Sega" \ + year="1999" \ + media="manual_download" \ + file1="Tod_e_demo.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/SEGA/TOD-Demo/Tod_e_demo.exe" + +load_typingofthedead_demo() +{ + w_download "http://www.fileplanet.com/54947/50000/fileinfo/The-Typing-of-the-Dead-Demo" 96fe3edb2431210932af840e29c59bce6b7fc80f + cd "$W_TMP" + w_try_unzip . "$W_CACHE/$W_PACKAGE/tod-demo.zip" + w_ahk_do " + SetTitleMatchMode, 2 + run SETUP.EXE + if ( w_opt_unattended > 0 ) { + WinWait,InstallShield Wizard,where + sleep 1000 + ControlClick Button1 ; Next + WinWait,InstallShield Wizard,icons + sleep 1000 + ControlClick Button2 ; Next + } + ; installer crashes here? + Sleep 20000 + " +} + +#---------------------------------------------------------------- + +w_metadata ut3 games \ + title="Unreal Tournament 3" \ + publisher="Midway Games" \ + year="2007" \ + media="dvd" \ + file1="UT3_RC7.iso" \ + file2="UT3Patch5.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Unreal Tournament 3/Binaries/UT3.exe" + +load_ut3() +{ + w_download_manual "http://www.filefront.com/13709855/UT3Patch5.exe" UT3Patch5.exe + w_try w_mount UT3_RC7 + + w_ahk_do " + run ${W_ISO_MOUNT_LETTER}:SetupUT3.exe + SetTitleMatchMode, slow ; else can't see EULA text + SetTitleMatchMode, 2 + SetWinDelay 1000 + WinWait, Choose Setup Language + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; OK + WinWait, Unreal Tournament 3, GAMESPY ; License Agreement + ControlClick Button2 ; Yes + WinWait, Unreal Tournament 3, UnrealEd ; License Agreement + ControlClick Button2 ; Yes + WinWait, , Choose Destination + ControlClick Button1 ; Next + WinWait, AGEIA PhysX v7.09.13 Setup, License + ControlClick Button3 ; Accept + sleep 1000 + ControlClick Button4 ; Next + WinWait, AGEIA PhysX v7.09.13, Finish + ControlClick Button1 ; Finish + ; game now begins installing + } + WinWait, , InstallShield Wizard Complete + if ( w_opt_unattended > 0 ) { + ControlClick Button4 ; Finish + } + WinWaitClose + " + + cd "$W_CACHE/$W_PACKAGE" + + w_ahk_do " + SetTitleMatchMode, 2 + run UT3Patch5.exe + WinWait, License + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; Accept + WinWait, End User License Agreement + ControlClick Button1 ; Accept + WinWait, Patch UT3 + ControlClick Button1 ; Yes + } + WinWait, , UT3 was successfully patched! + if ( w_opt_unattended > 0 ) { + ControlClick Button1 ; OK + } + WinWaitClose + " +} + +#---------------------------------------------------------------- + +w_metadata wog games \ + title="World of Goo Demo" \ + publisher="2D Boy" \ + year="2008" \ + media="download" \ + file1="WorldOfGooDemo.1.0.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/WorldOfGooDemo/WorldOfGoo.exe" + +load_wog() +{ + if ! test -f "$W_CACHE/wog/WorldOfGooDemo.1.0.exe" + then + # Get temporary download location + w_download "http://www.worldofgoo.com/dl2.php?lk=demo&filename=WorldOfGooDemo.1.0.exe" + URL=`cat "$W_CACHE/wog/dl2.php?lk=demo&filename=WorldOfGooDemo.1.0.exe" | + grep WorldOfGooDemo.1.0.exe | sed 's,.*http,http,;s,".*,,'` + rm "$W_CACHE/wog/dl2.php?lk=demo&filename=WorldOfGooDemo.1.0.exe" + + w_download "$URL" e61d8253b9fe0663cb3c69018bb3d2ec6152d488 + fi + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + SetWinDelay 500 + run WorldOfGooDemo.1.0.exe + winwait, World of Goo Setup, License Agreement + if ( w_opt_unattended > 0 ) { + sleep 1000 + WinActivate + send {Enter} + winwait, World of Goo Setup, Choose Components + send {Enter} + winwait, World of Goo Setup, Choose Install Location + send {Enter} + winwait, World of Goo Setup, Thank you + ControlClick, Make me dirty right now, World of Goo Setup, Thank you + send {Enter} + } + winwaitclose, World of Goo Setup + " +} + +#---------------------------------------------------------------- + +w_metadata zootycoon2_demo games \ + title="Zoo Tycoon 2 demo" \ + publisher="Microsoft" \ + year="2004" \ + media="download" \ + file1="Zoo2Trial.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Microsoft Games/Zoo Tycoon 2 Trial Version/zt2demoretail.exe" + +load_zootycoon2_demo() +{ + w_download "http://download.microsoft.com/download/9/f/6/9f6a95f0-f34a-4312-9749-77b81d3de245/Zoo2Trial.exe" 60ad1bb34351f97b579c58234b926055f7979126 + + cd "$W_CACHE/$W_PACKAGE" + w_ahk_do " + ; Uses winwaitactive, because the windows appear and immediately after another window + ; gets in the way, then disappears after a second or so + SetTitleMatchMode, 2 + run Zoo2Trial.exe + winwaitclose, APPMESSAGE + winwaitactive, Zoo Tycoon 2 Trial, AUTORUN + if ( w_opt_unattended > 0 ) { + sleep 1000 + controlclick, CButtonClassName1, Zoo Tycoon 2 Trial, AUTORUN + winwaitclose, APPMESSAGE + winwaitactive, Zoo Tycoon 2 Trial, INSTALLTYPE + ; 1 second was not enough. + sleep 3000 + controlclick, CButtonClassName1, Zoo Tycoon 2 Trial, INSTALLTYPE + } + winwaitactive, Zoo Tycoon 2 Trial, COMPLETE + winclose, Zoo Tycoon 2 Trial, COMPLETE + " +} + +#---------------------------------------------------------------- +# Gog.com games +#---------------------------------------------------------------- + +w_metadata beneath_a_steel_sky_gog games \ + title="Beneath a Steel Sky (GOG.com, free)" \ + publisher="Virgin Interactive" \ + year="1994" \ + file1="setup_beneath_a_steel_sky.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/GOG.com/Beneath a Steel Sky/ScummVM/scummvm.exe" + +load_beneath_a_steel_sky_gog() +{ + winetricks_load_gog "beneath_a_steel_sky" "Beneath a Steel Sky" "" "TsCheckBox4" "ScummVM\\scummvm.exe -c \"C:\\Program Files\\GOG.com\\Beneath a Steel Sky\\beneath.ini\" beneath" "" "" "75176395,1f99e12643529baa91fecfb206139a8921d9589c" +} + +w_metadata sacrifice_gog games \ + title="Sacrifice (GOG.com)" \ + publisher="Interplay" \ + year="2000" \ + media="manual_download" \ + file1="setup_sacrifice.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/GOG.com/Sacrifice/Sacrifice.exe" + +load_sacrifice_gog() +{ + winetricks_load_gog "sacrifice" "Sacrifice" "" "TsCheckBox2" "sacrifice" "" "" "591161642,63e77685599ce20c08b004a9fa3324e466ce1679" +} + +w_metadata the_witcher_2_gog games \ + title="The Witcher 2: Assassins of Kings" \ + publisher="Atari" \ + year="2011" \ + media="manual_download" \ + file1="setup_the_witcher_2_ee_3.0.1.17.exe" \ + installed_exe1="$W_PROGRAMS_X86_WIN/GOG.com/The Witcher 2/bin/witcher2.exe" + +load_the_witcher_2_gog() +{ + winetricks_load_gog "the_witcher_2" \ + "The Witcher 2 - Assassins of Kings" \ + "setup_the_witcher_2-1.bin,2048477,b826cd7b096fd98eab78517752522b2a3ca8af5e\ + setup_the_witcher_2-2.bin,2050788,a419926e4d02de81d79d586bf893150d3231833c \ + setup_the_witcher_2-3.bin,2050788,6974cadc29fb8a8795aa245c5f8bb24e5e0cff5e \ + setup_the_witcher_2-4.bin,2050788,ed79c1e9456801addf6fd6e687528fa01354b0d8 \ + setup_the_witcher_2-5.bin,1631852,354cb73ae3e73cb88dedc53dd472803862a654cf \ + setup_the_witcher_2.bin,129136,d3aa93bf147e155c5035ae15444916feabfd47b4" \ + "" "bin/witcher2.exe" "" "The Witcher 2" \ + "2308,9ca06383301f242143f69fe08974f9d4d713ac6b" +} + +# Brief HOWTO for adding a GOG game: +# - "beneath_a_steel_sky" is the installer exe name, minus "setup_" and ".exe" +# - "Beneath a Steel Sky" is installer window title, minus "Setup - " +# - There are no other files for this game, so this parameter is empty. +# Otherwise it should be of the following form: +# file_name[,length[,sha1sum]] [...] +# - "TsCheckBox4" is the control name for the checkbox deciding whether it will +# install some reader (Foxit in this case, could be acrobat reader). That +# installation is enabled by default, and would just bloat the generic +# AutoHotKey script, so it gets disabled. +# - "ScummVM\\[...]" is the command line to run the game, as fetched from the +# shortcut/launcher installer/wine creates, which will be used in BAT scripts +# created by wisotool +# - The part in the url which is specific to this game is identical to its "id" +# (first parameter), so this parameter is left out. +# - The install directory is the same as installer window title (second +# parameter), so this parameter is left out. +# - Main installer size and sha1sum, separated by a comma. + +#---------------------------------------------------------------- +# Steam Games +#---------------------------------------------------------------- + +w_metadata alienswarm_steam games \ + title="Alien Swarm (Steam)" \ + publisher="Valve" \ + year="2010" \ + media="download" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/steamapps/common/alien swarm/swarm.exe" + +load_alienswarm_steam() +{ + w_steam_install_game 630 "Alien Swarm" +} + +#---------------------------------------------------------------- + +w_metadata bioshock2_steam games \ + title="Bioshock 2 (Steam)" \ + publisher="2k" \ + year="2010" \ + media="download" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/steamapps/common/bioshock2/blort.exe" + +load_bioshock2_steam() +{ + w_steam_install_game 8850 "BioShock 2" +} + +#---------------------------------------------------------------- + +w_metadata borderlands_steam games \ + title="Borderlands (Steam, nonfree)" \ + publisher="2K Games" \ + year="2009" \ + media="download" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/steamapps/common/borderlands/Binaries/Borderlands.exe" + +load_borderlands_steam() +{ + w_steam_install_game 8980 "Borderlands" +} + +#---------------------------------------------------------------- + +w_metadata civ5_demo_steam games \ + title="Civ V Demo (Steam)" \ + publisher="2K Games" \ + year="2010" \ + media="download" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/steamapps/common/sid meier's civilization v - demo/CivilizationV.exe" + +load_civ5_demo_steam() +{ + # Start autohotkey watching for directx9 option in the background, and select it when it comes up + w_ahk_do " + SetWinDelay 500 + loop + { + ifWinExist, Sid Meier's Civilization V - Demo - Steam + { + winactivate + click 26,108 ; select directx9 + sleep 500 + click 200,150 ; Play + } + ifWinExist, Updating Sid Meier's Civilization V - Demo + { + break + } + sleep 1000 + } + " & + _job=$! + # While that's running, install the game. + # You'll see *two* Autohotkey icons until that first script + # finds the dialog it's looking for, clicks, and exits. + w_info "If you already own the full Civ 5 game on steam, the installer won't even appear." + w_steam_install_game 65900 "Sid Meier's Civilization V - Demo" + kill -s HUP $_job # just in case +} + +#---------------------------------------------------------------- + +w_metadata ruse_demo_steam games \ + title="Ruse Demo (Steam)" \ + publisher="Ubisoft" \ + year="2010" \ + media="download" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/steamapps/common/r.u.s.e. demo/Ruse.exe" + +load_ruse_demo_steam() +{ + w_steam_install_game 33310 "R.U.S.E." +} + +#---------------------------------------------------------------- + +w_metadata supermeatboy_steam games \ + title="Super Meat Boy (Steam, nonfree)" \ + publisher="Independent" \ + year="2010" \ + media="download" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/steamapps/common/super meat boy/SuperMeatBoy.exe" + +load_supermeatboy_steam() +{ + w_steam_install_game 40800 "Super Meat Boy" +} + +#---------------------------------------------------------------- + +w_metadata trine_steam games \ + title="Trine (Steam)" \ + publisher="Frozenbyte" \ + year="2009" \ + media="download" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/steamapps/common/trine/trine_launcher.exe" + +load_trine_steam() +{ + w_steam_install_game 35700 "Trine" +} + +#---------------------------------------------------------------- + +w_metadata trine_demo_steam games \ + title="Trine Demo (Steam)" \ + publisher="Frozenbyte" \ + year="2009" \ + media="download" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/steamapps/common/trine demo/trine_launcher.exe" + +load_trine_demo_steam() +{ + w_steam_install_game 35710 "Trine Demo" +} + +#---------------------------------------------------------------- + +w_metadata wormsreloaded_demo_steam games \ + title="Worms Reloaded Demo (Steam)" \ + publisher="Team17" \ + year="2010" \ + media="download" \ + installed_exe1="$W_PROGRAMS_X86_WIN/Steam/steamapps/common/worms reloaded/WormsReloaded.exe" + +load_wormsreloaded_demo_steam() +{ + w_steam_install_game 22690 "Worms Reloaded Demo" +} + +#---------------------------------------------------------------- +# Settings +#---------------------------------------------------------------- +# Direct3D settings + +winetricks_set_wined3d_var() +{ + # Filter out/correct bad or partial values + # Confusing because dinput uses 'disable', but d3d uses 'disabled' + # see wined3d_dll_init() in dlls/wined3d/wined3d_main.c + # and DllMain() in dlls/ddraw/main.c + case $2 in + disable*) arg=disabled;; + enable*) arg=enabled;; + hard*) arg=hardware;; + repack) arg=repack;; + backbuffer|fbo|gdi|none|opengl|readdraw|readtex|texdraw|textex|auto) arg=$2;; + [0-9]*) arg=$2;; + *) w_die "illegal value $2 for $1";; + esac + + echo "Setting Direct3D/$1 to $arg" + cat > "$W_TMP"/set-wined3d.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\Direct3D] +"$1"="$arg" + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\set-wined3d.reg +} + +#---------------------------------------------------------------- + +w_metadata glsl=enabled settings \ + title_uk="Включити glsl шейдери (за замовчуванням)" \ + title="Enable glsl shaders (default)" +w_metadata glsl=disabled settings \ + title_uk="Вимкнути glsl шейдери та використовувати arb шейдери (швидше, але іноді з перервами)" \ + title="Disable glsl shaders, use arb shaders (faster, but sometimes breaks)" + +load_glsl() +{ + winetricks_set_wined3d_var UseGLSL $1 +} + +#---------------------------------------------------------------- + +w_metadata multisampling=enabled settings \ + title_uk="Включити Direct3D мультисемплінг" \ + title="Enable Direct3D multisampling" +w_metadata multisampling=disabled settings \ + title_uk="Вимкнути Direct3D мультисемплінг" \ + title="Disable Direct3D multisampling" + +load_multisampling() +{ + winetricks_set_wined3d_var Multisampling $1 +} + +#---------------------------------------------------------------- + +w_metadata npm=repack settings \ + title_uk="Поставити NonPower2Mode на repack" \ + title="Set NonPower2Mode to repack" + +load_npm() +{ + winetricks_set_wined3d_var NonPower2Mode $1 +} + +#---------------------------------------------------------------- + +w_metadata orm=fbo settings \ + title_uk="Поставити OffscreenRenderingMode=fbo (за замовчуванням)" \ + title="Set OffscreenRenderingMode=fbo (default)" +w_metadata orm=backbuffer settings \ + title_uk="Поставити OffscreenRenderingMode=backbuffer" \ + title="Set OffscreenRenderingMode=backbuffer" + +load_orm() +{ + winetricks_set_wined3d_var OffscreenRenderingMode $1 +} + +#---------------------------------------------------------------- + +w_metadata strictdrawordering=enabled settings \ + title_uk="Включити StrictDrawOrdering" \ + title="Enable StrictDrawOrdering" +w_metadata strictdrawordering=disabled settings \ + title_uk="Вимкнути StrictDrawOrdering (за замовчуванням)" \ + title="Disable StrictDrawOrdering (default)" + +load_strictdrawordering() +{ + winetricks_set_wined3d_var StrictDrawOrdering $1 +} + +#---------------------------------------------------------------- + +w_metadata rtlm=auto settings \ + title_uk="Поставити RenderTargetLockMode на авто (за замовчуванням)" \ + title="Set RenderTargetLockMode to auto (default)" +w_metadata rtlm=disabled settings \ + title_uk="Вимкнути RenderTargetLockMode" \ + title="Set RenderTargetLockMode to disabled" +w_metadata rtlm=readdraw settings \ + title_uk="Поставити RenderTargetLockMode на readdraw" \ + title="Set RenderTargetLockMode to readdraw" +w_metadata rtlm=readtex settings \ + title_uk="Поставити RenderTargetLockMode на readtex" \ + title="Set RenderTargetLockMode to readtex" +w_metadata rtlm=texdraw settings \ + title_uk="Поставити RenderTargetLockMode на texdraw" \ + title="Set RenderTargetLockMode to texdraw" +w_metadata rtlm=textex settings \ + title_uk="Поставити RenderTargetLockMode на textex" \ + title="Set RenderTargetLockMode to textex" + +load_rtlm() +{ + winetricks_set_wined3d_var RenderTargetLockMode $1 +} + +#---------------------------------------------------------------- +# AlwaysOffscreen settings + +w_metadata ao=enabled settings \ + title_uk="Включити AlwaysOffscreen" \ + title="Enable AlwaysOffscreen" +w_metadata ao=disabled settings \ + title_uk="Вимкнути AlwaysOffscreen (за замовчуванням)" \ + title="Disable AlwaysOffscreen (default)" + +load_ao() +{ + winetricks_set_wined3d_var AlwaysOffscreen $1 +} + +#---------------------------------------------------------------- +# DirectDraw settings + +w_metadata ddr=gdi settings \ + title_uk="Поставити DirectDrawRenderer на gdi" \ + title="Set DirectDrawRenderer to gdi" +w_metadata ddr=opengl settings \ + title_uk="Поставити DirectDrawRenderer на opengl" \ + title="Set DirectDrawRenderer to opengl" + +load_ddr() +{ + winetricks_set_wined3d_var DirectDrawRenderer $1 +} + +#---------------------------------------------------------------- +# DirectInput settings + +w_metadata mwo=force settings \ + title_uk="Поставити примусове DirectInput MouseWarpOverride (необхідно для деяких ігор)" \ + title="Set DirectInput MouseWarpOverride to force (needed by some games)" +w_metadata mwo=enabled settings \ + title_uk="Включити DirectInput MouseWarpOverride (за замовчуванням)" \ + title="Set DirectInput MouseWarpOverride to enabled (default)" +w_metadata mwo=disable settings \ + title_uk="Вимкнути DirectInput MouseWarpOverride" \ + title="Set DirectInput MouseWarpOverride to disable" + +load_mwo() +{ + # Filter out/correct bad or partial values + # Confusing because dinput uses 'disable', but d3d uses 'disabled' + # see alloc_device() in dlls/dinput/mouse.c + case $1 in + enable*) arg=enabled;; + disable*) arg=disable;; + force) arg=force;; + *) w_die "illegal value $1 for MouseWarpOverride";; + esac + + echo "Setting MouseWarpOverride to $arg" + cat > "$W_TMP"/set-mwo.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\DirectInput] +"MouseWarpOverride"="$arg" + +_EOF_ + w_try_regedit "$W_TMP"/set-mwo.reg +} + +#---------------------------------------------------------------- +# Mac Driver settings + +w_metadata macdriver=mac settings \ + title_uk="Включити рідний Mac Quartz драйвер (за замовчуванням)" \ + title="Enable the Mac native Quartz driver (default)" +w_metadata macdriver=x11 settings \ + title_uk="Вимкнути рідний Mac Quartz драйвер та використовувати замість нього X11" \ + title="Disable the Mac native Quartz driver, use X11 instead" + +load_macdriver() +{ + echo "Setting MacDriver to $arg" + cat > "$W_TMP"/set-mac.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\Drivers] +"Graphics"="$arg" + +_EOF_ + w_try_regedit "$W_TMP"/set-mac.reg +} + +#---------------------------------------------------------------- +# X11 Driver settings + +w_metadata grabfullscreen=y settings \ + title_uk="Примусове захоплення курсору для повноекранних вікон (необхідно для деяких ігор)" \ + title="Force cursor clipping for full-screen windows (needed by some games)" +w_metadata grabfullscreen=n settings \ + title_uk="Вимкнути примусове захоплення курсору для повноекранних вікон (за замовчуванням)" \ + title="Disable cursor clipping for full-screen windows (default)" + +load_grabfullscreen() +{ + case $1 in + y|n) arg=$1;; + *) w_die "illegal value $1 for GrabFullscreen";; + esac + + echo "Setting GrabFullscreen to $arg" + cat > "$W_TMP"/set-gfs.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\X11 Driver] +"GrabFullscreen"="$arg" + +_EOF_ + w_try_regedit "$W_TMP"/set-gfs.reg +} + +w_metadata windowmanagerdecorated=y settings \ + title_uk="Дозволити менеджеру вікон декорувати вікна (за замовчуванням)" \ + title="Allow the window manager to decorate windows (default)" +w_metadata windowmanagerdecorated=n settings \ + title_uk="Не дозволяти менеджеру вікон декорувати вікна" \ + title="Prevent the window manager from decorating windows" + +load_windowmanagerdecorated() +{ + case $1 in + y|n) arg=$1;; + *) w_die "illegal value $1 for Decorated";; + esac + + echo "Setting Decorated to $arg" + cat > "$W_TMP"/set-wmd.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\X11 Driver] +"Decorated"="$arg" + +_EOF_ + w_try_regedit "$W_TMP"/set-wmd.reg +} + +w_metadata windowmanagermanaged=y settings \ + title_uk="Дозволити менеджеру вікон керування вікнами (за замовчуванням)" \ + title="Allow the window manager to control windows (default)" +w_metadata windowmanagermanaged=n settings \ + title_uk="Не дозволяти менеджеру вікон керування вікнами" \ + title="Prevent the window manager from controling windows" + +load_windowmanagermanaged() +{ + case $1 in + y|n) arg=$1;; + *) w_die "illegal value $1 for Managed";; + esac + + echo "Setting Managed to $arg" + cat > "$W_TMP"/set-wmm.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\X11 Driver] +"Managed"="$arg" + +_EOF_ + w_try_regedit "$W_TMP"/set-wmm.reg +} + +#---------------------------------------------------------------- +# Other settings + +#---------------------------------------------------------------- + +w_metadata alldlls=default settings \ + title_uk="Видалити всі перевизначення DLL" \ + title="Remove all DLL overrides" +w_metadata alldlls=builtin settings \ + title_uk="Перевизначити найбільш поширені DLL на вбудовані" \ + title="Override most common DLLs to builtin" + +load_alldlls() +{ + case $1 in + default) w_override_no_dlls ;; + builtin) w_override_all_dlls ;; + esac +} + +w_metadata fontsmooth=disable settings \ + title_uk="Вимкнути згладжування шрифту" \ + title="Disable font smoothing" +w_metadata fontsmooth=bgr settings \ + title_uk="Включити субпіксельне згладжування шрифту для BGR LCD моніторів" \ + title="Enable subpixel font smoothing for BGR LCDs" +w_metadata fontsmooth=rgb settings \ + title_uk="Включити субпіксельне згладжування шрифту для RGB LCD моніторів" \ + title="Enable subpixel font smoothing for RGB LCDs" +w_metadata fontsmooth=gray settings \ + title_uk="Включити субпіксельне згладжування шрифту" \ + title="Enable subpixel font smoothing" + +load_fontsmooth() +{ + case $1 in + disable) FontSmoothing=0; FontSmoothingOrientation=1; FontSmoothingType=0;; + gray|grey) FontSmoothing=2; FontSmoothingOrientation=1; FontSmoothingType=1;; + bgr) FontSmoothing=2; FontSmoothingOrientation=0; FontSmoothingType=2;; + rgb) FontSmoothing=2; FontSmoothingOrientation=1; FontSmoothingType=2;; + *) w_die "unknown font smoothing type $1";; + esac + + echo "Setting font smoothing to $1" + + cat > "$W_TMP"/fontsmooth.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Control Panel\Desktop] +"FontSmoothing"="$FontSmoothing" +"FontSmoothingGamma"=dword:00000578 +"FontSmoothingOrientation"=dword:0000000$FontSmoothingOrientation +"FontSmoothingType"=dword:0000000$FontSmoothingType + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\fontsmooth.reg +} + +#---------------------------------------------------------------- + +w_metadata forcemono settings \ + title_uk="Примусове використання mono замість .Net (для налогодження)" \ + title="Force using mono instead of .Net (for debugging)" + +load_forcemono() +{ + w_override_dlls native mscoree + w_override_dlls disabled mscorsvw.exe +} + +#---------------------------------------------------------------- + +w_metadata gsm=0 settings \ + title="Set MaxShaderModelGS to 0" +w_metadata gsm=1 settings \ + title="Set MaxShaderModelGS to 1" +w_metadata gsm=2 settings \ + title="Set MaxShaderModelGS to 2" +w_metadata gsm=3 settings \ + title="Set MaxShaderModelGS to 3" + +load_gsm() +{ + winetricks_set_wined3d_var MaxShaderModelGS $1 +} + +#---------------------------------------------------------------- + +w_metadata heapcheck settings \ + title_uk="Включити накопичувальну перевірку GlobalFlag" \ + title="Enable heap checking with GlobalFlag" + +load_heapcheck() +{ + cat > "$W_TMP"/heapcheck.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager] +"GlobalFlag"=dword:00200030 + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\heapcheck.reg +} + +#---------------------------------------------------------------- + +w_metadata hidewineexports=enable settings \ + title="Enable hiding wine exports from applications (wine-staging)" +w_metadata hidewineexports=disable settings \ + title="Disable hiding wine exports from applications (wine-staging)" + +load_hidewineexports() +{ + # Wine exports some functions allowing apps to query the wine version and + # information about the host environment. Using these functions, some apps + # will intentionally terminate if they can detect that they are running in + # a wine environment. + # + # Hiding these wine exports is only available in wine-staging. + # See https://bugs.winehq.org/show_bug.cgi?id=38656 + case $arg in + enable) + local registry_value="\"Y\"" + ;; + disable) + local registry_value="-" + ;; + *) w_die "Unexpected argument, $arg";; + esac + + cat > "$W_TMP"/set-wineexports.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine] +"HideWineExports"=$registry_value + +_EOF_ + w_try_regedit "$W_TMP"/set-wineexports.reg +} + +#---------------------------------------------------------------- + +w_metadata hosts settings \ + title_uk="Додати порожні файли у C:\windows\system32\drivers\etc\{hosts,services}" \ + title="Add empty C:\windows\system32\drivers\etc\{hosts,services} files" + +load_hosts() +{ + # Create fake system32\drivers\etc\hosts and system32\drivers\etc\services files. + # The hosts file is used to map network names to IP addresses without DNS. + # The services file is used map service names to network ports. + # Some apps depend on these files, but they're not implemented in wine. + # Fortunately, empty files in the correct location satisfy those apps. + # See http://bugs.winehq.org/show_bug.cgi?id=12076 + + # It's in system32 for both win32/win64 + mkdir -p "$W_WINDIR_UNIX"/system32/drivers/etc + touch "$W_WINDIR_UNIX"/system32/drivers/etc/hosts + touch "$W_WINDIR_UNIX"/system32/drivers/etc/services +} + +#---------------------------------------------------------------- + +w_metadata native_mdac settings \ + title_uk="Перевизначити odbc32, odbccp32 та oledb32" \ + title="Override odbc32, odbccp32 and oledb32" + +load_native_mdac() +{ + # Set those overrides globally so user programs get MDAC's odbc + # instead of wine's unixodbc + w_override_dlls native,builtin odbc32 odbccp32 oledb32 +} + +#---------------------------------------------------------------- + +w_metadata native_oleaut32 settings \ + title_uk="Перевизначити oleaut32" \ + title="Override oleaut32" + +load_native_oleaut32() +{ + w_override_dlls native,builtin oleaut32 +} + +#---------------------------------------------------------------- + +w_metadata nocrashdialog settings \ + title_uk="Вимкнути діалог про помилку" \ + title="Disable crash dialog" + +load_nocrashdialog() +{ + echo "Disabling graphical crash dialog" + cat > "$W_TMP"/crashdialog.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\WineDbg] +"ShowCrashDialog"=dword:00000000 + +_EOF_ + cd "$W_TMP" + w_try_regedit crashdialog.reg +} + +#---------------------------------------------------------------- + +w_metadata nt40 settings \ + title_uk="Поставити версію Windows NT 4.0" \ + title="Set windows version to Windows NT 4.0" + +load_nt40() +{ + w_set_winver nt40 +} + +#---------------------------------------------------------------- + +w_metadata psm=0 settings \ + title="Set MaxShaderModelPS to 0" +w_metadata psm=1 settings \ + title="Set MaxShaderModelPS to 1" +w_metadata psm=2 settings \ + title="Set MaxShaderModelPS to 2" +w_metadata psm=3 settings \ + title="Set MaxShaderModelPS to 3" + +load_psm() +{ + winetricks_set_wined3d_var MaxShaderModelPS $1 +} + +#---------------------------------------------------------------- + +w_metadata sandbox settings \ + title_uk="Пісочниця wineprefix - видалити посилання до HOME" \ + title="Sandbox the wineprefix - remove links to \$HOME" + +load_sandbox() +{ + w_skip_windows sandbox && return + + # Unmap drive Z + rm -f "$WINEPREFIX/dosdevices/z:" + + _olddir="`pwd`" + cd "$WINEPREFIX/drive_c/users/$USER" + for x in * + do + if test -h "$x" && test -d "$x" + then + rm -f "$x" + mkdir -p "$x" + fi + done + cd "$_olddir" + unset _olddir + + # Disable unixfs + # Unfortunately, when you run with a different version of Wine, Wine will recreate this key. + # See http://bugs.winehq.org/show_bug.cgi?id=22450 + "$WINE" regedit /d 'HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\Namespace\{9D20AAE8-0625-44B0-9CA7-71889C2254D9}' + + # Disable recreation of the above key - or any updating of the registry - when running with a newer version of Wine. + echo disable > "$WINEPREFIX/.update-timestamp" +} + +#---------------------------------------------------------------- + +w_metadata sound=alsa settings \ + title_uk="Поставити звуковий драйвер ALSA" \ + title="Set sound driver to ALSA" +w_metadata sound=coreaudio settings \ + title_uk="Поставити звуковий драйвер Mac CoreAudio" \ + title="Set sound driver to Mac CoreAudio" +w_metadata sound=disabled settings \ + title_uk="Вимкнути звуковий драйвер" \ + title="Set sound driver to disabled" +w_metadata sound=oss settings \ + title_uk="Поставити звуковий драйвер OSS" \ + title="Set sound driver to OSS" +w_metadata sound=pulse settings \ + title_uk="Поставити звуковий драйвер PulseAudio" \ + title="Set sound driver to PulseAudio" + +load_sound() +{ + echo "Setting sound driver to $1" + cat > "$W_TMP"/set-sound.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\Drivers] +"Audio"="$1" + +_EOF_ + w_try_regedit "$W_TMP_WIN"\\set-sound.reg +} + +#---------------------------------------------------------------- + +w_metadata vd=off settings \ + title_uk="Вимкнути віртуальний робочий стіл" \ + title="Disable virtual desktop" +w_metadata vd=640x480 settings \ + title_uk="Включити віртуальний робочий стіл та поставити розмір 640x480" \ + title="Enable virtual desktop, set size to 640x480" +w_metadata vd=800x600 settings \ + title_uk="Включити віртуальний робочий стіл та поставити розмір 800x600" \ + title="Enable virtual desktop, set size to 800x600" +w_metadata vd=1024x768 settings \ + title_uk="Включити віртуальний робочий стіл та поставити розмір 1024x768" \ + title="Enable virtual desktop, set size to 1024x768" +w_metadata vd=1280x1024 settings \ + title_uk="Включити віртуальний робочий стіл та поставити розмір 1280x1024" \ + title="Enable virtual desktop, set size to 1280x1024" +w_metadata vd=1440x900 settings \ + title_uk="Включити віртуальний робочий стіл та поставити розмір 1440x900" \ + title="Enable virtual desktop, set size to 1440x900" + +load_vd() +{ + size=$1 + case $size in + off|disabled) + cat > "$W_TMP"/vd.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\Explorer] +"Desktop"=- +[HKEY_CURRENT_USER\Software\Wine\Explorer\Desktops] +"Default"=- + +_EOF_ + ;; + [1-9]*x[1-9]*) + cat > "$W_TMP"/vd.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\Explorer] +"Desktop"="Default" +[HKEY_CURRENT_USER\Software\Wine\Explorer\Desktops] +"Default"="$size" + +_EOF_ + ;; + *) + w_die "you want a virtual desktop of $size? I don't understand." + ;; + esac + w_try_regedit "$W_TMP_WIN"/vd.reg +} + +#---------------------------------------------------------------- + +w_metadata videomemorysize=default settings \ + title_uk="Дати можливість Wine визначити розмір відеопам'яті" \ + title="Let Wine detect amount of video card memory" +w_metadata videomemorysize=512 settings \ + title_uk="Повідомити Wine про 512МБ відеопам'яті" \ + title="Tell Wine your video card has 512MB RAM" +w_metadata videomemorysize=1024 settings \ + title_uk="Повідомити Wine про 1024МБ відеопам'яті" \ + title="Tell Wine your video card has 1024MB RAM" +w_metadata videomemorysize=2048 settings \ + title_uk="Повідомити Wine про 2048МБ відеопам'яті" \ + title="Tell Wine your video card has 2048MB RAM" + +load_videomemorysize() +{ + size=$1 + echo "Setting video memory size to $size" + + case $size in + default) + + cat > "$W_TMP"/set-video.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\Direct3D] +"VideoMemorySize"=- + +_EOF_ + ;; + *) + cat > "$W_TMP"/set-video.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine\Direct3D] +"VideoMemorySize"="$size" + +_EOF_ + esac + w_try_regedit "$W_TMP_WIN"\\set-video.reg +} + +#---------------------------------------------------------------- + +w_metadata vista settings \ + title_uk="Поставити версію Windows Vista" \ + title="Set windows version to Windows Vista" + +load_vista() +{ + w_set_winver vista +} + +#---------------------------------------------------------------- + +w_metadata vsm=0 settings \ + title="Set MaxShaderModelVS to 0" +w_metadata vsm=1 settings \ + title="Set MaxShaderModelVS to 1" +w_metadata vsm=2 settings \ + title="Set MaxShaderModelVS to 2" +w_metadata vsm=3 settings \ + title="Set MaxShaderModelVS to 3" + +load_vsm() +{ + winetricks_set_wined3d_var MaxShaderModelVS $1 +} + +#---------------------------------------------------------------- + +w_metadata win2k settings \ + title_uk="Поставити версію Windows 2000" \ + title="Set windows version to Windows 2000" + +load_win2k() +{ + w_set_winver win2k +} + +#---------------------------------------------------------------- + +w_metadata win2k3 settings \ + title_uk="Поставити версію Windows 2003" \ + title="Set windows version to Windows 2003" + +load_win2k3() +{ + w_set_winver win2k3 +} + +#---------------------------------------------------------------- + +w_metadata win31 settings \ + title_uk="Поставити версію Windows 3.1" \ + title="Set windows version to Windows 3.1" + +load_win31() +{ + w_set_winver win31 +} + +#---------------------------------------------------------------- + +w_metadata win7 settings \ + title_uk="Поставити версію Windows 7" \ + title="Set windows version to Windows 7" + +load_win7() +{ + w_set_winver win7 +} + +#---------------------------------------------------------------- + +w_metadata win95 settings \ + title_uk="Поставити версію Windows 95" \ + title="Set windows version to Windows 95" + +load_win95() +{ + w_set_winver win95 +} + +#---------------------------------------------------------------- + +w_metadata win98 settings \ + title_uk="Поставити версію Windows 98" \ + title="Set windows version to Windows 98" + +load_win98() +{ + w_set_winver win98 +} + +#---------------------------------------------------------------- + +# Really, we should support other values, since winetricks did +w_metadata winver= settings \ + title_uk="Поставити версію Windows за замовчуванням (winxp)" \ + title="Set windows version to default (winxp)" + +load_winver() +{ + w_set_winver winxp +} + +#---------------------------------------------------------------- + +w_metadata winxp settings \ + title_uk="Поставити версію Windows XP" \ + title="Set windows version to Windows XP" + +load_winxp() +{ + w_set_winver winxp +} + +#---------------------------------------------------------------- + +#---- Derived Metadata ---- +# Generated automatically by measuring time and space requirements of all verbs +# size_MB includes size of virgin wineprefix, but not the cached installer +case $WINETRICKS_OPT_VERBOSE in + 2) set -x ;; + *) set +x ;; +esac + +for data in \ + 3dmark03:size_MB=895,time_sec=149 \ + 3dmark05:size_MB=1255,time_sec=208 \ + 3dmark06:size_MB=2627,time_sec=461 \ + 3dmark2000:size_MB=165,time_sec=71 \ + 3dmark2001:size_MB=260,time_sec=141 \ + 7zip:size_MB=53,time_sec=9 \ + abiword:size_MB=119,time_sec=15 \ + adobeair:size_MB=132,time_sec=8 \ + algodoo_demo:size_MB=165,time_sec=52 \ + allcodecs:size_MB=48,time_sec=3 \ + allfonts:size_MB=132,time_sec=114 \ + amstream:size_MB=48,time_sec=2 \ + aoe3_demo:size_MB=4472,time_sec=422 \ + aoe_demo:size_MB=164,time_sec=35 \ + art2kmin:size_MB=363,time_sec=36 \ + atmlib:size_MB=454,time_sec=73 \ + autohotkey:size_MB=53,time_sec=4 \ + baekmuk:size_MB=138,time_sec=3 \ + bioshock_demo:size_MB=7510,time_sec=1543 \ + bladekitten_demo:size_MB=1444,time_sec=174 \ + cjkfonts:size_MB=48,time_sec=4 \ + cmake:size_MB=85,time_sec=8 \ + cnc3_demo:size_MB=5244,time_sec=1022 \ + cod4mw_demo:size_MB=5730,time_sec=1108 \ + cod_demo:size_MB=574,time_sec=115 \ + colorprofile:size_MB=47,time_sec=1 \ + comctl32:size_MB=49,time_sec=1 \ + comdlg32ocx:size_MB=49,time_sec=1 \ + controlpad:size_MB=69,time_sec=4 \ + corefonts:size_MB=62,time_sec=2 \ + crypt32:size_MB=178,time_sec=71 \ + crysis2:size_MB=8259,time_sec=1200 \ + crysis2_demo_mp:size_MB=5259,time_sec=1473 \ + d3dcompiler_43:size_MB=138,time_sec=51 \ + d3dx10:size_MB=50,time_sec=4 \ + d3dx11_43:size_MB=48,time_sec=1 \ + d3dx9:size_MB=126,time_sec=3 \ + d3dx9_26:size_MB=48,time_sec=2 \ + d3dx9_28:size_MB=48,time_sec=1 \ + d3dx9_31:size_MB=48,time_sec=2 \ + d3dx9_35:size_MB=50,time_sec=2 \ + d3dx9_36:size_MB=48,time_sec=1 \ + d3dx9_42:size_MB=48,time_sec=1 \ + d3dxof:size_MB=48,time_sec=2 \ + dc2ba_demo:size_MB=209,time_sec=38 \ + deadspace2:size_MB=12693,time_sec=720 \ + devenum:size_MB=59,time_sec=2 \ + diablo2:size_MB=2577,time_sec=37 \ + dinput:size_MB=48,time_sec=1 \ + dinput8:size_MB=61,time_sec=2 \ + dirac:size_MB=50,time_sec=4 \ + directmusic:size_MB=63,time_sec=4 \ + directplay:size_MB=61,time_sec=3 \ + directx9:size_MB=387,time_sec=12 \ + dirt2_demo:size_MB=6241,time_sec=977 \ + divinity2_demo:size_MB=2906,time_sec=2627 \ + dmsynth:size_MB=57,time_sec=2 \ + dotnet11:size_MB=94,time_sec=15 \ + dotnet20:size_MB=360,time_sec=64 \ + dotnet30:size_MB=645,time_sec=302 \ + dotnet35:size_MB=1149,time_sec=445 \ + dragonage:size_MB=23771,time_sec=673 \ + dragonage2_demo:size_MB=4014,time_sec=1428 \ + droid:size_MB=63,time_sec=8 \ + dsound:size_MB=48,time_sec=1 \ + dxdiag:size_MB=75,time_sec=6 \ + dxdiagn:size_MB=48,time_sec=1 \ + eufonts:size_MB=58,time_sec=2 \ + eve:size_MB=5313,time_sec=1568 \ + eve:size_MB=11215,time_sec=467 \ + farmsim2011_demo:size_MB=48,time_sec=4 \ + ffdshow:size_MB=53,time_sec=4 \ + fifa11_demo:size_MB=4932,time_sec=845 \ + flash:size_MB=57,time_sec=3 \ + fontfix:size_MB=47,time_sec=0 \ + fontxplorer:size_MB=51,time_sec=5 \ + gdiplus:size_MB=50,time_sec=2 \ + gfw:size_MB=211,time_sec=11 \ + glut:size_MB=47,time_sec=1 \ + gothic4_demo:size_MB=7719,time_sec=1402 \ + guildwars:size_MB=224,time_sec=392 \ + hegemony_demo:size_MB=1927,time_sec=315 \ + hegemonygold_demo:size_MB=2339,time_sec=247 \ + hon:size_MB=1536,time_sec=337 \ + hphbp_demo:size_MB=2898,time_sec=556 \ + icodecs:size_MB=60,time_sec=29 \ + ie6:size_MB=340,time_sec=58 \ + ie7:size_MB=181,time_sec=44 \ + ie8:size_MB=202,time_sec=39 \ + imvu:size_MB=194,time_sec=17 \ + jet40:size_MB=54,time_sec=3 \ + l3codecx:size_MB=60,time_sec=5 \ + lhp_demo:size_MB=3200,time_sec=645 \ + liberation:size_MB=50,time_sec=3 \ + lucida:size_MB=51,time_sec=1 \ + masseffect2_demo:size_MB=8291,time_sec=1397 \ + mb_warband_demo:size_MB=1495,time_sec=35 \ + mdac25:size_MB=97,time_sec=6 \ + mdac27:size_MB=70,time_sec=3 \ + mdac28:size_MB=75,time_sec=4 \ + mfc40:size_MB=48,time_sec=0 \ + mfc42:size_MB=47,time_sec=1 \ + mingw:size_MB=132,time_sec=3 \ + mozillabuild:size_MB=891,time_sec=26 \ + mpc:size_MB=87,time_sec=2 \ + msasn1:size_MB=178,time_sec=3 \ + mshflxgd:size_MB=47,time_sec=0 \ + msi2:size_MB=62,time_sec=4 \ + msls31:size_MB=48,time_sec=0 \ + msmask:size_MB=47,time_sec=0 \ + mspaint:size_MB=49,time_sec=0 \ + msscript:size_MB=48,time_sec=0 \ + msxml3:size_MB=49,time_sec=1 \ + msxml4:size_MB=55,time_sec=0 \ + msxml6:size_MB=54,time_sec=1 \ + nfsshift_demo:size_MB=4877,time_sec=157 \ + ogg:size_MB=54,time_sec=1 \ + opensymbol:size_MB=49,time_sec=1 \ + openwatcom:size_MB=274,time_sec=12 \ + osmos_demo:size_MB=67,time_sec=5 \ + pdh:size_MB=48,time_sec=0 \ + penpenxmas:size_MB=49,time_sec=6 \ + physx:size_MB=213,time_sec=5 \ + plantsvszombies:size_MB=156,time_sec=24 \ + pngfilt:size_MB=49,time_sec=0 \ + puzzleagent_demo:size_MB=495,time_sec=36 \ + python26:size_MB=160,time_sec=9 \ + python26_comtypes:size_MB=46,time_sec=1 \ + quartz:size_MB=62,time_sec=3 \ + quicktime72:size_MB=219,time_sec=9 \ + quicktime76:size_MB=237,time_sec=6 \ + rayman2_demo:size_MB=239,time_sec=146 \ + riched20:size_MB=49,time_sec=0 \ + riched30:size_MB=48,time_sec=0 \ + richtx32:size_MB=48,time_sec=0 \ + safari:size_MB=210,time_sec=4 \ + sammax301_demo:size_MB=1419,time_sec=341 \ + sammax304_demo:size_MB=1642,time_sec=88 \ + secondlife:size_MB=266,time_sec=24 \ + secur32:size_MB=47,time_sec=0 \ + shockwave:size_MB=134,time_sec=6 \ + sims3:size_MB=12884,time_sec=584 \ + sketchup:size_MB=319,time_sec=15 \ + spotify:size_MB=59,time_sec=4 \ + starcraft2_demo:size_MB=5241,time_sec=211 \ + tahoma:size_MB=48,time_sec=0 \ + takao:size_MB=176,time_sec=3 \ + tmnationsforever:size_MB=1871,time_sec=116 \ + uff:size_MB=47,time_sec=0 \ + unifont:size_MB=51,time_sec=0 \ + usp10:size_MB=50,time_sec=0 \ + ut3:size_MB=7355,time_sec=426 \ + utorrent:size_MB=48,time_sec=1 \ + vb2run:size_MB=48,time_sec=0 \ + vb3run:size_MB=47,time_sec=0 \ + vb4run:size_MB=49,time_sec=0 \ + vb5run:size_MB=49,time_sec=0 \ + vb6run:size_MB=50,time_sec=1 \ + vc2005express:size_MB=1614,time_sec=173 \ + vc2005trial:size_MB=7156,time_sec=53 \ + vcrun2003:size_MB=47,time_sec=0 \ + vcrun2005:size_MB=60,time_sec=2 \ + vcrun2008:size_MB=60,time_sec=2 \ + vcrun2010:size_MB=71,time_sec=7 \ + vcrun6:size_MB=51,time_sec=0 \ + vcrun6sp6:size_MB=109,time_sec=2 \ + vjrun20:size_MB=319,time_sec=57 \ + vlc:size_MB=221,time_sec=7 \ + wenquanyi:size_MB=50,time_sec=0 \ + windowscodecs:size_MB=53,time_sec=2 \ + winhttp:size_MB=49,time_sec=0 \ + wininet:size_MB=47,time_sec=0 \ + wme9:size_MB=136,time_sec=5 \ + wmi:size_MB=62,time_sec=12 \ + wmp10:size_MB=161,time_sec=7 \ + wmp9:size_MB=143,time_sec=12 \ + wog:size_MB=124,time_sec=5 \ + wsh56js:size_MB=45,time_sec=0 \ + xact:size_MB=60,time_sec=6 \ + xinput:size_MB=47,time_sec=2 \ + xmllite:size_MB=50,time_sec=4 \ + xvid:size_MB=54,time_sec=2 \ + zootycoon2_demo:size_MB=299,time_sec=32 \ + +do + cmd=${data%%:*} + file="`echo "$WINETRICKS_METADATA"/*/$cmd.vars`" + if test -f "$file" + then + case $data in + *size_MB*) + size_MB=${data##*size_MB=} # remove anything before value + size_MB=${size_MB%%,*} # remove anything after value + echo size_MB=$size_MB >> "$file" + ;; + esac + + case $data in + *time_sec*) + time_sec=${data##*time_sec=} + time_sec=${time_sec%%,*} + echo time_sec=$time_sec >> "$file" + esac + fi + unset size_MB time_sec +done + +# Restore verbosity: +case $WINETRICKS_OPT_VERBOSE in + 1|2) set -x ;; + *) set +x ;; +esac + +#---- Main Program ---- + +winetricks_stats_save() +{ + # Save opt-in status + if test "$WINETRICKS_STATS_REPORT" + then + echo "$WINETRICKS_STATS_REPORT" > "$W_CACHE"/track_usage + fi +} + +winetricks_stats_init() +{ + # Load opt-in status if not already set by a commandline option + if test ! "$WINETRICKS_STATS_REPORT" && test -f "$W_CACHE"/track_usage + then + WINETRICKS_STATS_REPORT=`cat "$W_CACHE"/track_usage` + fi + + if test ! "$WINETRICKS_STATS_REPORT" + then + # No opt-in status found. If GUI active, ask user whether they would like to opt in. + case $WINETRICKS_GUI in + zenity) + case $LANG in + de*) + title="Einmalige Frage zur Hilfe an der Winetricks Entwicklung" + question="Möchten Sie die Winetricks Entwicklung unterstützen indem Sie Winetricks Statistiken übermitteln lassen? Sie können die Übermittlung jederzeit mit 'winetricks --optout' ausschalten" + thanks="Danke! Sie bekommen diese Frage nicht mehr gestellt. Sie können die Übermittlung jederzeit mit 'winetricks --optout' wieder ausschalten" + declined="OK, Winetricks wird *keine* Statistiken übermitteln. Sie bekommen diese Frage nicht mehr gestellt." + ;; + *) + title="One-time question about helping Winetricks development" + question="Would you like to help winetricks development by letting winetricks report statistics? You can turn reporting off at any time with the command 'winetricks --optout'" + thanks="Thanks! You won't be asked this question again. Remember, you can turn reporting off at any time with the command 'winetricks --optout'" + declined="OK, winetricks will *not* report statistics. You won't be asked this question again." + ;; + esac + if $WINETRICKS_GUI --question --text "$question" --title "$title" + then + $WINETRICKS_GUI --info --text "$thanks" + WINETRICKS_STATS_REPORT=1 + else + $WINETRICKS_GUI --info --text "$declined" + WINETRICKS_STATS_REPORT=0 + fi + echo $WINETRICKS_STATS_REPORT > "$W_CACHE"/track_usage + ;; + esac + fi + winetricks_stats_save +} + +# Retrieve a short string with the operating system name and version +winetricks_os_description() +{ + ( + case "$OS" in + "Windows_NT") + echo windows ;; + *) echo "$WINETRICKS_WINE_VERSION" ;; + esac + ) | tr '\012' ' ' +} + +winetricks_stats_report() +{ + # If user has opted in to usage tracking, report what he used (if anything) + case "$WINETRICKS_STATS_REPORT" in + 1) ;; + *) return;; + esac + test -f "$WINETRICKS_WORKDIR"/breadcrumbs || return + + WINETRICKS_STATS_BREADCRUMBS=`cat "$WINETRICKS_WORKDIR"/breadcrumbs | tr '\012' ' '` + echo "You opted in, so reporting '$WINETRICKS_STATS_BREADCRUMBS' to the winetricks maintainer so he knows which winetricks verbs get used and which don't. Use --optout to disable future reports." + + report="os=`winetricks_os_description`&winetricks=$WINETRICKS_VERSION&breadcrumbs=$WINETRICKS_STATS_BREADCRUMBS" + report="`echo $report | sed 's/ /%20/g'`" + # Just do a HEAD request with the raw commandline. + # Yes, this can be fooled by caches. That's ok. + if [ -x "`which wget 2>/dev/null`" ] + then + wget --spider "http://kegel.com/data/winetricks-usage?$report" > /dev/null 2>&1 || true + elif [ -x "`which curl 2>/dev/null`" ] + then + curl -I "http://kegel.com/data/winetricks-usage?$report" > /dev/null 2>&1 || true + fi +} + +winetricks_stats_log_command() +{ + # log what we execute for possible later statistics reporting + echo "$*" >> "$WINETRICKS_WORKDIR"/breadcrumbs + + # and for the user's own reference later, when figuring out what he did + case "$OS" in + "Windows_NT") _W_LOGDIR="$W_WINDIR_UNIX"/Temp ;; + *) _W_LOGDIR="$WINEPREFIX" ;; + esac + mkdir -p "$_W_LOGDIR" + echo "$*" >> "$_W_LOGDIR"/winetricks.log + unset _W_LOGDIR +} + +# Launch a new terminal window if in gui, or +# spawn a shell in the current window if commandline. +# New shell contains proper WINEPREFIX and WINE environment variables. +# May be useful when debugging verbs. +winetricks_shell() +{ + ( + cd "$W_DRIVE_C" + export WINE + + case $WINETRICKS_GUI in + none) + $SHELL + ;; + *) + for term in gnome-terminal konsole Terminal xterm + do + if test `which $term` 2> /dev/null + then + $term + break + fi + done + ;; + esac + ) +} + +# Usage: execute_command verb[=argument] +execute_command() +{ + case "$1" in + *=*) arg=`echo $1 | sed 's/.*=//'`; cmd=`echo $1 | sed 's/=.*//'`;; + *) cmd="$1"; arg="" ;; + esac + + case "$1" in + + # FIXME: avoid duplicated code + apps|benchmarks|dlls|fonts|games|prefix|settings) + WINETRICKS_CURMENU=$1 + ;; + + # Late options + -*) + if ! winetricks_handle_option $1 + then + winetricks_usage + exit 1 + fi + ;; + + # Hard-coded verbs + main) WINETRICKS_CURMENU=main ;; + help) w_open_webpage https://code.google.com/archive/p/winetricks/wikis ;; + list) winetricks_list_all ;; + list-cached) winetricks_list_cached ;; + list-download) winetricks_list_download ;; + list-manual-download) winetricks_list_manual_download ;; + list-installed) winetricks_list_installed ;; + list-all) + old_menu="$WINETRICKS_CURMENU" + for WINETRICKS_CURMENU in apps benchmarks dlls fonts games prefix settings + do + echo "===== $WINETRICKS_CURMENU =====" + winetricks_list_all + done + WINETRICKS_CURMENU="$old_menu" + ;; + unattended) winetricks_set_unattended 1 ;; + attended) winetricks_set_unattended 0 ;; + showbroken) W_OPT_SHOWBROKEN=1 ;; + hidebroken) W_OPT_SHOWBROKEN=0 ;; + prefix=*) winetricks_set_wineprefix "$arg" ;; + annihilate) winetricks_annihilate_wineprefix ;; + folder) w_open_folder "$WINEPREFIX" ;; + winecfg) "$WINE" winecfg ;; + regedit) "$WINE" regedit ;; + taskmgr) "$WINE" taskmgr & ;; + uninstaller) "$WINE" uninstaller ;; + shell) winetricks_shell ;; + + # These have to come before *=disabled to avoid looking like dlls + fontsmooth=disable*) w_call fontsmooth=disable ;; + glsl=disable*) w_call glsl=disabled ;; + multisampling=disable*) w_call multisampling=disabled ;; + mwo=disable*) w_call mwo=disable ;; # FIXME: relax matching so we can handle these spelling differences in verb instead of here + rtlm=disable*) w_call rtlm=disabled ;; + sound=disable*) w_call sound=disabled ;; + ao=disable*) w_call ao=disabled ;; + strictdrawordering=disable*) w_call strictdrawordering=disabled ;; + + # Use winecfg if you want a gui for plain old dll overrides + alldlls=*) w_call $1 ;; + *=native) w_do_call native $cmd;; + *=builtin) w_do_call builtin $cmd;; + *=default) w_do_call default $cmd;; + *=disabled) w_do_call disabled $cmd;; + vd=*) w_do_call $cmd;; + + # Hacks for backwards compatibility + cc580) w_call comctl32 ;; + comdlg32.ocx) w_call comdlg32ocx ;; + dotnet1) w_call dotnet11 ;; + dotnet2) w_call dotnet20 ;; + flash11) w_call flash ;; + fm20) w_call controlpad ;; # art2kmin also comes with fm20.dll + fontsmooth-bgr) w_call fontsmooth=bgr ;; + fontsmooth-disable) w_call fontsmooth=disable ;; + fontsmooth-gray) w_call fontsmooth=gray ;; + fontsmooth-rgb) w_call fontsmooth=rgb ;; + glsl-disable) w_call glsl=disabled ;; + glsl-enable) w_call glsl=enabled ;; + ie6_full) w_call ie6 ;; + jscript) w_call wsh56js ;; # FIXME: use wsh57 instead? + npm-repack) w_call npm=repack ;; + oss) w_call sound=oss ;; + python) w_call python26 ;; + python-comtypes) w_call python26_comtypes ;; + vbrun60) w_call vb6run ;; + vcrun2005sp1) w_call vcrun2005 ;; + vcrun2008sp1) w_call vcrun2008 ;; + wsh56) w_call wsh57 ;; + xlive) w_call gfw ;; + + # Normal verbs, with metadata and load_ functions + *) + if winetricks_metadata_exists $1 + then + w_call "$1" + else + echo Unknown arg $1 + winetricks_usage + exit 1 + fi + ;; + esac +} + +if ! test "$WINETRICKS_LIB" +then + # If user opted out, save that preference now. + winetricks_stats_save + + # If user specifies menu on commandline, execute that command, but don't commit to commandline mode + # FIXME: this code is duplicated several times; unify it + if echo "$WINETRICKS_CATEGORIES" | grep -w "$1" > /dev/null + then + WINETRICKS_CURMENU=$1 + shift + fi + + case "$1" in + die) w_die "we who are about to die salute you." ;; + volnameof=*) + # Debug code. Remove later? + # Since linux's volname command can't handle dvds, winetricks has its own, + # implemented using dd, old gum, and some string I had laying around. + # You can try it like this: + # winetricks volnameof=/dev/sr0 + # or + # winetricks volnameof=foo.iso + # This will read the volname from the given image and put it to stdout. + winetricks_volname ${1#volnameof=} + ;; + "") + if test x"$DISPLAY" = x"" + then + echo "DISPLAY not set, not defaulting to gui" + winetricks_usage + exit 0 + fi + # GUI case + # No non-option arguments given, so read them from GUI, and loop until user quits + winetricks_detect_gui + winetricks_detect_sudo + while true + do + case $WINETRICKS_CURMENU in + main) verbs=`winetricks_mainmenu` ;; + prefix) + verbs=`winetricks_prefixmenu`; + # Cheezy hack: choosing 'attended' or 'unattended' leaves you in same menu + case "$verbs" in + attended) winetricks_set_unattended 0 ; continue;; + unattended) winetricks_set_unattended 1 ; continue;; + esac + ;; + settings) verbs=`winetricks_settings_menu` ;; + *) verbs="`winetricks_showmenu`" ;; + esac + + if test "$verbs" = "" + then + # "user didn't pick anything, back up a level in the menu" + case "$WINETRICKS_CURMENU"-"$WINETRICKS_OPT_SHAREDPREFIX" in + apps-0|benchmarks-0|games-0|main-*) WINETRICKS_CURMENU=prefix ;; + prefix-*) break ;; + *) WINETRICKS_CURMENU=main ;; + esac + elif echo "$WINETRICKS_CATEGORIES" | grep -w "$verbs" > /dev/null + then + WINETRICKS_CURMENU=$verbs + else + winetricks_stats_init + # Otherwise user picked one or more real verbs. + case "$verbs" in + prefix=*) + # prefix menu is special, it only returns one verb, and the + # verb can contain spaces + execute_command "$verbs" + # after picking a prefix, want to land in main. + WINETRICKS_CURMENU=main ;; + *) + for verb in $verbs + do + execute_command "$verb" + done + case "$WINETRICKS_CURMENU"-"$WINETRICKS_OPT_SHAREDPREFIX" in + prefix-*|apps-0|benchmarks-0|games-0) + # After installing isolated app, return to prefix picker + WINETRICKS_CURMENU=prefix + ;; + *) + # Otherwise go to main menu. + WINETRICKS_CURMENU=main + ;; + esac + ;; + esac + fi + done + ;; + *) + winetricks_stats_init + # Commandline case + winetricks_detect_sudo + # User gave commandline arguments, so just run those verbs and exit + for verb + do + case $verb in + *.verb) + # Load the verb file + case $verb in + */*) . $verb ;; + *) . ./$verb ;; + esac + # And forget that the verb comes from a file + verb="`echo $verb | sed 's,.*/,,;s,.verb,,'`" + ;; + esac + execute_command "$verb" + done + ;; + + esac + + winetricks_stats_report +fi diff --git a/hardware/emulator/wine/files/wisotool b/hardware/emulator/wine/files/wisotool new file mode 100644 index 0000000000..767919e6e7 --- /dev/null +++ b/hardware/emulator/wine/files/wisotool @@ -0,0 +1,9293 @@ +#!/bin/sh +# Quick and dirty script to install apps from .iso files +# Adapted from winetricks as of r995 +# Copyright 2007, 2008, 2009, 2010 Google (Dan Kegel, dank@kegel.com) +# Copyright 2008, 2009, 2010 Austin English (austinenglish@gmail.com) +# License: LGPL (for compatibility with winehq) +# Please report problems at http://code.google.com/p/winezeug/issues +# Note to contributors: please avoid gnu extensions in this shell script, +# as it has to run on MacOSX and Solaris, too. A good book on the topic is +# "Portable Shell Programming" by Bruce Blinn + +#---- Constants ------------------------------------------------- + +# Name of this version of wisotool (YYYYMMDD) +VERSION=20101106 + +# Run a windows command without triggering wine's mshtml's gecko install dialog +early_wine() +{ + WINEDLLOVERRIDES=mshtml= $WINE "$@" +} + +# Default values for important settings if not already in environment. +# These settings should not need editing here. +case "$OS" in + "Windows_NT") + # Cheezy fix for getting rid of double slashes when running cygwin in wine + case "$HOME" in + /) HOME="" ;; + esac + WINE="" + WINESERVER=true + DRIVE_C="C:/" + XXXPATH=cygpath + ;; + *) + WINE=${WINE:-wine} + WINEVERSION=`$WINE --version` + WINESERVER=${WINESERVER:-`which wineserver`} + WINEPREFIX="${WINEPREFIX:-$HOME/.wine}" + DRIVE_C="$WINEPREFIX/dosdevices/c:" + XXXPATH="early_wine winepath" + USERID=`id -u` + ;; +esac + +WISOTOOL_DIR=${WISOTOOL_DIR:-$HOME/.wisotool} + +# You can add your own verb to wisotool by creating $WISOTOOL_VERBS/foo.verb +WISOTOOL_VERBS="${WISOTOOL_VERBS:-$WISOTOOL_DIR/verbs}" +mkdir -p "$WISOTOOL_VERBS" + +# Postinstall scripts, if any, go here +WISOTOOL_POST="${WISOTOOL_POST:-$WISOTOOL_DIR/postinstall}" + +# Internal variables; these locations are not too important +WISOTOOL_CACHE="${WISOTOOL_CACHE:-$HOME/.wisotoolcache}" +test -d "$WISOTOOL_CACHE" || WISOTOOL_CACHE="$WISOTOOL_DIR/cache" +WISOTOOL_CACHE_WIN="`$XXXPATH -w $WISOTOOL_CACHE | tr '\012' ' ' | sed 's/ $//'`" +WISOTOOL_TMP="$DRIVE_C"/wisotooltmp +WISOTOOL_TMP_WIN='c:\wisotooltmp' + +# Clean up after failed runs, if needed +rm -rf "$WISOTOOL_TMP" +mkdir -p "$WISOTOOL_TMP" + +# Handle case where z: doesn't exist +case "$WISOTOOL_CACHE_WIN" in +""|*\?\\unix*) + # WISOTOOL_CACHE isn't accessible via a drive letter mapping, so make one, + # but be sure to clean it up later. + for letter in y x w v u t s r q + do + if ! test -d "$WINEPREFIX"/dosdevices/${letter}: + then + WISOTOOL_CACHE_SYMLINK="$WINEPREFIX"/dosdevices/${letter}: + ln -sf "$WISOTOOL_CACHE" "$WISOTOOL_CACHE_SYMLINK" + WISOTOOL_CACHE_WIN=${letter}: + break + fi + done + ;; +esac + +# Make sure USERNAME is set. +# (USERNAME isn't quite a standard - some Unixes set LOGNAME instead.) +USERNAME=${USERNAME:-$LOGNAME} + +# Overridden for windows +ISO_MOUNT_ROOT=/mnt/wisotool +ISO_MOUNT_LETTER=i + +WINDIR="$DRIVE_C/windows" + +#---- Functions ------------------------------------------------- + +# Detect which sudo to use +detect_sudo() { + SUDO=sudo + test "$GUI" = 1 || return + if test x"$DISPLAY" != x"" + then + if test -x "`which gksudo 2>/dev/null`" + then + SUDO=gksudo + elif test -x "`which kdesudo 2>/dev/null`" + then + SUDO=kdesudo + fi + fi +} + +# Detect which menu program to use +detect_menu() { + # TODO: add 'dialog' + MENU=xmessage + if test -x "`which zenity 2>/dev/null`" + then + MENU=zenity + elif test -x "`which kdialog 2>/dev/null`" + then + MENU=kdialog + fi +} + +warn() { + echo "------------------------------------------------------" + echo "$@" + echo "------------------------------------------------------" + + test "$GUI" = 1 || return + + # For some reason, nulls were showing up in $@?!, causing truncated output in zenity + msg="`echo $@ | tr '\000' ' '`" + case $MENU in + *zenity) zenity --error --title=Wisotool --text="$msg" --no-wrap;; + *kdialog) kdialog --title Wisotool --error "$msg" ;; + *xmessage) xmessage -title Wisotool -center " Error: $msg " ;; + esac +} + +die() { + warn "$@" + + exit 1 +} + +# Abort if user doesn't own the given directory (or its parent, if it doesn't exist yet) +die_if_user_not_dirowner() { + if test -d "$1" + then + checkdir="$1" + else + # fixme: quoting problem? + checkdir=`dirname "$1"` + fi + nuser=`id -u` + nowner=`ls -l -n -d -L "$checkdir" | awk '{print $3}'` + if test x$nuser != x$nowner + then + die "You (`id -un`) don't own $checkdir. Don't run wisotool as another user!" + fi +} + +#---------------------------------------------------------------- + +usage() { + set +x + # WARNING: do not use single quote in any package description; that breaks the gui menu. + echo "Script to install games automatically." + echo "Usage: $0 [options] package [package] ..." + echo "" + echo "Options:" + echo " -q quieter" + echo " -v verbose" + echo " -V display Version" + echo "Packages:" + sort "$WISOTOOL_TMP"/menutext + echo "Pseudopackages:" + echo " load Load a disc into the iso cache" + echo " load=KEY Load a disc with given key; only works from commandline at moment" + + # Show the other help message, too + case $GUI in + 0) load_help ;; + esac +} + +#---------------------------------------------------------------- +# Trivial GUI just to handle case where user tries running without commandline + +kdialog_showmenu() { + title="$1" + shift + text="$1" + shift + col1name="$1" + shift + col2name="$1" + shift + while test $# -gt 0 + do + args="$args $1 $1 off" + shift + done + kdialog --title "$title" --separate-output --checklist "$text" $args +} + +xmessage_showmenu() { + title="$1" + shift + text="$1" + shift + col1name="$1" + shift + col2name="$1" + shift + if test $# -gt 0 + then + args="$1" + shift + fi + while test $# -gt 0 + do + args="$args,$1" + shift + done + (echo "$title"; echo ""; echo "$text") | \ + xmessage -print -file - -buttons "Cancel,$args" | sed 's/Cancel//' +} + +showmenu() +{ + # FIXME: call verblist_get_descriptions instead of scraping usage() ? + case $MENU in + zenity) + echo "zenity --title 'Select a package to install' --text 'Install?' --list --checklist --column '' --column Package --column Description --height 440 --width 600 \\" > "$WISOTOOL_TMP"/zenity.sh + usage | grep '^ [3a-z]' | sed 's/^ \([^ ]*\) *\(.*\)/FALSE "\1" '"'\2'/" | sed 's/$/ \\/' >> $WISOTOOL_TMP/zenity.sh + todo="`sh "$WISOTOOL_TMP"/zenity.sh | tr '|' ' '`" + ;; + kdialog) + packages=`usage | awk '/^ [3a-z]/ {print $1}'` + todo="`kdialog_showmenu "wisotool" "Select a package to install" "Install?" "Package" $packages`" + ;; + xmessage) + packages=`usage | awk '/^ [3a-z]/ {print $1}'` + todo="`xmessage_showmenu "wisotool" "Select a package to install" "Install?" "Package" $packages`" + ;; + esac + + if test "$todo"x = x + then + exit 0 + fi +} + +#----- Helpers ------------------------------------------------ + +# Execute with error checking +try() { + # "VAR=foo try cmd" fails to put VAR in the environment + # with some versions of bash if try is a shell function?! + # Adding this explicit export works around it. + export WINEDLLOVERRIDES + echo Executing "$@" + # Mark executable - needed if running on windows vista + case "$1" in + *.exe) chmod +x "$1" || true + cmd /c "$@" + ;; + *) + "$@" + ;; + esac + status=$? + if test $status -ne 0 + then + die "Note: command '$@' returned status $status. Aborting." + fi +} + +try_regedit() { + # on windows, doesn't work without cmd /c + case "$OS" in + "Windows_NT") cmdc="cmd /c";; + *) unset cmdc + esac + + try early_wine $cmdc regedit "$@" +} + +regedit() { + die oops, bug, please report +} + +wineserver() { + die oops, bug, please report +} + +try_cabextract() { + # Not always installed, but shouldn't be fatal unless it's being used + CABEXTRACT="`which cabextract 2>/dev/null`" + if test ! -x "$CABEXTRACT" + then + die "Cannot find cabextract. Please install it (e.g. 'sudo apt-get install cabextract' or 'sudo yum install cabextract')." + fi + + try $CABEXTRACT "$@" +} + +try_unrar() { + # Not always installed, but shouldn't be fatal unless it's being used + UNRAR="`which unrar 2>/dev/null`" + if test ! -x "$UNRAR" + then + die "Cannot find unrar. Please install it (e.g. 'sudo apt-get install unrar' or 'sudo yum install unrar'). For cygwin, you can get it at http://gnuwin32.sourceforge.net/packages/unrar.htm" + fi + + try $UNRAR "$@" +} + +cabextract() { + die oops, bug, please report +} + +# Usage: workaround_wine_bug bugnumber [good-wineversion-shell-pattern] +# False (nonzero status) on Windows. +# True (zero status) on Wine unless good-wineversion-shell-pattern is set +# and matches the current wine version. +# For debugging: if you want to skip a bug's workaround, put the bug number in the +# environment variable WISOTOOL_BLACKLIST to disable it. +workaround_wine_bug() +{ + if test "$WINE" = "" + then + echo No need to work around wine bug $1 on windows + return 1 + fi + if test "$2" != "" + then + # Using shell patterns in a variable with case is tricky, need to use eval + checkcode=" + case $WINEVERSION in + $2) echo No need to work around wine bug $1 in wine $WINEVERSION + return 1 + ;; + esac + " + eval "$checkcode" + fi + case $1 in + "$WISOTOOL_BLACKLIST") + echo wine bug $1 workaround blacklisted, skipping + return 1 + ;; + esac + warn Working around wine bug $1 + return 0 +} + +# verify an sha1sum +verify_sha1sum() { + wantsum=$1 + file=$2 + + gotsum=`$SHA1SUM < $file | sed 's/ .*//'` + if [ "$gotsum"x != "$wantsum"x ] + then + die "sha1sum mismatch! Rename $file and try again." + fi +} + +# Escape entities for URL usage +# Usage: url_encode < to_filter > filtered +# See RFC3986. +url_encode() { + perl -e ' + while (<>) { + s/\n//; + s/([^A-Za-z0-9\-\._~])/sprintf("%%%02X", ord($1))/ge; + print; + } + ' + return $? +} + +# Download a file +# Usage: package url [sha1sum [filename [cookie jar]]] +# Caches downloads in wisotoolcache/$package +download() { + if [ "$4"x != ""x ] + then + file="$4" + else + file=`basename "$2"` + fi + cache="$WISOTOOL_CACHE/$1" + mkdir -p "$cache" + if test ! -s "$cache/$file" && test -f "$cache/$file" + then + # zero size - bad download? + rm "$cache/$file" + fi + if test "$nosizecheck" != "" || test ! -f "$cache/$file" || test "$WISOTOOL_CONTINUE_DOWNLOAD" + then + cd "$cache" + # Mac folks tend to have curl rather than wget + # On Mac, 'which' doesn't return good exit status + # Need to jam in --header "Accept-Encoding: gzip,deflate" else + # redhat.com decompresses liberation-fonts.tar.gz! + echo Downloading $2 + if [ -x "`which wget 2>/dev/null`" ] + then + # Use -nd to insulate ourselves from people who set -x in WGETRC + # [*] --retry-connrefused works around the broken sf.net mirroring + # system when downloading corefonts + # [*] --read-timeout is useful on the adobe server that doesn't + # close the connection unless you tell it to (control-C or closing + # the socket) + # Disable retries for gog.com (which requires higher level retries) + wget -O "$file" -nd -c --read-timeout=300 --tries=1 --retry-connrefused --header "Accept-Encoding: gzip,deflate" ${5:+--load-cookies "$5"} "$2" + else + # curl doesn't get filename from the location given by the server! + # fortunately, we know it + curl -L -o "$file" -C - --header "Accept-Encoding: gzip,deflate" ${5:+--cookie "$5"} "$2" + fi + if test $? != 0 + then + test -f "$file" && rm "$file" + die "Downloading $2 failed" + fi + # Need to decompress .exe's that are compressed, else cygwin fails + # Only affects cygwin, so don't barf if 'file' not installed + FILE=`which file 2>/dev/null` + case $FILE-$file in + /*-*.exe) + case `file $file` in + *gzip*) mv $file $file.gz; gunzip < $file.gz > $file;; + esac + esac + + # On cygwin, .exe's must be marked +x + case $file in + *.exe) chmod +x $file ;; + esac + + cd "$olddir" + + if [ "$3"x != ""x ] + then + verify_sha1sum $3 "$cache/$file" + fi + fi +} + +set_winver() { + echo "Setting Windows version to $1" + cat > "$WISOTOOL_TMP"/set-winver.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Wine] +"Version"="$1" + +_EOF_ + try_regedit "$WISOTOOL_TMP_WIN"\\set-winver.reg +} + +set_app_winver() { + app="$1" + version="$2" + echo "Setting $app to $version mode" + ( + echo REGEDIT4 + echo "" + echo "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\$app]" + echo "\"Version\"=\"$version\"" + ) > "$WISOTOOL_TMP"/set-winver.reg + + try_regedit "$WISOTOOL_TMP_WIN"\\set-winver.reg + rm "$WISOTOOL_TMP"/set-winver.reg +} + + +load_vcdmount() +{ + if test "$WINE" != "" + then + return + fi + + # Call only on real Windows. + # Sets VCD_DIR and ISO_MOUNT_ROOT + + # The only free mount tool I know for Windows Vista is Virtual CloneDrive, + # which can be downloaded at + # http://www.slysoft.com/en/virtual-clonedrive.html + # FIXME: actually install it here + + # Locate vcdmount.exe. + VCD_DIR="Elaborate Bytes/VirtualCloneDrive" + if test ! -x "$programfilesdir_unix/$VCD_DIR/vcdmount.exe" && test ! -x "$programfilesdir_x86_unix/$VCD_DIR/vcdmount.exe" + then + warn "Installing Virtual CloneDrive" + download . http://static.slysoft.com/SetupVirtualCloneDrive.exe + # have to use cmd else vista won't let cygwin run .exe's? + chmod +x "$WISOTOOL_CACHE"/SetupVirtualCloneDrive.exe + cd "$WISOTOOL_CACHE" + cmd /c SetupVirtualCloneDrive.exe + cd "$olddir" + fi + if test -x "$programfilesdir_unix/$VCD_DIR/vcdmount.exe" + then + VCD_DIR="$programfilesdir_unix/$VCD_DIR" + elif test -x "$programfilesdir_x86_unix/$VCD_DIR/vcdmount.exe" + then + VCD_DIR="$programfilesdir_x86_unix/$VCD_DIR" + else + die "can't find Virtual CloneDrive?" + fi + # FIXME: Use WMI to locate the drive named + # "ELBY CLONEDRIVE..." using WMI as described in + # http://delphihaven.wordpress.com/2009/07/05/using-wmi-to-get-a-drive-friendly-name/ +} + +iso_mount() +{ + my_img="$1" + iso_umount + + # FIXME: Should we check somehow that the user put in the right disk? + if [ ! -f "$my_img" ] + then + warn "You don't seem to have an iso in $WISOTOOL_CACHE/$PACKAGE. Please insert the disk so I can prepare one for you." + load_iso dd + fi + + if test "$WINE" = "" + then + load_vcdmount + my_img_win="`$XXXPATH -w $my_img | tr '\012' ' ' | sed 's/ $//'`" + cd "$VCD_DIR" + try vcdmount.exe /l=$letter "$my_img_win" + cd "$olddir" + + tries=0 + while test $tries -lt 20 + do + for ISO_MOUNT_LETTER in e f g h i j k + do + echo "$WISOTOOL_MOUNT_LETTER_IGNORE" | grep -q "$ISO_MOUNT_LETTER" && continue + ISO_MOUNT_ROOT=/cygdrive/$ISO_MOUNT_LETTER + if find $ISO_MOUNT_ROOT -iname 'setup*' -o -iname '*.exe' -o -iname '*.msi' + then + break 2 + fi + done + tries=`expr $tries + 1` + echo "Waiting for mount to finish mounting" + sleep 1 + done + else + # Linux + # FIXME: use fuseiso when posible to avoid needing sudo + case "$SUDO" in + gksudo) + try $SUDO "mkdir -p $ISO_MOUNT_ROOT" + try $SUDO "mount -o ro,loop,uid=$USERID,unhide $my_img $ISO_MOUNT_ROOT" + ;; + *) + try $SUDO mkdir -p $ISO_MOUNT_ROOT + try $SUDO mount -o ro,loop,uid=$USERID,unhide "$my_img" $ISO_MOUNT_ROOT + ;; + esac + echo "Mounting as drive ${ISO_MOUNT_LETTER}:" + # Gotta provide a symlink to the raw disc, else installers that check volume names will fail + # FIXME: one of these gives a warning frequently, possibly on second run + ln -sf "$my_img" "$WINEPREFIX/dosdevices/${ISO_MOUNT_LETTER}::" + ln -sf "$ISO_MOUNT_ROOT" "$WINEPREFIX/dosdevices/${ISO_MOUNT_LETTER}:" + fi +} + +iso_umount() +{ + if test "$WINE" = "" + then + # Windows + load_vcdmount + cd "$VCD_DIR" + try vcdmount.exe /u + cd "$olddir" + else + echo "Running $SUDO umount $ISO_MOUNT_ROOT" + case "$SUDO" in + gksudo) + # -l lazy unmount in case executable still running + $SUDO "umount -l $ISO_MOUNT_ROOT" + try $SUDO "rm -rf $ISO_MOUNT_ROOT" + ;; + *) + $SUDO umount -l $ISO_MOUNT_ROOT + try $SUDO rm -rf $ISO_MOUNT_ROOT + ;; + esac + rm -f "$WINEPREFIX"/dosdevices/${ISO_MOUNT_LETTER}: + rm -f "$WINEPREFIX"/dosdevices/${ISO_MOUNT_LETTER}:: + fi +} + +mds_mount() +{ + + my_img="$1" + mds_umount + + # FIXME: will vcdmount work for mds/mdf files on windows, or do we need to use Alcohol here as well? + if test "$WINE" = "" + then + load_vcdmount + my_img_win="`$XXXPATH -w $my_img | tr '\012' ' ' | sed 's/ $//'`" + cd "$VCD_DIR" + try vcdmount.exe /l=$letter "$my_img_win" + cd "$olddir" + while ! test -d "$ISO_MOUNT_ROOT" + do + echo "Waiting for mount to finish" + sleep 1 + done + else + # Wine + + cdemu load 0 $my_img + + sleep 60 + + # FIXME: This is messy, but AFAICT, there's no way in advance to know where the drive will be mounted, + # since it depends on the cd/dvd title from the origial media, which is embedded in the mdf/mds file. + # Unfortunately, cdemu doesn't give an easy way to determine it, so find it with a combination of + # cdemu, mount, and grep + device_name=`cdemu device-mapping | grep ^0 | awk '{print $2}'` + ISO_MOUNT_ROOT=`mount -l | grep $device_name | awk '{print $3}'` + + echo "Mounting as drive ${ISO_MOUNT_LETTER}:" + # Gotta provide a symlink to the raw disc, else installers that check volume names will fail + # FIXME: one of these gives a warning frequently, possibly on second run + ln -sf "$device_name" "$WINEPREFIX/dosdevices/${ISO_MOUNT_LETTER}::" + ln -sf "$ISO_MOUNT_ROOT" "$WINEPREFIX/dosdevices/${ISO_MOUNT_LETTER}:" + fi +} + +mds_umount() +{ + if test "$WINE" = "" + then + # Windows + load_vcdmount + cd "$VCD_DIR" + try vcdmount.exe /u + cd "$olddir" + else + if [ ! -x "`which cdemu 2>/dev/null`" ] + then + die "cdemu is not installed, can't mount .mds files!" + fi + + # Initialize cdemu, if not already: + + # FIXME: Not sure this is 100% accurate... + # FIXME: Should kill the cdemud session when done... + pgrep cdemud + cdemud_run=$? + case $cdemud_run in + 0) echo "cdemud is already running" ;; + 1) echo "cdemud is not running, let's start one" ; + ( cdemud -b session & ) ; + sleep 60 + # FIXME: grep for "cdemu0: Daemon: error while performing ioctl" and die if it shows up ; + ;; + *) die "unknown error in cdemud_run" ;; + esac + + # FIXME: just running 'cdemu unload 0' doesn't seem to unload, but running 'eject /media/foo' does? + cdemu unload 0 + # Check that nothing is loaded there: + img_name=`cdemu status | grep ^0 | awk '{print $3}'` + if [ "$img_name" != "N/A" ] + then + echo "$img_name is mounted in cdemu, forcing an eject" + device_name=`cdemu device-mapping | grep ^0 | awk '{print $2}'` + ISO_MOUNT_ROOT=`mount -l | grep $device_name | awk '{print $3}'` + # FIXME: Does this need sudo? + eject $ISO_MOUNT_ROOT + sleep 60 # Give devices time to settle + fi + + rm -f "$WINEPREFIX"/dosdevices/${ISO_MOUNT_LETTER}: + rm -f "$WINEPREFIX"/dosdevices/${ISO_MOUNT_LETTER}:: + fi +} + +#---------------------------------------------------------------- + +# Executed if user kills script +cleanup() +{ + echo "Caught signal, cleaning up." + case "$pid" in + "") ;; + *) kill $pid ;; + esac + # TODO: merge this with cleanup code at end of script + test "$WISOTOOL_CACHE_SYMLINK" && rm -f "$WISOTOOL_CACHE_SYMLINK" + echo "Done cleanup, quitting." + exit 1 +} + +# FIXME: add support for ripping mdf/mds with Alcohol 120% +load_iso() { + method=$1 + key="$2" + + die_if_user_not_dirowner "$WISOTOOL_CACHE" + + # Detect raw device + dev=/dev/null + for dev in /dev/cdrom /dev/sr0 + do + test -b $dev && break + done + test $dev = /dev/null && die "can't find cd/dvd drive" + + # Hack for Gentoo - make sure we can read from the drive + test -r $dev || sudo chmod 666 $dev + + # Wait for user to insert disc + while ! dd if=$dev of=/dev/null count=1 + do + sleep 1 + done + + # Copy disc to .iso file, display progress every 5 seconds + # Use conv=noerror,sync to replace unreadable blocks with zeroes + case $method in + dd) + dd if=$dev of="$WISOTOOL_CACHE"/temp.iso bs=2048 conv=noerror,sync & + pid=$! + ;; + ddrescue) + if test "`which ddrescue`" = "" + then + die "Please install ddrescue first." + fi + ddrescue -v -b 2048 $dev "$WISOTOOL_CACHE"/temp.iso & + pid=$! + ;; + esac + + # Since we're running dd in the background, register a handler to kill it if user presses ^C + trap cleanup 1 2 3 6 + while ps -p $pid > /dev/null 2>&1 + do + sleep 5 + ls -l "$WISOTOOL_CACHE"/temp.iso + done + pid="" + + echo "Computing sha1sum..." + # FIXME: can't handle spaces in "$WISOTOOL_CACHE" + sum=`sha1sum "$WISOTOOL_CACHE"/temp.iso | awk '{print $1}'` + echo "Sha1sum of iso is $sum" + + mv "$WISOTOOL_CACHE"/temp.iso "$WISOTOOL_CACHE"/$sum.iso + if test "$key" != "" + then + # FIXME: in gui, prompt user for key if load= was chosen? + echo "$key" > "$WISOTOOL_CACHE"/$sum.txt + fi + + # Note: if you haven't written the verb for this disc yet, + # the .iso won't be moved to the right directory. + # So when writing a new verb, first run 'sh wisotool load', + # then write just the verblist_add part (including sha1sum), then + # run 'sh wisotool migrate' to move the iso into the right directory, + # and then write the rest of the verb. + migrate_files + + eject $dev || true # punt if eject not found (as on cygwin) +} + +#---------------------------------------------------------------- + +ahk_do() { + load_autohotkey + CR=`printf \\\\r` + echo "$@" | sed "s/\$/$CR/" > "$WISOTOOL_TMP"/tmp.ahk + $WINE "$programfilesdir_unix/AutoHotkey/AutoHotkey.exe" "$WISOTOOL_TMP_WIN"\\tmp.ahk +} + +#---------------------------------------------------------------- + +load_autohotkey() +{ + test -f "$programfilesdir_unix/AutoHotkey/AutoHotkey.exe" || try sh "$WINETRICKS" -q autohotkey +} + +#---------------------------------------------------------------- + +load_gecko() +{ + if ! test -f "$windir/system32/gecko/1.0.0/wine_gecko/nspr4.dll" + then + try sh "$WINETRICKS" gecko + fi +} + +#---------------------------------------------------------------- + +verblist_init() +{ + # Must call this before first call to verblist_add + file_map="case \"\$1\" in " + # Clear menu + rm -f "$WISOTOOL_TMP"/menutext +} + +verblist_finish() +{ + : # Now a no-op +} + +# Add a verb's description to the menu +menu_add() { + verbname=$1 + description="$2" + printf " %-24s %s\n" $verbname "$description" >> "$WISOTOOL_TMP"/menutext +} + +# Add a new verb +verblist_add() +{ + # Usage: verblist_add verbname "description" file1 file2 ... + verbname=$1 + description="$2" + case "$description" in + *\'*) die "bug in call to verblist_add($verbname $description): you can't use apostrophes in game descriptions, it breaks the zenity menu. Please remove." ;; + esac + shift + shift + present='' + test $verbname != 'help' && present=' [loaded]' + for file + do + file_map="$file_map \"$file\") echo $verbname;; " + if ! test -f "$WISOTOOL_CACHE/$verbname/$file" + then + present='' + fi + done + menu_add $verbname "$description$present" +} + +# Returns true if given verb is in the list +verblist_is_legal_verb() +{ + verb=$1 + awk '{print $1}' < "$WISOTOOL_TMP"/menutext > "$WISOTOOL_TMP"/verbs + if grep "^$verb$" "$WISOTOOL_TMP"/verbs > /dev/null + then + return 0 + else + return 1 + fi +} + +# Given a file, output the verb it belongs to +map_file_to_verb() +{ + eval "$file_map esac" +} + +# Output a list of the verbs for which the needed files are in the cache +list_available_verbs() +{ + # Find files in cache, output pathnames without top level directory. + # Use "while read" rather than "for", since we have some filenames with spaces. + (cd "$WISOTOOL_CACHE"; find . -type f) | sed 's,^./[^/]*/,,' | while read file + do + map_file_to_verb "$file" + done | sort -u +} + +# Move any/all *.iso or *.exe still at top level into the proper subdirectory +migrate_files() +{ + for file in "$WISOTOOL_CACHE"/*.iso "$WISOTOOL_CACHE"/*.exe + do + barefile=`basename $file` + verb=`map_file_to_verb $barefile` + if test "$verb" != "" + then + mkdir -p "$WISOTOOL_CACHE"/$verb + movee=`echo $file | sed 's,\(\.iso\)$\|\(\.exe\)$,.*,g'` + echo Moving $movee to $WISOTOOL_CACHE/$verb/ + mv $movee "$WISOTOOL_CACHE"/$verb/ + fi + done +} + +#----- Verbs ---------------------------------------------------- + +verblist_init + +#---------------------------------------------------------------- + +verblist_add 3dmark2000 "3DMark2000 (MadOnion.com, 2000) [download]" 3dmark2000_v11_100308.exe + +load_3dmark2000() { + # http://www.futuremark.com/download/3dmark2000/ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/3dmark2000_v11_100308.exe" + then + download $PACKAGE http://www.ocinside.de/download/3dmark2000_v11_100308.exe b0400d59cfd45d8c8893d3d4edc58b6285ee1502 + fi + + cd "$WISOTOOL_TMP" + mkdir $PACKAGE + cd $PACKAGE + try unzip "$WISOTOOL_CACHE/$PACKAGE"/3dmark2000_v11_100308.exe + ahk_do " + SetTitleMatchMode, 2 + run Setup.exe + WinWait Welcome + ControlClick Button1 ; Next + WinWait License + ControlClick Button2 ; Yes + ;WinWaitClose ahk_class #32770 ; License + WinWait ahk_class #32770, Destination + ControlClick Button1 ; Next + ;WinWaitClose ahk_class #32770 ; Destination + WinWait, Start + ControlClick Button1 ; Next + WinWait Registration + ControlClick Button1 ; Next + WinWait Complete + ControlClick Button1 ; Unclick View Readme + ControlClick Button4 ; Finish + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\MadOnion.com\3DMark2000" +REM possible wine cmd bug: "3dmark2000" aborts, but ".\3dmark2000" works +.\3DMark2000 +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add 3dmark2001 "3DMark2001 (MadOnion.com, 2001) [download]" 3dmark2001se_330_100308.exe + +load_3dmark2001() { + # http://www.futuremark.com/download/3dmark2001/ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE"/3dmark2001se_330_100308.exe + then + download $PACKAGE http://www.ocinside.de/download/3dmark2001se_330_100308.exe 643bacbcc1615bb4f46d3b045b1b8d78371a6b54 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run 3dmark2001se_330_100308.exe + WinWait ahk_class #32770 ; welcome + ControlClick Button2 ; Next + sleep 5000 + WinWait ahk_class #32770 ; License + ControlClick Button2 ; Next + WinWait ahk_class #32770, Destination + ControlClick Button1 ; Next + WinWait ahk_class #32770, Start + ControlClick Button1 ; Next + WinWait,, Registration + ControlClick Button2 ; Next + WinWait,, Complete + ControlClick Button1 ; Unclick View Readme + ControlClick Button4 ; Finish + " +} + +#---------------------------------------------------------------- + +verblist_add 3dmark03 "3D Mark 03 (Futuremark, 2003) [download]" 3DMark03_v360_1901.exe + +load_3dmark03() { + + # http://www.futuremark.com/benchmarks/3dmark03/download/ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/3DMark03_v360_1901.exe" + then + download $PACKAGE http://www.bulletproofnerds.com/uploadedfiles/futuremark/3DMark03_v360_1901.exe 46a439101ddbbe3c9563b5e9651cb61b46ce0619 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + warn "Don't use mouse while this installer is running. Sorry..." + # This old installer doesn't seem to be scriptable the usual way, so spray and pray. + ahk_do " + SetTitleMatchMode, 2 + run 3DMark03_v360_1901.exe + Sleep 4000 + ; Welcome + Send {Enter} + Sleep 2000 + ; Accept license + Send a + Send {Enter} + Sleep 2000 + ; Choose Destination + Send {Enter} + Sleep 2000 + ; Begin install + Send {Enter} + ; Wait for install to finish + WinWait 3DMark03, Registration + ; Purchase later + Send {Tab} + Send {Tab} + Send {Enter} + ; Uncheck readme + Send {Space} + Send {Tab} + Send {Tab} + Send {Enter} + " + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Futuremark\3DMark03" +3DMark03 +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add 3dmark05 "3D Mark 05 (Futuremark, 2005) [download]" 3DMark05_v130_1901.exe + +load_3dmark05() { + + # http://www.futuremark.com/download/3dmark05/ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/3DMark05_v130_1901.exe" + then + download $PACKAGE http://www.bulletproofnerds.com/uploadedfiles/futuremark/3DMark05_v130_1901.exe 8ad6bc2917e22edf5fc95d1fa96cc82515093fb2 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run 3DMark05_v130_1901.exe + WinWait ahk_class #32770, Welcome + Send {Enter} + WinWait, ahk_class #32770, License + ControlClick Button1 ; Accept + ControlClick Button4 ; Next + WinWait, ahk_class #32770, Destination + ControlClick Button1 ; Next + WinWait, ahk_class #32770, Install + ControlClick Button1 ; Install + WinWait, ahk_class #32770, Purchase + ControlClick Button4 ; Later + WinWait, ahk_class #32770, Complete + ControlClick Button1 ; Uncheck view readme + ControlClick Button3 ; Finish + " + ARGS="" + if workaround_wine_bug 22392 + then + warn "You must run the app with the -nosysteminfo option to avoid a crash on startup" + ARGS="-nosysteminfo" + fi + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Futuremark\3DMark05" +3DMark05 $ARGS +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add 3dmark06 "3D Mark 06 (Futuremark, 2006) [download]" 3DMark06_v120_1901.exe + +load_3dmark06() { + # http://www.futuremark.com/benchmarks/3dmark06/download/ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/3DMark06_v120_1901.exe" + then + download $PACKAGE http://www.bulletproofnerds.com/uploadedfiles/futuremark/3DMark06_v120_1901.exe 2e4a52d5b0f7caebd7b4407dfa9e258ac623b5dd + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run 3DMark06_v120_1901.exe + WinWait ahk_class #32770, Welcome + Send {Enter} + WinWait, ahk_class #32770, License + ControlClick Button1 ; Accept + ControlClick Button4 ; Next + WinWait, ahk_class #32770, Destination + ControlClick Button1 ; Next + WinWait, ahk_class #32770, Install + ControlClick Button1 ; Install + WinWait ahk_class OpenAL Installer + ControlClick Button2 ; OK + WinWait ahk_class #32770 + ControlClick Button1 ; OK + WinWait, ahk_class #32770, Purchase + ControlClick Button4 ; Later + WinWait, ahk_class #32770, Complete + ControlClick Button1 ; Uncheck view readme + ControlClick Button3 ; Finish + WinWaitClose, ahk_class #32770, Complete + " + + if workaround_wine_bug 9210 + then + warn "You may need to apply the patch in http://bugs.winehq.org/show_bug.cgi?id=9210 to fix pCaps->MaxPointSize, or the benchmark will warn that shader model 2.0 is not present, and refuse to run." + fi + + if workaround_wine_bug 22393 + then + # "Demo" button doesn't work without this + sh "$WINETRICKS" -q d3dx9_28 d3dx9_36 + fi + + ARGS="" + if workaround_wine_bug 22392 + then + warn "You must run the app with the -nosysteminfo option to avoid a crash on startup" + ARGS="-nosysteminfo" + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Futuremark\3DMark06" +3DMark06 $ARGS +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add algodoo_demo "Algodoo Demo (Algoryx, 2009) [download]" Algodoo_1_7_1-Win32.exe + +load_algodoo_demo() { + download $PACKAGE http://www.algodoo.com/download/Algodoo_1_7_1-Win32.exe caa73e73669a8787652a6bed123bbe2682152f12 + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run, Algodoo_1_7_1-Win32.exe + SetTitleMatchMode, 2 + winwait, Algodoo + send {Enter} + winwait, Algodoo, License + send {Tab}a{Space}{Enter} + winwait, Algodoo, Destination + send {Enter} + winwait, Algodoo, shortcuts + send {Enter} + winwait, Algodoo, Select Additional Tasks + send {Enter} + winwait, Algodoo, Ready to Install + send {Enter} + winwait, Algodoo, Completing + send {Space}{Tab}{Space}{Tab}{Space}{Enter} ; decline to run app or view tutorials + " + cd "$olddir" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Algodoo" +algodoo +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add msaoe_demo "Age of Empires Demo (Microsoft, 1997) [download]" MSAoE.exe + +load_msaoe_demo() { + download $PACKAGE http://download.microsoft.com/download/aoe/Trial/1.0/WIN98/EN-US/MSAoE.exe 23630a65ce4133038107f3175f8fc54a914bc2f3 + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run, MSAoE.exe + SetTitleMatchMode, 2 + winwait, Microsoft Age of Empires Trial Version + ControlClick, Button1 + winwait, End User License Agreement + ControlClick, Button1 + winwait, Microsoft Age of Empires Trial Version, Setup will install + ControlClick Button2 + winwait, Microsoft Age of Empires Trial Version, Setup has successfully + ControlClick Button1 + " + cd "$olddir" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Microsoft Games\Age of Empires Trial" +empires +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add aoe3_demo "Age of Empires III (Microsoft, 2005) [download]" aoe3trial.exe + +load_aoe3_demo() { + + download $PACKAGE "http://download.microsoft.com/download/a/5/2/a525997e-8423-435b-b694-08118d235064/aoe3trial.exe" \ + 2b0a123243092d79f910db5691d99d469f7c17c3 + + if workaround_wine_bug 24897 + then + try sh "$WINETRICKS" -q msxml4 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + + ahk_do " + SetTitleMatchMode, 2 + run aoe3trial.exe + WinWait,Empires,Welcome + Sleep 500 + ControlClick Button1 ; Next + WinWait,Empires,Please + Sleep 500 + ControlClick Button4 ; Next + WinWait,Empires,Complete + Sleep 500 + ControlClick Button4 ; Finish + WinWaitClose + " + + if workaround_wine_bug 24911 + then + # On some systems, only quartz is needed? + # appdb says that l3codecx is also needed? + try sh "$WINETRICKS" -q devenum dmsynth quartz + fi + + if workaround_wine_bug 24912 + then + # kill off lingering installer + ahk_do " + SetTitleMatchMode, 2 + WinKill,Empires + " + # or should we just do wineserver -k, like fable_tlc does? + PID=`ps augxw | grep IDriver | grep -v grep | awk '{print $2}'` + kill $PID + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Microsoft Games\\Age of Empires III Trial" +age3.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add anno1404_demo "Anno 1404 Demo (Ubisoft, 2009) [download]" DawnofDiscovery_Demo_US_2009_06_15_18_22.zip + +load_anno1404_demo() { + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/DawnofDiscovery_Demo_US_2009_06_15_18_22.zip" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please download demo from http://www.filefront.com/thankyou.php?f=13908918 and place it in $WISOTOOL_CACHE/$PACKAGE" + fi + + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_TMP/$PACKAGE" + try unzip "$WISOTOOL_CACHE/$PACKAGE"/DawnofDiscovery_Demo_US_2009_06_15_18_22.zip + try cd "Anno1404_Demo_US_2009_06_15_18_22" + ahk_do " + run, setup.exe + SetTitleMatchMode, 2 + winwait, , Welcome to the InstallShield Wizard for Dawn of Discovery (Demo) + ControlClick, Button3 ; Next + winwait, , Licence Agreement + ControlClick, Button2 ; Accept + ControlClick, Button6 ; Next + winwait, , Setup Type + ControlClick Button4 ; Next + winwait, , Select Options + ControlClick Button6 ; Next + winwait, Question + ControlClick Button2 ; No + winwait, , InstallShield Wizard completed + Controlclick Button4 ; Finish + " + + if workaround_wine_bug 22762 + then + if test -f "$DRIVE_C/users/$USERNAME/Application Data/Ubisoft/Anno1404Demo/Config/Engine.ini" + then + cd "$DRIVE_C/users/$USERNAME/Application Data/Ubisoft/Anno1404Demo/Config/" + mv Engine.ini oldEngine.ini + sed '/LanguageTAG/s,eng,usa,; + /DirectXVersion/s,0,9,' oldEngine.ini > Engine.ini + else + mkdir -p "$DRIVE_C/users/$USERNAME/Application Data/Ubisoft/Anno1404Demo/Config/" + cat > "$DRIVE_C/users/$USERNAME/Application Data/Ubisoft/Anno1404Demo/Config/Engine.ini" <<__EOF__ + +9 +usa + +__EOF__ + fi + fi + + cd "$olddir" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Ubisoft\\Related Designs\\Dawn of Discovery (Demo)" +Anno4.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add assassinscreed "Assassins Creed (Ubisoft, 2008)" a62112860423b32bf3ea77df6f5fe0b60c772de2.iso + +load_assassinscreed() { + if workaround_wine_bug 22392 + then + # Don't hang at a dialog box when Detection crashes + sh "$WINETRICKS" nocrashdialog + fi + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/a62112860423b32bf3ea77df6f5fe0b60c772de2.iso + ahk_do " + run ${ISO_MOUNT_LETTER}:setup.exe + SetTitleMatchMode, 2 + winwait, InstallShield Wizard, Language + ; wine bug? - clicking on Next does nothing until you move the mouse over the installer window + ;ControlClick Next, InstallShield Wizard + Send {Enter} + winwait, InstallShield Wizard, Welcome + ControlClick Next, InstallShield Wizard + winwait, InstallShield Wizard, License + sleep 500 + send a{Enter} + winwait, InstallShield Wizard, begin + sleep 1000 + ControlClick &Install, InstallShield Wizard + winwait, Product Registration, register + ControlClick Never, Product Registration + ControlClick Button1, Product Registration + winwait, InstallShield Wizard, inish + send {Enter} + " + iso_umount + + # Should run AssassinsCreed_Launcher.exe, but that fails on Wine + # Should give option to run AssassinsCreed_Dx10.exe, but that fails on Wine + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Ubisoft\Assassin's Creed" +AssassinsCreed_Dx9.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add avatar_demo "James Camerons Avatar The Game Demo (Ubisoft, 2009) [download]" Avatar_The_Game_Demo.exe + +load_avatar_demo() +{ + download $PACKAGE http://gamedaily.newaol.com/pub/Avatar_The_Game_Demo.exe 8d8e4c82312962706bd2620406d592db4f0fa9c1 + + if workaround_wine_bug 23094 + then + try sh "$WINETRICKS" -q vcrun2005 + fi + + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_TMP/$PACKAGE" + try_unrar x "$WISOTOOL_CACHE/$PACKAGE/Avatar_The_Game_Demo.exe" + ahk_do " + SetTitleMatchMode, 2 + run, setup.exe + winwait, Language + controlclick, Button1 + winwait, AVATAR, Welcome + controlclick, Button1 + winwait, AVATAR, License + controlclick, Button5 + controlclick, Button2 + winwait, AVATAR, setup type + controlclick, Button2 + ; Strange CRC error workaround. Will check this out. Stay tuned. + loop + { + ifwinexist, CRC Error + { + winactivate, CRC Error + controlclick, Button3, CRC Error ; ignore + } + ifwinexist, AVATAR, Complete + { + controlclick, Button4 + break + } + sleep 1000 + } + " + cd "$olddir" + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Ubisoft\Demo\James Cameron's AVATAR - THE GAME (Demo)\bin" +"AvatarDemo.exe" +__EOF__ +} + +#---------------------------------------------------------------- + +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=408 +verblist_add baldursgate2 "Baldurs Gate 2 - Shadows of Amn (Bioware, 2000)" \ + cc9359dce1a7be6c64bb6f8e6dea6d14d4a5f716.iso \ + 429872605dad10433c3c581a1c11eba4d0988c46.iso \ + a6d18fcd7d16ddafbda7aa028b117566b1e09d2a.iso \ + 94ed41768949c89a1a6479305f00a9cee1d2dcd5.iso + +load_baldursgate2() { + # Possible wine bug: cd is still in use, even if wine eject is used. Workaround it by + # copying all the cd's to a directory, and running the installer from there. + # You still need the first CD mounted at the end, however... + if test ! -d "$WISOTOOL_TMP"/$PACKAGE/tempcd + then + try mkdir -p "$WISOTOOL_TMP"/$PACKAGE/tempcd + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/cc9359dce1a7be6c64bb6f8e6dea6d14d4a5f716.iso + sleep 5 + try cp -r "$ISO_MOUNT_ROOT"/* "$WISOTOOL_TMP"/$PACKAGE/tempcd + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/429872605dad10433c3c581a1c11eba4d0988c46.iso + sleep 5 + try cp -r "$ISO_MOUNT_ROOT"/* "$WISOTOOL_TMP"/$PACKAGE/tempcd + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/a6d18fcd7d16ddafbda7aa028b117566b1e09d2a.iso + sleep 5 + try cp -r "$ISO_MOUNT_ROOT"/* "$WISOTOOL_TMP"/$PACKAGE/tempcd + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/94ed41768949c89a1a6479305f00a9cee1d2dcd5.iso + sleep 5 + try cp -r "$ISO_MOUNT_ROOT"/* "$WISOTOOL_TMP"/$PACKAGE/tempcd + fi + + # Will perform a full install, so no cd's needed + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/cc9359dce1a7be6c64bb6f8e6dea6d14d4a5f716.iso + + ahk_do " + SetTitleMatchMode, 2 + run "$WISOTOOL_TMP"/$PACKAGE/tempcd/setup.exe + winwait, Baldur's Gate, Welcome to the Baldur's Gate + sleep 1000 + ControlClick, Button1, Baldur's Gate, Welcome to the Baldur's Gate + winwait, Baldur's Gate, Please read the following License Agreement + sleep 1000 + ControlClick, Button2, Baldur's Gate, Please read the following License Agreement + winwait, Baldur's Gate, Setup will install Baldur's Gate + sleep 1000 + ControlClick, Button1, Baldur's Gate, Setup will install Baldur's Gate + winwait, Baldur's Gate, Click the type of Setup you prefer + sleep 1000 + ControlClick, Listbox1, Baldur's Gate, Click the type of Setup you prefer + send {F} + ControlClick, Button2, Baldur's Gate, Click the type of Setup you prefer + winwait, Baldur's Gate, Setup will add program icons + sleep 1000 + ControlClick, Button2, Baldur's Gate, Setup will add program icons + winwait, Setup Needs The Next Disk + sleep 1000 + Send {Home} + Send {Shift down} + Send {End} + Send I:{Enter} + winwait, Information + sleep 1000 + ControlClick, Button1, Information + Sleep 5000 + process, wait, Promo.exe, 5 + promopid = %ErrorLevel% + winclose, ahk_pid %promopid% + winwait, Baldur's Gate, Setup has finished installing + sleep 1000 + ControlClick, Button4, Baldur's Gate, Setup has finished installing + " + try chmod +w -R "$WISOTOOL_TMP"/$PACKAGE/tempcd + try rm -rf "$WISOTOOL_TMP"/$PACKAGE/tempcd + + # Install latest patch + download baldursgate2 http://downloads.bioware.com/baldursgate2/Baldur%27sGateII-ShadowsofAmnPatchENGLISH.exe 4706c0dc1e282bae14946c87a38e2781f89ebdc4 + # AHK doesn't like its name... + try cp -f "$WISOTOOL_CACHE/baldursgate2/Baldur%27sGateII-ShadowsofAmnPatchENGLISH.exe" "$WISOTOOL_TMP/baldurs_gate_2_patch.exe" + + cd "$WISOTOOL_TMP" + ahk_do " + SetTitleMatchMode, 2 + run, baldurs_gate_2_patch.exe + winwait InstallShield Wizard, Welcome to the InstallShield Wizard + sleep 1000 + ControlClick Button1, InstallShield Wizard, Welcome to the InstallShield Wizard + winwait InstallShield Wizard, InstallShield Wizard Complete + sleep 1000 + ControlClick Button4, InstallShield Wizard, InstallShield Wizard Complete + exit" + cd - + try rm "$WISOTOOL_TMP/baldurs_gate_2_patch.exe" + + if workaround_wine_bug 22482 + then + sh "$WINETRICKS" -q ddr=opengl + warn "Enabling 3d acceleration in BGConfig.exe will improve performance." + fi + + if workaround_wine_bug 22493 + then + warn "Enabling 3d acceleration in BGConfig.exe will improve performance." + fi + + if test ! "$WINE" = "" + then + warn "Until wine bug 22511 is fixed, you should use a virtual desktop, or baldur's gate will only take up part of your screen in full screen mode." + fi +} + +#---------------------------------------------------------------- + +verblist_add batman_arkham_asylum_demo "Batman: Arkham Asylum Demo (Warner/Eidos/Enix 2009) (size: 2.0 GB)[download]" BMDemo_installer.exe + +load_batman_arkham_asylum_demo() { + download $PACKAGE http://cdn2.netops.eidosinteractive.com/batmanarkhamasylum/BMDemo_installer.exe 7582c87cc3983016c7fbf2104999df087ecce7a6 + + cd "$WISOTOOL_CACHE/$PACKAGE" + + ahk_do " + run BMDemo_installer.exe + SetTitleMatchMode, 2 + WinWait, Batman: Arkham Asylum Demo, Select Language + WinActivate + Send {Enter} + WinWait, Batman: Arkham Asylum Demo, Install Demo + WinActivate + Send {Tab} + Send {Enter} + WinWait, Batman: Arkham Asylum Demo, Welcome + WinActivate + Send {Enter} + WinWait, Batman: Arkham Asylum Demo, License Agreement + WinActivate + Send +!a + Send {Enter} + Loop { + Sleep (1000) + IfWinExist, Batman: Arkham Asylum Demo, System Check Results + { + Sleep (300) + WinActivate + Send {Enter} + break + } + IfWinExist, Batman: Arkham Asylum Demo, Your computer fails to meet + { + Sleep (300) + Send +!o + } + IfWinExist, Batman: Arkham Asylum Demo, Setup has detected + { + Sleep (300) + Send +!o ; I'm not sure about this keystroke sequence + } + } + WinWait, Batman: Arkham Asylum Demo, Setup Type + WinActivate + Send {Enter} + + Loop + { + IfWinExist, NVIDIA, license + { + Sleep (500) + WinActivate + Send +!a ; license agreement + Send +!n ; next + } + IfWinExist, NVIDIA, finish + { + WinActivate + Send +!f ; finish + } + IfWinExist, DXSETUP.exe - Error + { + Send {Enter} ; DirectX9 Redistributable trying to install managed components, failing, but that's ok + } + IfWinExist, Fatal Error + { + Send {Enter} ; PhysX installer exploded because wsh not installed, or dotnet30 not installed, probably ok + } + Process, Exist, BmLauncher.exe ; BmLauncher automatically starts after installation finished. + retVal = %ErrorLevel% + if retVal != 0 + { + Process, Close, BmLauncher.exe ; kill BmLauncher + break + } + Sleep (2000) + } + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Eidos\\Batman Arkham Asylum Demo\\Binaries" +ShippingPC-BmGame.exe +__EOF__ + + if workaround_wine_bug 6971 + then + warn "The mouse is still broken in wine, but winetricks mwo=force will make the game much more playable, try it." + fi + if workaround_wine_bug 20651 + then + download $PACKAGE http://www.glio.net/UserEngine.ini + download $PACKAGE http://www.glio.net/UserInput.ini + download $PACKAGE http://www.glio.net/UserGame.ini + configdir="$DRIVE_C/users/$USERNAME/My Documents/Eidos/Batman Arkham Asylum Demo/BmGame/Config" + mkdir -p "$configdir" + cp "$WISOTOOL_CACHE/$PACKAGE"/*.ini "$configdir" + fi + if workaround_wine_bug 24471 + then + sh "$WINETRICKS" mmdevapi=disabled + fi +} + +#-------------------------------------------------------------------------------------- + +# Sadly, the SHA1SUM varies! +# FIXME: change load function to call it by its volume label instead; right now you have to rename it manually. + +verblist_add bfbc2 "Battlefield Bad Company 2 (EA, 2010)" \ + BFBC2.iso + +load_bfbc2() { + exedir="$programfilesdir_x86_unix/Electronic Arts/Battlefield Bad Company 2" + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/BFBC2.iso + BFBC2_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/BFBC2.txt | tr -d -` + ahk_do " + SetTitleMatchMode, 2 + run ${ISO_MOUNT_LETTER}:setup.exe + winwait, Bad Company, English + ControlClick, Next, Bad Company + winwait, Bad Company, Registration Code + send {RAW}$BFBC2_KEY + ControlClick, Next, Bad Company, Registration Code + winwait, Bad Company, Setup Wizard will install + ControlClick, Button1, Bad Company, Setup Wizard + winwait, Bad Company, License Agreement + ControlClick, Button1, Bad Company, License Agreement + ControlClick, Button3, Bad Company, License Agreement + winwait, Bad Company, End-User License Agreement + ControlClick, Button1, Bad Company, License Agreement + ControlClick, Button3, Bad Company, License Agreement + winwait, Bad Company, Destination Folder + ControlClick, Button1, Bad Company, Destination Folder + winwait, Bad Company, Ready to install + ControlClick, Install, Bad Company, Ready to install + winwait, Authenticate Battlefield + ControlClick, Disc authentication, Authenticate Battlefield + ControlClick, Button4, Authenticate Battlefield + winwait, Bad Company, PunkBuster + ControlClick, Button4, Bad Company, PunkBuster + ControlClick, Finish, Bad Company + " + iso_umount + + warn "Patching to latest version..." + cd "$exedir" + ahk_do " + SetTitleMatchMode, 2 + run, BFBC2Updater.exe + winwait, Updater, have to update to + ControlClick, Yes, Updater, have to update + winwait, Updater, successfully updated + ControlClick,No, Updater, successfully updated + " + + if workaround_wine_bug 22762 + then + cd "$DRIVE_C/users/$USERNAME/My Documents" + if test -f BFBC2/settings.ini + then + mv BFBC2/settings.ini BFBC2/oldsettings.ini + sed 's,DxVersion=auto,DxVersion=9,; + s,Fullscreen=true,Fullscreen=false,' BFBC2/oldsettings.ini > BFBC2/settings.ini + else + mkdir -p BFBC2 + echo "[Graphics]" > BFBC2/settings.ini + echo "DxVersion=9" >> BFBC2/settings.ini + fi + fi + cd "$olddir" + + if workaround_wine_bug 22961 + then + warn "If you get a Securom 'No CD/DVD error', check your mount settings. See http://bugs.winehq.org/show_bug.cgi?id=22961 for more info." + fi + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Electronic Arts\\Battlefield Bad Company 2" +BFBC2Game.exe +__EOF__ +} + +#---------------------------------------------------------------- + +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=9320 +# Fails to install with an iso, need to use an mdf/mds from Alcohol 120% on Windows +# FIXME: mds/mdf files have different sha1sum's, and depending on the rip settings, the mds might as well? +# Sha1sum's: +# plain iso, from dd: deaf00ebee6e73aecf38f704c3f516008a68d888 +# mds: 391042ea19b4eace5d532dbade10931ebbc4def6 +# mdf: deaf00ebee6e73aecf38f704c3f516008a68d888 +verblist_add bioshock "Bioshock (2K Games, 2007)" \ + 391042ea19b4eace5d532dbade10931ebbc4def6.mds \ + deaf00ebee6e73aecf38f704c3f516008a68d888.iso + +load_bioshock() { + # Bioshock needs MSVCP80.dll to run, which Wine doesn't have yet. + if workaround_wine_bug 22501 + then + sh "$WINETRICKS" -q vcrun2005 + fi + + # If .iso is present, use it rather than the .mds (.mds is still flaky, maybe we should just get rid of mds support) + # FIXME: 'wisotool ls' only shows apps as loaded if all files present, so we need a way to + # tell it either iso or mds is ok. + if test -f "$WISOTOOL_CACHE"/$PACKAGE/deaf00ebee6e73aecf38f704c3f516008a68d888.iso + then + load_bioshock_iso + return 0 + fi + + # Will perform a full install, so no cd's needed + mds_mount "$WISOTOOL_CACHE/$PACKAGE/391042ea19b4eace5d532dbade10931ebbc4def6.mds" + + # Setup cdemu for Bioshock (dpm on, tr off): + # FIXME: I'm assuming different programs may want different emulation settings. If not, move up to mds_mount(). + cdemu dpm-emulation 0 1 + cdemu tr-emulation 0 0 + + # Don't trim the hyphen's "-", the installer won't proceed without them. + BIOSHOCK_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/391042ea19b4eace5d532dbade10931ebbc4def6.txt` + + ahk_do " + SetTitleMatchMode, 2 + run ${ISO_MOUNT_LETTER}:setup.exe + winwait, BioShock - InstallShield Wizard, Choose Setup Language + sleep 2000 + ControlClick, Button3, BioShock - InstallShield Wizard, Choose Setup Language + ControlClick, Button3, BioShock - InstallShield Wizard, Choose Setup Language ; Installer seems fidgety + winwait, BioShock - InstallShield Wizard, Welcome to the InstallShield Wizard for BioShock + sleep 1000 + ControlClick, Button1, BioShock - InstallShield Wizard, Welcome to the InstallShield Wizard for BioShock + winwait, BioShock - InstallShield Wizard, Please read the following license agreement carefully + sleep 1000 + ControlClick, Button5, BioShock - InstallShield Wizard, Please read the following license agreement carefully + sleep 1000 + ControlClick, Button2, BioShock - InstallShield Wizard, Please read the following license agreement carefully + winwait, BioShock - InstallShield Wizard, Select the setup type to install + sleep 1000 + ControlClick, Button2, BioShock - InstallShield Wizard, Select the setup type to install + winwait, BioShock - InstallShield Wizard, Click Install to begin the installation + ControlClick, Button1, BioShock - InstallShield Wizard, Click Install to begin the installation + Loop + { + ; Detect if Securom likes the mounted ISO or not. If so, continue the install. If not, exit since the install will fail. + SetTitleMatchMode, Slow + IfWinExist, BioShock - InstallShield Wizard, The InstallShield Wizard has successfully installed BioShock + break + IfWinExist, Bioshock, Please insert the original disc instead of a backup (1000) + { + exit 1 + } + sleep 10000 + } + sleep 1000 + ControlClick, Button6, BioShock - InstallShield Wizard, The InstallShield Wizard has successfully installed BioShock + sleep 1000 + ControlClick, Button4, BioShock - InstallShield Wizard, The InstallShield Wizard has successfully installed BioShock + winwait, Welcome, &Next + Sleep 1000 + ControlClick, Button2, Welcome, &Next + winwait, Enter your serial number, &Activate + Sleep 1000 + ControlClick, Edit1, Enter your serial number, &Activate + send {Raw}$BIOSHOCK_KEY + Sleep 1000 + ControlClick, Button1, Enter your serial number, &Activate + winwait, Activation Successful + Sleep 1000 + Controlclick, Button3, Activation Successful + " || ( $WINESERVER -k ; warn "Bioshock failed to install properly, likely the Securom check failed" ) + + # According to the AppDB, 1.1 may have problems with Wine. For now, don't run it. + # FIXME: Test and if there's a Wine bug, file one/put this in an if workaround_wine_bug(). + # + #download $PACKAGE http://downloads.2kgames.com/bioshock/patch/Bioshock_Version_11_Patch_Worldwide_Retail.zip + #cd $WISOTOOL_TMP + #unzip "$WISOTOOL_CACHE/$PACKAGE/Bioshock_Version_11_Patch_Worldwide_Retail.zip" + #ahk_do " + # run Bioshock Version 1.1 Patch Worldwide Retail.exe + # winwait, BioShock 1.1 Patch, This patch is to be applied ONLY to the Uncensored Retail Version of BioShock + # sleep 1000 + # ControlClick, Button1, BioShock 1.1 Patch, This patch is to be applied ONLY to the Uncensored Retail Version of BioShock + # winwait, Location Confirmation, Is located at + # sleep 1000 + # ControlClick, Button1, Location Confirmation, Is located at + # winwait, License Agreement, Please read the following license agreement carefully. + # sleep 1000 + # ControlClick, Button1, License Agreement, Please read the following license agreement carefully. + # winwait, BioShock Patched Successfully!, BioShock patched to version 1.1 successfully! + # sleep 1000 + # ControlClick, Button1, BioShock Patched Successfully!, BioShock patched to version 1.1 successfully! + # " + if workaround_wine_bug 6971 + then + sh "$WINETRICKS" -q mwo=force + fi + + if workaround_wine_bug 23884 + then + sh "$WINETRICKS" -q d3dx9_36 + fi + + mds_umount +} + +# sub-verb of bioshock which is used if the user loads from a .iso instead of .mds +# Doesn't quite work yet unless you have the cd mounted :-( +load_bioshock_iso() +{ + + BIOSHOCK_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/deaf00ebee6e73aecf38f704c3f516008a68d888.txt` + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/deaf00ebee6e73aecf38f704c3f516008a68d888.iso + + ahk_do " + SetTitleMatchMode, 2 + run ${ISO_MOUNT_LETTER}:setup.exe + winwait, BioShock - InstallShield Wizard, Choose Setup Language + sleep 2000 + ControlClick, Button3, BioShock - InstallShield Wizard, Choose Setup Language + ControlClick, Button3, BioShock - InstallShield Wizard, Choose Setup Language ; Installer seems fidgety + winwait, BioShock - InstallShield Wizard, Welcome to the InstallShield Wizard for BioShock + sleep 1000 + ControlClick, Button1, BioShock - InstallShield Wizard, Welcome to the InstallShield Wizard for BioShock + winwait, BioShock - InstallShield Wizard, Please read the following license agreement carefully + sleep 1000 + ControlClick, Button5, BioShock - InstallShield Wizard, Please read the following license agreement carefully + sleep 1000 + ControlClick, Button2, BioShock - InstallShield Wizard, Please read the following license agreement carefully + winwait, BioShock - InstallShield Wizard, Select the setup type to install + sleep 1000 + ControlClick, Button2, BioShock - InstallShield Wizard, Select the setup type to install + winwait, BioShock - InstallShield Wizard, Click Install to begin the installation + ControlClick, Button1, BioShock - InstallShield Wizard, Click Install to begin the installation + Loop + { + ; Detect if Securom likes the mounted ISO or not. If so, continue the install. If not, exit since the install will fail. + SetTitleMatchMode, Slow + IfWinExist, BioShock, The InstallShield Wizard has successfully installed BioShock + break + IfWinExist, Bioshock, Please insert the original + { + exit 1 + } + sleep 10000 + } + sleep 1000 + ControlClick, Button6, BioShock - InstallShield Wizard, The InstallShield Wizard has successfully installed BioShock + sleep 1000 + ControlClick, Button4, BioShock - InstallShield Wizard, The InstallShield Wizard has successfully installed BioShock + winwait, Welcome, &Next + Sleep 1000 + ControlClick, Button2, Welcome, &Next + winwait, Enter your serial number, &Activate + Sleep 1000 + ControlClick, Edit1, Enter your serial number, &Activate + send {Raw}$BIOSHOCK_KEY + Sleep 1000 + ControlClick, Button1, Enter your serial number, &Activate + winwait, Activation Successful + Sleep 1000 + Controlclick, Button3, Activation Successful + " || ( $WINESERVER -k ; warn "Bioshock failed to install properly, likely the Securom check failed" ) + + iso_umount + + if workaround_wine_bug 6971 + then + sh "$WINETRICKS" -q mwo=force + fi + + if workaround_wine_bug 23884 + then + sh "$WINETRICKS" -q d3dx9_36 + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\2K Games\\BioShock\\Builds\\Release" +bioshock.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add bioshock_demo "Bioshock Demo (2K Games, 2007)" \ + nzd_BioShockPC.zip + +load_bioshock_demo() { + download $PACKAGE http://us.download.nvidia.com/downloads/nZone/demos/nzd_BioShockPC.zip 7a19186602cec5210e4505b58965e8c04945b3cf + cd "$DRIVE_C" + rm -rf bioshock-temp + mkdir bioshock-temp + cd bioshock-temp + try unzip -q "$WISOTOOL_CACHE/$PACKAGE"/nzd_BioShockPC.zip + try cd "BioShock PC Demo" + ahk_do " + SetTitleMatchMode, 2 + run setup.exe + winwait, BioShock Demo - InstallShield Wizard, Choose Setup Language + sleep 2000 + ControlClick, Button3 + ControlClick, Button3 + winwait, BioShock Demo - InstallShield Wizard, Welcome + sleep 1000 + ControlClick, Button1 + winwait, BioShock Demo - InstallShield Wizard, Please read + sleep 1000 + ControlClick, Button5 + sleep 1000 + ControlClick, Button2 + winwait, BioShock Demo - InstallShield Wizard, Select the setup type + sleep 1000 + ControlClick, Button2 + winwait, BioShock Demo - InstallShield Wizard, Click Install to begin + ControlClick, Button1 + winwait, BioShock Demo - InstallShield Wizard, The InstallShield Wizard has successfully installed BioShock + sleep 1000 + ControlClick, Button2 ; don't launch + ControlClick, Button6 ; don't show readme + send {Enter} ; finish + " + cd .. + rm -rf bioshock-temp + cd "$olddir" +} + +#---------------------------------------------------------------- + +verblist_add bladekitten_demo "Blade Kitten Demo (Krome Studios Pty Ltd., 2010) [download]" BladeKittenDemoInstall.exe + +load_bladekitten_demo() { + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/BladeKittenDemoInstall.exe" + then + download $PACKAGE "http://downloads.megagames.com/download.php?file=BladeKittenDemoInstall.exe" 8c41706ff3ad029317e5eb6853c34732498d97c7 + cd "$WISOTOOL_CACHE/$PACKAGE" + mv 'download.php?file=BladeKittenDemoInstall.exe' "BladeKittenDemoInstall.exe" + fi + + mkdir "$WISOTOOL_TMP/BladeKittenDemo" + cp "$WISOTOOL_CACHE/$PACKAGE"/BladeKittenDemoInstall.exe "$WISOTOOL_TMP"/BladeKittenDemo + cd "$WISOTOOL_TMP"/BladeKittenDemo + ahk_do " + SetTitleMatchMode, 3 + run BladeKittenDemoInstall.exe + WinWait "Blade Kitten Demo Install Package" + ControlClick Button2 ; Install + WinWait "Blade Kitten Demo", Next + ControlClick Button1 + WinWait "Blade Kitten Demo", Cost + ControlClick Button1 ; Next + WinWait "Blade Kitten Demo", ready + ControlClick Button1 ; Next + ; Note - If you are running an older version of wine the installer may appear to hang for 6-10 minutes at this point + WinWait "Blade Kitten Demo", Complete + ControlClick Button1 ; Close + " + mv "$WISOTOOL_TMP/BladeKittenDemo" "$DRIVE_C/Program Files" + + if workaround_wine_bug 24681 + then + set_app_winver BladeKitten_Demo.exe win2k + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Krome Studios\\Blade Kitten Demo" +BladeKitten_Demo.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add blur "Blur (Activision, 2010)" \ + 30fdaf3aad82be846f26b7908c703598d5c3443d.iso + +load_blur() { + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/30fdaf3aad82be846f26b7908c703598d5c3443d.iso + + ahk_do " + Run, ${ISO_MOUNT_LETTER}:Setup.exe + SetTitleMatchMode, 2 + winwait, Activision, Select the language + sleep 1000 + send {Enter} + winwait, Blur, install Blur + sleep 1000 + send {Enter} + winwait, Blur, License + sleep 1000 + ControlClick Button5 + send {Enter} + winwait, Blur, Minimum System + sleep 1000 + send {Enter} + winwait, Blur, Setup Type + sleep 1000 + send {Enter} + winwaitclose, Blur + ; the installer still has a bit of stuff to do after that window closes + sleep 10000 + " + iso_umount + + # FIXME: The installer didn't install physx (does it on windows? If so, file wine bug). + # The game runs without the physx trick but frame rate improves with physx. + try sh "$WINETRICKS" -q physx + + if workaround_wine_bug 24509 + then + warn "Game will crash on first run (which is in full screen). On second run, it will go to windowed mode. Workaround this by defaulting to a 1024x768 window." + try mkdir -p "$appdata_unix/bizarre creations/blur" + cat > "$appdata_unix/bizarre creations/blur/settings.xml" <<__EOF__ + + +__EOF__ + + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Activision\Blur(TM)" +"Blur.exe" +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add braid_demo "Braid Demo (Number None, 2009) [download]" braid_windows_r3.exe + +load_braid_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/braid_windows_r3.exe" + then + download $PACKAGE http://download.instantaction.com/games/pgh_legacy/braid_windows_r3.exe 7ea08ddbf5f2fb2f38057d930389b5af7d737e2c + fi + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, braid_windows_r3.exe + winwait, Braid, install + controlclick, TButton1 + winwait, Braid, Destination + controlclick, TButton3 + winwait, Braid, Ready to Install + controlclick, TButton3 + winwait, Setup, Finishing installation + sleep 5000 + ; Workaround_winebug 21761 + ifwinactive, Setup, ShellExecuteEx failed + { + controlclick, Button1 + } + winwait, Braid, finished + controlclick, TButton3 + " + cd "$olddir" + + if workaround_wine_bug 22161 + then + try sh "$WINETRICKS" -q d3dx9_36 + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Braid" +braid.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add braid "Braid (Number None, 2009) [download]" braid_windows_r3.exe + +load_braid() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/braid-key.txt" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please enter your registration key into $WISOTOOL_CACHE/$PACKAGE/braid-key.txt" + fi + BRAID_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/braid-key.txt` + + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/braid_windows_r3.exe" + then + download $PACKAGE http://download.instantaction.com/games/pgh_legacy/braid_windows_r3.exe 7ea08ddbf5f2fb2f38057d930389b5af7d737e2c + fi + cd "$WISOTOOL_CACHE/$PACKAGE" + mv downloads.php* braid_windows_r3.exe 2>/dev/null + ahk_do " + SetTitleMatchMode, 2 + run, braid_windows_r3.exe + winwait, Braid, install + controlclick, TButton1 + winwait, Braid, Destination + controlclick, TButton3 + winwait, Braid, Ready to Install + controlclick, TButton3 + winwait, Setup, Finishing installation + sleep 5000 + ; Workaround_winebug 21761 + ifwinactive, Setup, ShellExecuteEx failed + { + controlclick, Button1 + } + winwait, Braid, finished + controlclick, TButton3 + " + + if workaround_wine_bug 22161 + then + try sh "$WINETRICKS" -q d3dx9_36 + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Braid\" +"braid.exe" +__EOF__ + + # Enter the key + cd "$DRIVE_C" + ahk_do " + SetTitleMatchMode, 2 + run, run-$PACKAGE.bat + winwait, Braid, Enter Registration + controlclick, Button4 + winwait, Enter Registration + send {RAW}$BRAID_KEY + controlclick, Button1 + sleep 5000 + ; FIXME: Desktop resolution isn't reset after exit + process, close, braid.exe + " + cd "$olddir" +} + +#---------------------------------------------------------------- + +verblist_add cod_demo "Call of Duty (Activision, 2003) [download]" Call_Of_Duty_Demo.exe + +load_cod_demo() { + download $PACKAGE "http://gamedaily.newaol.com/pub/Call_Of_Duty_Demo.exe" 1c480a1e64a80f7f97fd0acd9582fe190c64ad8e + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run Call_Of_Duty_Demo.exe + WinWait,Call of Duty Single Player Demo,Welcome + ControlClick Button1 ; I Agree + WinWait,Call of Duty Single Player Demo,License + ControlClick Button4 ; Next + WinWait,Call of Duty Single Player Demo,System + ControlClick Button4 ; Next + WinWait,Call of Duty Single Player Demo,Location + ControlClick Button1 ; Next + WinWait,Call of Duty Single Player Demo,Select + ControlClick Button1 ; Next + WinWait,Call of Duty Single Player Demo,Start + ControlClick Button1 ; Install + WinWait,Create Shortcut + ControlClick Button1 ; Yes + WinWait,Call of Duty Single Player Demo, Complete + ControlClick Button1 ; Finish + " + + if workaround_wine_bug 21558 + then + # Work around a buffer overflow - not really Wine's fault + setvar="@if not defined %__GL_ExtensionStringVersion% then echo \"If you get a buffer overflow error, set __GL_ExtensionStringVersion=17700 before starting Wine. See http://bugs.winehq.org/show_bug.cgi?id=21558.\"" + else + setvar= + fi + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +$setvar +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Call of Duty Single Player Demo" +CoDSP.exe +__EOF__ + +} + +#---------------------------------------------------------------- + + +verblist_add codmw2 "Call of Duty Modern Warfare 2 (Activision, 2009) [broken]" \ + 6f572261ed954733806daf5b42edf92b3127cd14.iso \ + 3c6e63504d41df4bdb2d4c57f4c5fc7b810d7df8.iso + +load_codmw2() +{ + warn "This verb isn't quite ready for prime time." + test -f "$programfilesdir_x86_unix"/Steam/Steam.exe || try sh $WINETRICKS -q steam + + # Get user's key + CODMW2_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/6f572261ed954733806daf5b42edf92b3127cd14.txt | tr -d -` + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/6f572261ed954733806daf5b42edf92b3127cd14.iso + cd "$programfilesdir_x86_unix"/Steam + ahk_do " + SetTitleMatchMode, 2 + Run, Steam.exe -login $STEAMUSER $STEAMPW -install ${ISO_MOUNT_LETTER}: + + ; Uncomment these lines if you haven't activated this game via steam on this account before. + ;winwait, Activation + ;MouseMove, 30, 400 + ;Click + ;Sleep 300 + ;send {Raw}$CODMW2_KEY + ;MouseMove, 306, 566 + ;Click + ;winwait, Activation + ;sleep 10000 + ;MouseMove, 310, 565 + ;Click + + winwait, Install + sendEvent {Enter} + ; wait for [create start menu and install] question + sleep 5000 + sendEvent {Enter} + winwait, Insert + " + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/3c6e63504d41df4bdb2d4c57f4c5fc7b810d7df8.iso + ahk_do " + SetTitleMatchMode, 2 + Send {Enter} + ; Need to wait for install to finish. This isn't the way to do it. Ideally we could watch some log file. + ; The last file created seems to be + ; Program Files/Steam/steamapps/call of duty modern warfare 2 content.ncf + ; so wait for that and then another 20 seconds, say. + winwait, ahk_class USurface_, Install + ; Now that install has finished, say [don't start app] and [finish]. + Send {Space} + Send {Enter} + ; Now wait for the main steam interface to pop up, and close it + winwait, ahk_class USurface_, Steam + WinClose + + ; If you choose to start the game above, you could wait for it to be ready to play here. + ;winwait, ahk_class USurface_8390, Ready + ;Send {Tab} # select Close + ;Send {Enter} + ;winwait, Steam Login + ;WinClose + " + iso_umount + +} + +#---------------------------------------------------------------- + +verblist_add cod4mw_demo "Call of Duty 4 Modern Warfare (Activision, 2007) [download]" CoD4MWDemoSetup_v2.exe + +load_cod4mw_demo() { + download $PACKAGE "http://gamedaily.newaol.com/pub/CoD4MWDemoSetup_v2.exe" 690a5f789a44437ed10784acfdd6418ca4a21886 + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run CoD4MWDemoSetup_v2.exe + WinWait,Modern Warfare,Welcome + ControlClick Button1 ; Next + WinWait,Modern Warfare, License + ControlClick Button5 ; accept + ControlClick Button2 ; Next + WinWait,Modern Warfare, System Requirements + ControlClick Button1 ; Next + ControlClick Button4 ; Next + WinWait,Modern Warfare, Typical + ControlClick Button4 ; License + ControlClick Button1 ; Next + WinWait,Question, shortcut + ControlClick Button1 ; Yes + WinWait,Microsoft DirectX Setup, license + ControlClick Button1 ; Yes + WinWait,Modern Warfare, finished + ControlClick Button1 ; Finished + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Activision\\Call of Duty 4 - Modern Warfare Demo" +iw3sp.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add cnc2 "Command and Conquer Tiberian Sun & Firestorm (Westwood, 2000), [download]" OfficialCnCTiberianSun.rar + +load_cnc2() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/OfficialCncTiberianSun.rar" + then + download $PACKAGE http://na.llnet.cnc3tv.ea.com/u/f/eagames/cnc3/cnc3tv/Classic/OfficialCnCTiberianSun.rar 591aabd639fb9f2d2476a2150f3c00b1162674f5 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + + try_unrar x OfficialCnCTiberianSun.rar "$programfilesdir_x86_unix" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\EA Games\\Command & Conquer The First Decade\\Command & Conquer(tm) Tiberian Sun(tm)\\SUN" +Game.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add civ4 "Civilization IV (Firaxis Games, 2005) [broken-wine-drm]" 6633e9cfbe06aa292b33fb38ce0779faf5a379bb.iso 231eee984062c9acadd336b4c0852fac829b76a8.iso + +load_civ4() { + if workaround_wine_bug 219 + then + warn "This game's DRM is not supported by Wine :-( but try patch 3.19 or later, it's said to remove the DRM" + fi + + if workaround_wine_bug 6856 + then + try sh "$WINETRICKS" -q msxml3 + fi + if workaround_wine_bug 11675 + then + try sh "$WINETRICKS" -q d3dx9_36 + fi + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/6633e9cfbe06aa292b33fb38ce0779faf5a379bb.iso + + cd "$ISO_MOUNT_ROOT" + ahk_do " + run ${ISO_MOUNT_LETTER}:autorun.exe + SetTitleMatchMode, 2 + winwait, Civilization 4 + ControlClick Button3, Civilization 4 + winwait, Civilization 4 - InstallShield Wizard, Welcome + ControlClick &Next >, Civilization 4 + winwait, Civilization 4, I &accept the terms of the license agreement + ControlClick I &accept, Civilization 4 + ControlClick &Next >, Civilization 4 + winwait, Civilization 4 - InstallShield Wizard, Express Install + ControlClick &Next >, Civilization 4 + winwait, Civilization 4 - InstallShield Wizard, begin installation + ControlClick &Install, Civilization 4 + winwait, Setup Needs The Next Disk + " + iso_umount + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/231eee984062c9acadd336b4c0852fac829b76a8.iso + ahk_do " + SetTitleMatchMode, 2 + ControlClick OK, Setup Needs The Next Disk + winwait, Civilization 4, Xfire + ControlClick No, Civilization 4 + ControlClick &Next >, Civilization 4 + winwait, Setup Needs The Next Disk + " + iso_umount + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/6633e9cfbe06aa292b33fb38ce0779faf5a379bb.iso + ahk_do " + SetTitleMatchMode, 2 + ControlClick OK, Setup Needs The Next Disk + winwait, Sid Meier's Civilization 4 - InstallShield Wizard, InstallShield Wizard Complete + ControlClick Finish, Sid Meier's Civilization 4 - InstallShield Wizard + " + + download $PACKAGE http://www.firaxis.com/downloads/Patch/Civ4v161.exe 4712e96ef34dcc5aa961d2b75f49ada8bd6b0d92 + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run Civ4v161.exe + winwait, Civilization 4 + ControlClick &Next >, Sid Meier's Civilization 4 - InstallShield Wizard + winwait, Civilization 4, Xfire + ControlClick No, Civilization 4 + ControlClick &Next >, Civilization 4 + winwait, Civilization 4, Update Complete + " + if workaround_wine_bug 6856 + then + try sh "$WINETRICKS" -q msxml3 + fi + if workaround_wine_bug 11675 + then + try sh "$WINETRICKS" -q d3dx9_36 + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Firaxis Games\\Sid Meier's Civilization 4" +Civilization4.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add civ4_demo "Civilization IV Demo (Firaxis Games, 2005) [download]" Civilization4_Demo.zip + +load_civ4_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/Civilization4_Demo.zip" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please download demo from http://download.cnet.com/Civilization-IV-demo/3000-7489_4-10465206.html and place it in $WISOTOOL_CACHE/$PACKAGE" + fi + + mkdir -p "$WISOTOOL_TMP" + cd "$WISOTOOL_CACHE/$PACKAGE" + try unzip Civilization4_Demo.zip -d "$WISOTOOL_TMP" + cd "$WISOTOOL_TMP/$PACKAGE" + chmod +x setup.exe + ahk_do " + SetTitleMatchMode, 2 + run, setup.exe + winwait, Choose Setup Language + sleep 1000 + Send {enter} + winwait, Civilization 4, Welcome + ControlClick &Next >, Civilization 4 + winwait, Civilization 4, I &accept the terms of the license agreement + ControlClick I &accept, Civilization 4 + ControlClick &Next >, Civilization 4 + winwait, Civilization 4, Express Install + ControlClick &Next >, Civilization 4 + winwait, Civilization 4, begin installation + ControlClick &Install, Civilization 4 + winwait, Civilization 4, InstallShield Wizard Complete + ControlClick Finish, Civilization 4 + winwaitclose + " + cd "$olddir" + + if workaround_wine_bug 6856 + then + try sh "$WINETRICKS" -q msxml3 + fi + if workaround_wine_bug 6856 # part 2, still need to file a bug + then + try sh "$WINETRICKS" -q d3dx9_26 + fi + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Firaxis Games\\Sid Meier's Civilization 4 Demo" +Civilization4.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add cnc3_demo "Command and Conquer 3 Demo (EA, 2007) [download]" CnC3Demo.exe + +load_cnc3_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/CnC3Demo.exe" + then + download $PACKAGE http://largedownloads.ea.com/pub/demos/CommandandConquer3/CnC3Demo.exe f6af21eba2d17eb6d8bb6a131b501b41c3a7eaf7 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, CnC3Demo.exe + winwait, Conquer 3, free space to install + sleep 1000 + send y + winwait, WinZip, After installation + sleep 1000 + send s + winwait, Conquer 3, InstallShield + sleep 3000 + controlclick, Button1 + winwait, Conquer 3, license + controlclick, Button3 + controlclick, Button5 + winwait, Conquer 3, setup type + controlclick, Button5 + winwait, Conquer 3, EA Link + controlclick, Button1 + winwait, Conquer 3, GameSpy + controlclick, Button1 + winwait, Conquer 3, Launch the program + controlclick, Button1 + " + cd "$olddir" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Electronic Arts\\Command & Conquer 3 Tiberium Wars Demo" +CNC3Demo.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add cnc4 "Command and Conquer 4 (EA, 2010) [broken-wine-drm]" f3308e6d3a93e7b5dd2643631404e97b66a0c262.iso + +load_cnc4() +{ + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/f3308e6d3a93e7b5dd2643631404e97b66a0c262.iso + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:EASetup.exe + winwait, Tiberian Twilight, License + controlclick, Button1 + controlclick, Button2 + winwait, Tiberian Twilight, Standard Installation + controlclick, Button1 + winwait, Tiberian Twilight, to exit the Setup + controlclick, Button5 + controlclick, Button1 + " + cd "$olddir" + iso_umount + + # Bypass the game's launcher: see AppDB + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +"$programfilesdir_x86_win\\Electronic Arts\\Command & Conquer 4 Tiberian Twilight\\Data\\CNC4.game" -config "$programfilesdir_x86_win\\Electronic Arts\\Command & Conquer 4 Tiberian Twilight\\CNC4_English.SkuDef" +__EOF__ + + # Doesn't work on Wine yet because of DRM? +} + +#---------------------------------------------------------------- + +verblist_add darknesswithin2_demo "Darkness Within 2 Demo (Zoetrope Interactive, 2010) [download]" DarknessWithin2Demo.exe + +load_darknesswithin2_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/DarknessWithin2Demo.exe" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please download $WISOTOOL_CACHE/$PACKAGE/DarknessWithin2Demo.exe from http://www.bigdownload.com/games/darkness-within-2-the-dark-lineage/pc/darkness-within-2-the-dark-lineage-demo" + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, DarknessWithin2Demo.exe + winwait, Darkness Within, will install + ControlClick, TNewButton1 + winwait, Darkness, License + ControlClick, TNewRadioButton1 + ControlClick, TNewButton2 + winwait, Darkness, Location + ControlClick, TNewButton3 + winwait, Darkness, shortcuts + ControlClick, TNewButton4 + winwait, Darkness, additional + ControlClick, TNewButton4 + winwait, Darkness, Ready to Install + ControlClick, TNewButton4 + winwait, PhysX, License + ControlClick, Button3 + ControlClick, Button4 + winwait, PhysX, successfully + ControlClick, Button1 + winwait, Darkness + ControlClick, TNewListBoxButton1 + ControlClick, TNewButton4 + " + cd "$olddir" + + if workaround_wine_bug 23041 + then + sh "$WINETRICKS" -q d3dx9_36 + fi + + # you have to cd to the directory containing DarkLineage.exe before running it + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Iceberg Interactive\Darkness Within 2 Demo" +"DarkLineage.exe" +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add daytona_usa_evolutions "Daytona USA Evolutions (Sega, 1997)" daytonev.exe + +# http://appdb.winehq.org/objectManager.php?sClass=application&iId=1136 +load_daytona_usa_evolutions() { + # Refuses to run on anything newer... + sh "$WINETRICKS" -q win98 + + download $PACKAGE http://www2.sega.co.jp/download/pc/daytonae/daytonev.exe 65c51766e01b582c15200afb0fd569e0ec5ca1ac + + # Installer starts by extracting files, but doesn't seem to be a zip file or a cab file. I tried a few cli arguments, + # but had no luck. It's only 60 MB extracted, so just extract it fresh each time. + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, daytonev.exe + winwait, WinSFX32 V2.16.2.6, Install &Directory: + sleep 1000 + controlclick, Button2, WinSFX32 V2.16.2.6, Install &Directory: + loop + { + ifwinexist, WinSFX32 V2.16.2.6, Install &Directory: + sleep 5000 + else + break + } + " + cd daytonev + # There's a lot of unknown characters (presumably Japanese). Should this require user to run in + # a Japanese locale? + ahk_do " + SetTitleMatchMode, 2 + run, Setup.exe + winwait, Welcome, ???? DAYTONA USA Evolution ? ! + sleep 1000 + controlclick, Button1, Welcome, ???? DAYTONA USA Evolution ? ! + winwait, ???????????, ???????? PATH ?????????? + sleep 1000 + controlclick, Button1, ???????????, ???????? PATH ?????????? + winwait, Setup, ?????????????????????? + sleep 1000 + controlclick, Button1, Setup, ?????????????????????? + winwait, DirectX Install + sleep 1000 + ; Damned if you do, damned if you don't...directx install fails if you attempt install, but if you don't, 'joystick.reg setup' fails. + controlclick, Button2, DirectX Install + sleep 1000 + winwait, Setup, Joystick.reg setup failed. + sleep 1000 + controlclick, Button1, Setup, Joystick.reg setup failed. + winwait, Setup, ??????????????? + sleep 1000 + controlclick, Button1, Setup, ??????????????? + " + cd "$olddir" + + warn "Gives an error when closing the game, seems safe to ignore." + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$DRIVE_C\SEGA\DAYTONA USA Evolution Demo CD" +"DAYTONA USA Evolution Demo CD.exe" +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add dc2ba "Doras Carnival 2: Boardwalk Adventure (Nickelodeon, 2008)" InstallDorasCarnival2BoardwalkAdventure.exe +load_dc2ba() { + # http://www.nickjr.com/games/p-doras-carnival-2-adventure.jhtml + download $PACKAGE http://downloadcdn.shockwave.com/pub/doras-carnival-2-boardwalk-adventure/InstallDorasCarnival2BoardwalkAdventure.exe a02559c4d8236581f2ee0e51a1a11f67a901eaba + + if workaround_wine_bug 23749 + then + sh "$WINETRICKS" -q ie6 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run InstallDorasCarnival2BoardwalkAdventure.exe + winwait, Welcome + sleep 1000 + controlclick, Button1, Welcome + sleep 1000 + winwait, End User License + sleep 1000 + controlclick, Button1, End User License + winwait, Choose Destination Location + sleep 1000 + controlclick, Button1, Choose Destination Location + winwait, FREE Toolbar + sleep 1000 + controlclick, Button5, FREE Toolbar + sleep 1000 + controlclick, Button1, FREE Toolbar + winwait, Start Installation + sleep 1000 + controlclick, Button1, Start Installation + winwait, Installation Complete + sleep 1000 + controlclick, Button1, Installation Complete + " + sleep 5 + killall winefile.exe + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Shockwave.com\\Dora's Carnival 2 - Boardwalk Adventure" +"Dora's Carnival 2 - Boardwalk Adventure.exe" +__EOF__ + + # Workarounds needed by the game but not the installer should come at end of verb + if workaround_wine_bug 13496 + then + sh "$WINETRICKS" -q vcrun6 + fi +} + +#---------------------------------------------------------------- + +verblist_add deadspace "Dead Space (EA, 2008)" \ + abf250df77bfa96c74e7bcd0343d381a4f327a26.iso + +load_deadspace() { + DEADSPACEKEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/abf250df77bfa96c74e7bcd0343d381a4f327a26.txt | tr -d -` + + if workaround_wine_bug 23324 + then + msvcrun_me_harder=" + winwait, Microsoft + controlclick, Button1 + " + else + msvcrun_me_harder="" + fi + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/abf250df77bfa96c74e7bcd0343d381a4f327a26.iso + ahk_do " + SetTitleMatchMode, 2 + ; note: if this is the second run, the installer skips the registration code prompt + run, ${ISO_MOUNT_LETTER}:EASetup.exe + winwait, Dead + send {Enter} + winwait, Dead, Registration Code + send {RAW}$DEADSPACEKEY + Sleep 1000 + controlclick, Button2 + $msvcrun_me_harder + winwait, Setup, License + Sleep 1000 + controlclick, Button1 + Sleep 1000 + send {Enter} + winwait, Setup, License + Sleep 1000 + controlclick, Button1 + Sleep 1000 + send {Enter} + winwait, Setup, Destination + Sleep 1000 + controlclick, Button1 + winwait, Setup, begin + Sleep 1000 + controlclick, Button1 + winwait, Setup, Finish + Sleep 1000 + controlclick, Button5 + controlclick, Button1 + " + iso_umount + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Electronic Arts\\Dead Space" +Dead Space.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add demolition_company_demo "Demolition Company demo [download]" DemolitionCompanyDemoEN.exe + +load_demolition_company_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/DemolitionCompanyDemoEN.exe" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Download the demo from http://www.demolitioncompany-thegame.com/demo.php and put it in $WISOTOOL_CACHE/$PACKAGE" + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, DemolitionCompanyDemoEN.exe + winwait, Setup - Demolition, This will install + sleep 1000 + controlclick, TNewButton1, Setup - Demolition, This will install + winwait, Setup - Demolition, License Agreement + sleep 1000 + controlclick, TNewRadioButton1, Setup - Demolition, License Agreement + sleep 1000 + controlclick, TNewButton2, Setup - Demolition, License Agreement + winwait, Setup - Demolition, Setup Type + sleep 1000 + controlclick, TNewButton2, Setup - Demolition, Setup Type + winwait, Setup - Demolition, Ready to Install + sleep 1000 + controlclick, TNewButton2, Setup - Demolition, Ready to Install + winwait, Setup - Demolition, Completing + sleep 1000 + controlclick, TNewButton2, Setup - Demolition, Completing + " + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +cd "$programfilesdir_x86_win\\Demolition Company Demo\\" +DemolitionCompany.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add desperados2 "Desperados 2 (Atari, 2006)" ff13e7c5a96c70a24f91528915ea4ff375b0193e.iso + +load_desperados2() +{ + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/ff13e7c5a96c70a24f91528915ea4ff375b0193e.iso + ahk_do " + SetTitleMatchMode, 2 + Run, ${ISO_MOUNT_LETTER}:Setup.exe + WinWait, Desperados 2, Choose Setup Language + WinActivate + ControlClick Button3 ; next + WinWait, Desperados 2, License Agreement + WinActivate + ControlClick Button3 ; accept eula + ControlClick Button1 ; next + WinWait, Desperados 2, Choose Destination Location + ControlClick Button1 ; next + WinWait, Desperados 2, Select Program Folder + WinActivate + ControlClick Button2 ; next + WinWait, Desperados 2, Ready to Install + WinActivate + ControlClick Button1 ; install + WinWait, Desperados 2, InstallShield Wizard Complete + ControlCLick Button1 ; untick shortcut + ControlClick Button2 ; untick directx setup + ControlClick Button4 ; finish, also combo breaker + WinWait, Desperados ; flashy autorun thingy + MouseMove 103, 417 ; x marks the spot + Click ; exit + WinWaitClose + " + iso_umount + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Atari\\Desperados 2" +Desperados2.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add deusex2_demo "Deus Ex 2 Demo [download]" dxiw_demo.zip +load_deusex2_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/dxiw_demo.zip" + then + download $PACKAGE http://www.techpowerup.com/downloads/1730i/dxiw_demo.zip ccae48fb046d912b3714ea1b4be4294e74bb3092 + fi + + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_CACHE/$PACKAGE" + try unzip dxiw_demo.zip -d "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_TMP/$PACKAGE" + chmod +x setup.exe + ahk_do " + SetTitleMatchMode, 2 + run, setup.exe + winwait, Deus Ex - Invisible War Demo - InstallShield + winwaitclose + winwait, Deus Ex - Invisible War Demo + send {Tab}{Enter} + winwait, Deus Ex - Invisible War Demo - InstallShield + send n + winwait, Deus Ex - Invisible War Demo, license + send an + winwait, Deus Ex - Invisible War Demo, setup type + send n + winwait, Deus Ex - Invisible War Demo, install + send i + winwait, Question, ; Readme? + send n + winwait, Question, ; Play now? + send n + winwait, Deus Ex - Invisible War Demo, install ; Done + send {Enter} + winwaitclose + " + + cd "$olddir" + + if workaround_wine_bug 6971 + then + warn "This game suffers from The Mouse Bug, see http://wiki.winehq.org/Bug6971 for tips" + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Deus Ex - Invisible War Demo\\System\\" +DX2.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add diablo2 "Diablo II (Blizzard, 2000)" \ + e20efb1ea60e58b4a25275a00571aabfe3ab4511.iso \ + 51e2c630d5dd017e6168a8cf3ee24e39010316d9.iso \ + 382ea98f270e39855b558b8fac0d609712a54ae8.iso \ + e20efb1ea60e58b4a25275a00571aabfe3ab4511.iso + +load_diablo2() { + warn "You must have already done 'wisotool load=YOURKEY' on the install disc, and 'wisotool load' on the other three discs." + download diablo2 http://ftp.blizzard.com/pub/diablo2/patches/PC/D2Patch_113c.exe c78761bfb06999a9788f25a23a1ed30260ffb8ab + + # Force clean-ish install + test -d "$programfilesdir_unix/Diablo II" && rm -rf "$programfilesdir_unix/Diablo II" + + # Get user's key + DIABLOIIKEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/e20efb1ea60e58b4a25275a00571aabfe3ab4511.txt | tr -d -` + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/e20efb1ea60e58b4a25275a00571aabfe3ab4511.iso + ahk_do " + run ${ISO_MOUNT_LETTER}:setup.exe + winwait, Diablo II Setup + send {i} + winwait, Choose Installation Size + send {u} + send {Enter} + send {Raw}$USERNAME + send {Tab}{Raw}$DIABLOIIKEY + send {Enter} + winwait, Diablo II - choose install directory + send {Enter} + winwait, Desktop Shortcut + send {N} + winwait, Insert Disc" + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/51e2c630d5dd017e6168a8cf3ee24e39010316d9.iso + # Needed by patch 1.13c to avoid disc swapping + cp "$ISO_MOUNT_ROOT"/d2music.mpq "$programfilesdir_unix/Diablo II/" + ahk_do " + send, {Enter} + Sleep 1000 + winwait, Insert Disc" + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/382ea98f270e39855b558b8fac0d609712a54ae8.iso + ahk_do " + send, {Enter} + Sleep 1000 + winwait, Insert Disc" + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/e20efb1ea60e58b4a25275a00571aabfe3ab4511.iso + ahk_do " + send, {Enter} + Sleep 1000 + winwait, View ReadMe? + ControlClick &No, View ReadMe? + winwait, Register Diablo II Electronically? + send {N} + winwait, Diablo II Setup - Video Test + ControlClick &Cancel, Diablo II Setup - Video Test + winclose, Diablo II Setup" + iso_umount + + try "$WINE" "$WISOTOOL_CACHE"/diablo2/D2Patch_113c.exe + ahk_do " + winwait Blizzard Updater v2.72 + send {Enter} + winwait Diablo II + ControlClick &Cancel, Diablo II" + # Dagnabbit, the darn updater starts the game after it updates, no matter what I do? + killall "Game.exe" + + warn "When starting the game, be patient, wait until the menu appears. The game seems to hang if it looses focus, see bug 14456, you may need to set winecfg to virtual desktop." + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Diablo II" +"Diablo II.exe" +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add dragonage "Dragon Age: Origins (Bioware / EA, 2009)" 705a6b06d0dd807bf62b4391d278649d728ebda4.iso + +load_dragonage() { + # Get user's key + DRAGONAGEKEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/705a6b06d0dd807bf62b4391d278649d728ebda4.txt | tr -d -` + + # Installer has a non-fatal crash on exit, so ignore it. + sh "$WINETRICKS" -q nocrashdialog physx vcrun2005 + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/705a6b06d0dd807bf62b4391d278649d728ebda4.iso + + ahk_do " + Run, ${ISO_MOUNT_LETTER}:Setup.exe + SetTitleMatchMode, 2 + winwait, Installer Language + send {Enter} + winwait, Dragon Age: Origins Setup + ControlClick Next, Dragon Age: Origins Setup + winwait, Dragon Age: Origins Setup, End User License + sleep 1000 + ;ControlClick Button4, Dragon Age: Origins Setup ; agree + send {Tab}a ; agree + ;ControlClick I agree, Dragon Age: Origins Setup + send {Enter} ; continue + SetTitleMatchMode, 1 + winwait, Dragon Age: Origins, Registration + send $DRAGONAGEKEY + send {Enter} + winwait, Dragon Age: Origins Setup, Install Type + Sleep 1000 + send {Enter} + loop 100 + { + IfWinExist, Dragon Age: Origins Setup + sleep 60000 + } + exit 0 + " + iso_umount + + if workaround_wine_bug 22307 + then + warn "Turn off frame buffer effects to avoid blurry cut scenes. See http://bugs.winehq.org/show_bug.cgi?id=22307" + fi + if workaround_wine_bug 22383 + then + try "$WINETRICKS" -q strictdrawordering=enabled + fi + if workaround_wine_bug 23730 + then + warn "Run with WINEDEBUG=-all to reduce flickering." + fi + if workaround_wine_bug 23081 + then + warn "If you still see flickering, try applying the patch from http://bugs.winehq.org/show_bug.cgi?id=23081" + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Dragon Age" +bin_ship\\daorigins.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add dts "Death to Spies (1C Company / Haggard Games, 2007)" 3cf30e69986e00794a4ee581a35f3319f82a82dd.iso + +load_dts() { + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/3cf30e69986e00794a4ee581a35f3319f82a82dd.iso + + ahk_do " + Run, ${ISO_MOUNT_LETTER}:Death_to_Spies_Setup.exe + SetTitleMatchMode, 2 + WinWait, Death to Spies + WinActivate + ControlClick TNewButton1 ; next + WinWait, , Select Destination Location + ControlClick TNewButton3 ; next + WinWait, , Select Start Menu Folder + ControlClick TNewButton4 ; next + WinWait, , Select Additional Tasks + ControlClick TNewCheckListBox1 ; uncheck shortcut + ControlClick TNewButton4 ; next + WinWait, , Ready to Install + ControlClick TNewButton4 ; next + WinWait, Microsoft ; direct x + WinActivate + ControlClick Button6 ; cancel + WinWait, Death to Spies + WinActivate + ControlClick TNewButton4 ; finish + " + iso_umount + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Aspyr\\Death to Spies Moment of Truth" +Truth.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add eve "EVE Online Tyrannis (CCP Games, 2010) [download]" EVE_Premium_Setup_177290_m.exe + +load_eve() { + # FIXME: download function should avoid checksumming huge old files + test -s "$WISOTOOL_CACHE/$PACKAGE/EVE_Premium_Setup_177290_m.exe" || + download $PACKAGE "http://content.eveonline.com/EVE_Premium_Setup_177290_m.exe" 92624334ed5a431c1b516161ecf7280882b388f6 + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run, EVE_Premium_Setup_177290_m.exe + WinWait, EVE Online Installer + WinActivate + send {Enter} ; Next + WinWait, EVE,License Agreement + WinActivate + send {Enter} ; Next + WinWait, EVE,Choose Install + WinActivate + send {Enter} ; Install + WinWait, EVE,Installation Complete + WinActivate + send {Enter} ; next + WinWait, EVE,Installation Complete + WinActivate + Send {Tab}{Tab}{Tab} ; select Launch + Send {Space} ; untick Launch + Send {Enter} ; Finish + WinWaitClose + " + if workaround_wine_bug 18221 + then + sh "$WINETRICKS" -q corefonts + fi + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\CCP\\EVE" +eve.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add ewj_demo "Earthworm Jim demo (Shiny Entertainment, 1996) [download]" + +load_ewj_demo() { +# http://appdb.winehq.org/objectManager.php?sClass=application&iId=4233 + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/ewjdemo.exe" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please download the demo from http://download.cnet.com/Earthworm-Jim-demo/3000-2099_4-10000793.html and put it in $WISOTOOL_CACHE/$PACKAGE" + fi + + # FIXME: If the user is on a 32-bit OS and has vm.mmap_min_addr=0, they can use Wine to extract the files. + # So we should try that if arj is not installed. + if ! [ -x `which arj` ] + then + die "You need to install the `arj` utility to extract the demo files. (e.g., sudo apt-get install arj or sudo yum install arj)" + else + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_TMP/$PACKAGE" + arj e "$WISOTOOL_CACHE/$PACKAGE/ewjdemo.exe" + mkdir -p "$DRIVE_C/ewj_demo" + cd "$DRIVE_C/ewj_demo" + arj e "$WISOTOOL_TMP/$PACKAGE/EWJFILES.EXE" + fi + + if workaround_wine_bug 19531 + then + warn "Sound does not work in Windows NT+ mode. It does in win98 mode, but then locks up the game. See http://bugs.winehq.org/show_bug.cgi?id=19531" + else + sh "$WINETRICKS" win98 + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +cd "$DRIVE_C\\ewj_demo" +WORM.EXE +__EOF__ + +} + +#---------------------------------------------------------------- + +# Sadly, the SHA1SUM of the first disc varies! +# FIXME: change load function to call it by its volume label instead; right now you have to rename it manually. + +verblist_add fable_tlc "Fable: The Lost Chapters (Microsoft, 2005)" \ + FABLE_DISC_1.iso \ + 755eaa37cd52c1171339d2dae11979147cf62080.iso \ + ed977f38acac7a09b8b6fdcc64a68933076d0cd4.iso \ + 2aa5c8c55d38a4113da4c3ca60d9e69ed2a0d941.iso + +load_fable_tlc() { + + KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/FABLE_DISK_1.txt | tr -d -` + + if workaround_wine_bug 657 + then + try sh "$WINETRICKS" -q mfc42 + fi + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/FABLE_DISK_1.iso + ahk_do " + SetTitleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:setup.exe + WinWait,Fable,Welcome + Sleep 500 + ControlClick Button1 ; Next + WinWait,Fable,Please + Sleep 500 + ControlClick Button4 ; Next + WinWait,Fable,Product Key + Sleep 500 + Send $KEY + Send {Enter} + WinWait,Fable,Disk 2 + " + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/ed977f38acac7a09b8b6fdcc64a68933076d0cd4.iso + ahk_do " + SetTitleMatchMode, 2 + WinWait,Fable,Disk 2 + Sleep 500 + ControlClick Button2 ; Retry + WinWait,Fable,Disk 3 + " + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/755eaa37cd52c1171339d2dae11979147cf62080.iso + ahk_do " + SetTitleMatchMode, 2 + WinWait,Fable,Disk 3 + Sleep 500 + ControlClick Button2 ; Retry + WinWait,Fable,Disk 4 + " + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/e435cfeb975e596db1bf953170462e3b81c41396.iso + ahk_do " + SetTitleMatchMode, 2 + WinWait,Fable,Disk 4 + Sleep 500 + ControlClick Button2 ; Retry + WinWait,Fable,Disk 1 + WinKill + " + + # Now tell game what the real disc is so user can insert disc 1 and run the game! + cat > "$WISOTOOL_TMP"/$PACKAGE.reg <<_EOF_ +REGEDIT4 + +[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\D3BE9C3CAF4226447B48E06CAACF2DDD\InstallProperties] +"InstallSource"="D:\\" + +_EOF_ + try_regedit "$WISOTOOL_TMP_WIN"\\$PACKAGE.reg + + # Also accept EULA + cat > "$WISOTOOL_TMP"/$PACKAGE.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Microsoft\Microsoft Games\Fable TLC] +"FIRSTRUN"=dword:00000001 + +_EOF_ + try_regedit "$WISOTOOL_TMP_WIN"\\$PACKAGE.reg + + if workaround_wine_bug 24912 + then + # kill off lingering installer + ahk_do " + SetTitleMatchMode, 2 + WinKill,Fable + " + $WINESERVER -k + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Microsoft Games\\Fable - The Lost Chapters" +Fable.exe +__EOF__ + + if workaround_wine_bug 24941 + then + try sh "$WINETRICKS" -q devenum quartz wmp9 + fi + + if workaround_wine_bug 24942 + then + sh "$WINETRICKS" -q d3dx9_36 + fi +} + +#---------------------------------------------------------------- + +verblist_add fallout3 "Fallout 3 Windows Live Version (Bethesda, 2009)" 4994dca9fa2e105ea592899644f48d754338663f.iso + +load_fallout3() +{ + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/4994dca9fa2e105ea592899644f48d754338663f.iso + + if workaround_wine_bug 23532 + then + try "$WINETRICKS" -q xlive + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:setup.exe + winwait, Fallout 3, Welcome + controlclick, Button1 + winwait, Fallout 3, License Agreement + controlclick, Button3 + controlclick, Button1 + winwait, Fallout 3, Setup Type + controlclick, Button4 + winwait, Fallout 3, Ready to Install + controlclick, Button1 + winwait, Fallout 3, InstallShield Wizard Complete + controlclick, Button1 + controlclick, Button2 + controlclick, Button3 + " + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Bethesda Softworks\\Fallout 3" +"Fallout3.exe" +__EOF__ +} +#---------------------------------------------------------------- + +verblist_add fallout3_goty "Fallout 3: Game of the Year Edition (Bethesda, 2009)" 379e2daa9bdd1aaf1cb152c1d9f8181f8f24e01b.iso \ + f131e45dba66ed2c98dd7a1e04cc1114b7c5e4b6.iso + +load_fallout3_goty() { +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=14322 + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/379e2daa9bdd1aaf1cb152c1d9f8181f8f24e01b.iso + + ahk_do " + Run, ${ISO_MOUNT_LETTER}:Setup.exe + SetTitleMatchMode, 2 + winwait, Fallout 3 - InstallShield Wizard, Welcome to the InstallShield Wizard for Fallout 3 + sleep 1000 + controlclick, Button1, Fallout 3 - InstallShield Wizard, Welcome to the InstallShield Wizard for Fallout 3 + winwait, Fallout 3 - InstallShield Wizard, Please read the following license agreement carefully. + sleep 1000 + controlclick, Button3, Fallout 3 - InstallShield Wizard, Please read the following license agreement carefully. + sleep 1000 + controlclick, Button1, Fallout 3 - InstallShield Wizard, Please read the following license agreement carefully. + winwait, Fallout 3 - InstallShield Wizard, Please select a setup type. + sleep 1000 + controlclick, Button4, Fallout 3 - InstallShield Wizard, Please select a setup type. + winwait, Fallout 3 - InstallShield Wizard, Click Install to begin the installation. + sleep 1000 + controlclick, Button1, Fallout 3 - InstallShield Wizard, Click Install to begin the installation. + winwait, Fallout 3 - InstallShield Wizard, InstallShield Wizard Complete + sleep 1000 + controlclick, Button1, Fallout 3 - InstallShield Wizard, InstallShield Wizard Complete + sleep 1000 + controlclick, Button2, Fallout 3 - InstallShield Wizard, InstallShield Wizard Complete + sleep 1000 + controlclick, Button3, Fallout 3 - InstallShield Wizard, InstallShield Wizard Complete + " + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/f131e45dba66ed2c98dd7a1e04cc1114b7c5e4b6.iso + + ahk_do " + Run, ${ISO_MOUNT_LETTER}:EN_Fallout_3_DLC.EXE + SetTitleMatchMode, 2 + winwait, Fallout 3 - DLC EN - InstallShield Wizard, Welcome to the InstallShield Wizard for Fallout 3 - DLC EN + sleep 1000 + controlclick, Button1, Fallout 3 - DLC EN - InstallShield Wizard, Welcome to the InstallShield Wizard for Fallout 3 - DLC EN + winwait, Fallout 3 - DLC EN - InstallShield Wizard, Please read the following license agreement carefully. + sleep 1000 + controlclick, Button5, Fallout 3 - DLC EN - InstallShield Wizard, Please read the following license agreement carefully. + sleep 1000 + controlclick, Button2, Fallout 3 - DLC EN - InstallShield Wizard, Please read the following license agreement carefully. + winwait, Fallout 3 - DLC EN - InstallShield Wizard, Click Install to begin the installation. + sleep 1000 + controlclick, Button1, Fallout 3 - DLC EN - InstallShield Wizard, Click Install to begin the installation. + winwait, Fallout 3 - DLC EN - InstallShield Wizard, InstallShield Wizard Complete + sleep 1000 + controlclick, Button4, Fallout 3 - DLC EN - InstallShield Wizard, InstallShield Wizard Complete + " + + if workaround_wine_bug 23532 + then + try "$WINETRICKS" -q xlive + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Bethesda Softworks\\Fallout 3" +"Fallout3.exe" +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add fallout_nv "Fallout New Vegas (Bethesda, 2010)" f603dfc0343ea4257d04946e1cac8c06dfe8707d.iso + +load_fallout_nv() +{ + warn "You'll need to have STEAM_USER/STEAM_PASS set in your environment or in $WISOTOOL_CACHE. You'll also need your cd-key for Fallout New Vegas already added to your Steam Account." + + if [ ! "$STEAM_USER" -a ! -f "$WISOTOOL_CACHE"/STEAM_USER ] + then + die "You need to set STEAM_USER variable in your environment or put it in "$WISOTOOL_CACHE"/STEAM_USER" + elif [ ! "$STEAM_USER" -a -f "$WISOTOOL_CACHE"/STEAM_USER ] + then + STEAM_USER=`cat "$WISOTOOL_CACHE"/STEAM_USER` + fi + + if [ ! "$STEAM_PASS" -a ! -f "$WISOTOOL_CACHE"/STEAM_PASS ] + then + die "You need to set STEAM_PASS variable in your environment or put it in "$WISOTOOL_CACHE"/STEAM_PASS" + elif [ ! "$STEAM_PASS" -a -f "$WISOTOOL_CACHE"/STEAM_PASS ] + then + STEAM_PASS=`cat "$WISOTOOL_CACHE"/STEAM_PASS` + fi + + steam_dir="$programfilesdir_unix/Steam" + + # Game uses Steam to install itself + try sh $WINETRICKS -q steam + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/f603dfc0343ea4257d04946e1cac8c06dfe8707d.iso + + cd "$steam_dir" + + # Run Steam, let it update. Then, in a separate thread, run the installer. + ahk_do " + SetTitleMatchMode, 2 + SetControlDelay -1 + run, Steam.exe -login $STEAM_USER $STEAM_PASS + Winwait, Steam - Update News + ; Close all windows, prevent conflicts with later controlclick's + winclose, Steam - Update News + winclose, Steam + " + + ahk_do " + SetTitleMatchMode, 2 + SetControlDelay -1 + Run, Steam.exe -install I:\\ + ; Install Fallout New Vegas + winwait, Install - Fallout- New Vegas + send, {Enter} + ; Shortcuts + sleep 10000 + winwait, Install - Fallout- New Vegas + send, {Enter} + ; Installing... + sleep 10000 + winwait, Install - Fallout- New Vegas + send, {Enter} + " + + # Wait for install to finish + dl_log="$steam_dir/logs/download_log.txt" + while true + do + grep "SetHasAllLocalContent(true) called for 22380" "$dl_log" && break + sleep 15 + done + + ahk_do " + send {Enter} + sleep 1000 + run, Steam.exe -shutdown + " + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Steam" +Steam.exe -login $STEAM_USER $STEAM_PASS -applaunch 22380 +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add fifa10 "Fifa 10 (EA, 2009)" 2038b86319862e1177912949e9f826f333571c48.iso + +load_fifa10() { +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=14322 + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/2038b86319862e1177912949e9f826f333571c48.iso + + # Get user's key + fifakey=`cat "$WISOTOOL_CACHE"/$PACKAGE/2038b86319862e1177912949e9f826f333571c48.txt | tr -d -` + + if workaround_wine_bug 23433 'wine-1.2-422*|wine-1.2.*' + then + fifatitle="DisplayName from default.wxl" + else + # FIXME: What is it on Windows? + fifatitle="FIFA 10" + fi + + + ahk_do " + Run, ${ISO_MOUNT_LETTER}:AutoRun.exe + SetTitleMatchMode, 2 + winwait, FIFA 10, View the readme file + sleep 1000 + controlclick, Button1, FIFA 10, View the readme file + winwait, FIFA 10, Please enter the entire Registration Code found either + sleep 1000 + send $fifakey + send {Enter} + winwait, Microsoft Visual C++ 2005, Please read the following license agreement + sleep 1000 + controlclick, Button1, Microsoft Visual C++ 2005, Please read the following license agreement + winwait, $fifatitle, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button1, $fifatitle, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button3, $fifatitle, I &accept the terms in the End User License Agreement + ; There are two license agreements...one is for Directx + winwait, $fifatitle, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button1, $fifatitle, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button3, $fifatitle, I &accept the terms in the End User License Agreement + winwait, $fifatitle, Ready to install $fifatitle + sleep 1000 + controlclick, Button1, $fifatitle, Ready to install $fifatitle + winwait, $fifatitle, Click the Finish button to exit the Setup Wizard. + sleep 1000 + controlclick, Button5, $fifatitle, Click the Finish button to exit the Setup Wizard. + sleep 1000 + controlclick, Button1, $fifatitle, Click the Finish button to exit the Setup Wizard. + winwait, Product Registration, Please log into your EA Master Account to continue. + sleep 1000 + controlclick, Button14, Product Registration, Please log into your EA Master Account to continue. + " + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\EA Sports\\FIFA 10" +"FIFA10.exe" +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add fifa11_demo "FIFA 11 Demo (EA Sports, 2010) [download]" fifa11_pc_demo_NA.zip + +load_fifa11_demo() +{ + # From http://www.easportsfootball.co.uk/news/item/file/FIFA-11-Demo-Release?om_u=2255229429&om_i=_BMknsPB8Usvnmr + download $PACKAGE http://static.cdn.ea.com/fifa/u/f/fifa11_pc_demo_NA.zip c3a66284bffb985f31b11e477dade50c0d4cac52 + + mkdir "$WISOTOOL_TMP/$PACKAGE" + try unzip -d "$WISOTOOL_TMP/$PACKAGE" "$WISOTOOL_CACHE/$PACKAGE/fifa11_pc_demo_NA.zip" + cd "$WISOTOOL_TMP/$PACKAGE" + + ahk_do " + SetTitleMatchMode, 2 + run, EASetup.exe + winwait, Microsoft Visual C++ 2008, This wizard will guide you + sleep 1000 + controlclick, Button12, Microsoft Visual C++ 2008, This wizard will guide you + winwait, Microsoft Visual C++ 2008, License Terms + sleep 1000 + controlclick, Button11, Microsoft Visual C++ 2008, License Terms + sleep 1000 + controlclick, Button8, Microsoft Visual C++ 2008, License Terms + winwait, Microsoft Visual C++ 2008, Setup Complete + sleep 2000 + controlclick, Button2, Microsoft Visual C++ 2008, Setup Complete + ; It doesn't seem to take the first click, so try a second time.. + sleep 2000 + controlclick, Button2, Microsoft Visual C++ 2008, Setup Complete + ; There are two license agreements...one is for Directx + winwait, FIFA 11, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button1, FIFA 11, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button3, FIFA 11, I &accept the terms in the End User License Agreement + winwait, FIFA 11, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button1, FIFA 11, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button3, FIFA 11, I &accept the terms in the End User License Agreement + winwait, FIFA 11, Ready to install FIFA 11 + sleep 1000 + controlclick, Button1, FIFA 11, Ready to install FIFA 11 + winwait, FIFA 11, Click the Finish button to exit the Setup Wizard. + sleep 1000 + controlclick, Button5, FIFA 11, Click the Finish button to exit the Setup Wizard. + sleep 1000 + controlclick, Button1, FIFA 11, Click the Finish button to exit the Setup Wizard. + " + +if workaround_wine_bug 22161 +then + sh "$WINETRICKS" -q d3dx9_36 +fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\EA Sports\\FIFA 11 Demo\\Game" +"fifa.exe" +__EOF__ + +} + +#---------------------------------------------------------------- + + +verblist_add fifaonline3_beta "FIFA Online 3 Beta (EA Sports, 2010) [download]" FIFAOnlineSetup.exe + +load_fifaonline3_beta() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/FIFAOnlineSetup.exe" + then + mkdir -p "$WISOTOOL_CACHE"/$PACKAGE + die "Download the FIFAOnlineSetup.exe from http://fifa-online.easports.com/web/beta/welcome \ + and place it in $WISOTOOL_CACHE/$PACKAGE" + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, FIFAOnlineSetup.exe + winwait, C++, License + controlclick, Yes + winwait, FIFA, Testing Agreement + controlclick, Button1 + controlclick, Button3 + winwait, FIFA, Punk + controlclick, Button1 + controlclick, Button3 + winwait, FIFA, Destination + controlclick, Button1 + winwait, Setup, Please wait + sleep 1000 + winwaitclose, Setup, Please wait + sleep 10000 + send {Right} + sleep 1000 + send {Space} + sleep 1000 + send {Right} + sleep 1000 + send {Space} + " + # Wait for download to finish and game to start + while [ `ps a | grep NFE.exe | grep -v grep | wc -l` != "1" ] + do + sleep 5 + done + + # Dont kill game immediately + sleep 10 + killall "NFE.exe" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +c: +cd \Program Files\\EA Sports\\FIFA Online +Launch.exe +__EOF__ + + # Download audio commentary + cd "$DRIVE_C" + ahk_do " + SetTitleMatchMode, 2 + run, cmd /c run-$PACKAGE.bat + winwait, EA SPORTS, Download Commentary + controlclick, Button1, EA SPORTS, Download Commentary + " + + # Wait for download to finish again and game to start + while [ `ps a | grep NFE.exe | grep -v grep | wc -l` != "1" ] + do + sleep 5 + done + + # Dont kill game immediately + sleep 10 + killall "NFE.exe" + cd "$olddir" +} + +#---------------------------------------------------------------- + +verblist_add fifa10_demo "Fifa 10 Demo (EA, 2009)" fifa10_pc_demo_ec.exe + +load_fifa10_demo() { + download $PACKAGE "http://gamedaily.newaol.com/pub/fifa10_pc_demo_ec.exe" 96200d4962fd6c34715c448ba22f00edd3d70cd6 + + # The installer is a self extracting rar file. Make cleanups easy by using $WISOTOOL_TMP + mkdir "$WISOTOOL_TMP/fifa10" + cd "$WISOTOOL_TMP/fifa10" + + if workaround_wine_bug 23433 'wine-1.2-422*|wine-1.2.*' + then + fifatitle="DisplayName from default.wxl" + else + fifatitle="FIFA 10 - Demo" + fi + + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + Run fifa10_pc_demo_ec.exe + winwait, FIFA 10 PC Demo + send $WISOTOOL_TMP_WIN\\${PACKAGE}{ENTER} + winwait, FIFA 10 - Demo, View the readme file + sleep 1000 + controlclick, Button1, FIFA 10 - Demo, View the readme file + sleep 1000 + ; FIXME: make this block optional so we dont hang if wine vc2005 runtime passes the check and the game does not show this dialog + winwait, Microsoft Visual C++ 2005 Redistributable Package (x86) + sleep 1000 + controlclick, Button1, Microsoft Visual C++ 2005 Redistributable Package (x86) + sleep 1000 + winwait, $fifatitle Setup, I &accept the terms in the End User License Agreement + sleep 1000 + controlclick, Button1, $fifatitle Setup, Please read the End User License Agreement for $fifatitle + sleep 1000 + controlclick, Button3, $fifatitle Setup, Please read the End User License Agreement for $fifatitle + sleep 1000 + winwait, $fifatitle Setup, Please read the following End User License Agreement carefully + sleep 1000 + controlclick, Button1, $fifatitle Setup, Please read the following End User License Agreement carefully + sleep 1000 + controlclick, Button3, $fifatitle Setup, Please read the following End User License Agreement carefully + sleep 1000 + winwait, $fifatitle Setup, Ready to install $fifatitle + sleep 1000 + controlclick, Button1, $fifatitle Setup, Ready to install $fifatitle + ; Very slow installer... + winwait, $fifatitle Setup, Click the Finish button to exit the Setup Wizard. + sleep 1000 + controlclick, Button1, $fifatitle Setup, Click the Finish button to exit the Setup Wizard. + " +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\EA Sports\\FIFA 10 - Demo" +FIFA10Demo.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add ffvii_demo "Final Fantasy VII (Square Enix, 1998)" ff7demo.zip + +load_ffvii_demo() { + download $PACKAGE "http://software-files-l.cnet.com/s/software/89/10/18/ff7demo.zip?e=1284462275&h=47913b28b2f4a0274af12447d1359776&lop=link&ptype=1901&ontid=7538&siteId=4&edId=3&spi=bc2f47421050036bcf32c99124aba9c2&pid=891018&psid=10020419&fileName=ff7demo.zip" 79a555cd1874410a93952486e511bb8492e82a56 ff7demo.zip + + mkdir "$programfilesdir_x86_unix/ffvii_demo" + cd "$programfilesdir_x86_unix/ffvii_demo" + try unzip "$WISOTOOL_CACHE/$PACKAGE/ff7demo.zip" + + if workaround_wine_bug 9220 + then + warn "Doesn't work very well, see http://bugs.winehq.org/show_bug.cgi?id=9220" + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_unix/ffvii_demo" +ff7demo.exe +__EOF__ + +} + + +#---------------------------------------------------------------- + +verblist_add ffxiv_beta "Final Fantasy XIV Beta (Square Enix, 2010)" ffxivsetup.exe + +load_ffxiv_beta() { + # e6e615e5886c17e744fc4aba7b267e7e3dcbdb52 ffxivsetup.exe + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/ffxivsetup.exe" + then + mkdir -p "$WISOTOOL_CACHE"/$PACKAGE + die "Register for the beta and download ffxivsetup.exe from https://dev-na.ffxiv.com/ \ + and place it in $WISOTOOL_CACHE/$PACKAGE" + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, ffxivsetup.exe + winwait, FINAL FANTASY XIV Beta Version, Select a region and language + sleep 1000 + controlclick, Button2, FINAL FANTASY XIV Beta Version, Select a region and language + ; It forces Directx Install :-( + winwait, FINAL FANTASY XIV Beta Version, A new version of DirectX is required for installation + sleep 1000 + controlclick, Button2, FINAL FANTASY XIV Beta Version, A new version of DirectX is required for installation + winwait, Installing Microsoft(R) DirectX(R), Welcome to setup for DirectX + sleep 1000 + controlclick, Button1, Installing Microsoft(R) DirectX(R), Welcome to setup for DirectX + sleep 1000 + controlclick, Button4, Installing Microsoft(R) DirectX(R), Welcome to setup for DirectX + winwait, Installing Microsoft(R) DirectX(R), This install package will search for updated DirectX + sleep 1000 + Controlclick, Button4, Installing Microsoft(R) DirectX(R), This install package will search for updated DirectX + winwait, Installing Microsoft(R) DirectX(R), Installation Complete + sleep 1000 + controlclick, Button5, Installing Microsoft(R) DirectX(R), Installation Complete + winwait, FINAL FANTASY XIV Beta Version, The InstallShield Wizard will install FINAL FANTASY + sleep 1000 + Controlclick, Button1, FINAL FANTASY XIV Beta Version, The InstallShield Wizard will install FINAL FANTASY + winwait, FINAL FANTASY XIV Beta Version, Please shut down any antivirus + sleep 1000 + ControlClick, Button1, FINAL FANTASY XIV Beta Version, Please shut down any antivirus + winwait, FINAL FANTASY XIV Beta Version, License Agreement + sleep 1000 + Controlclick, Button5, FINAL FANTASY XIV Beta Version, License Agreement + sleep 1000 + Controlclick, Button2, FINAL FANTASY XIV Beta Version, License Agreement + winwait, FINAL FANTASY XIV Beta Version, To install to this folder + sleep 1000 + controlclick, Button1, FINAL FANTASY XIV Beta Version, To install to this folder + winwait, FINAL FANTASY XIV Beta Version, Start Copying Files + sleep 1000 + controlclick, Button1, FINAL FANTASY XIV Beta Version, Start Copying Files + winwait, FINAL FANTASY XIV Beta Version, InstallShield Wizard Complete + sleep 1000 + Controlclick, Button1, FINAL FANTASY XIV Beta Version, InstallShield Wizard Complete + sleep 1000 + Controlclick, Button4, FINAL FANTASY XIV Beta Version, InstallShield Wizard Complete + " + + if workaround_wine_bug 24358 + then + sh "$WINETRICKS" winhttp + warn "You'll want to forward ports TCP/UDP 55296-55551 and UDP 443 to your computer to speed up the download. See also http://bugs.winehq.org/show_bug.cgi?id=24358" + fi + + if workaround_wine_bug 24375 + then + sh "$WINETRICKS" -q ie6 + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\SquareEnix\\FINAL FANTASY XIV Beta Version" +ffxivboot.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add ffxivbench "Final Fantasy XIV Benchmark (Square Enix, 2010)" FFXIVBenchmark.zip + +load_ffxivbench() { + download $PACKAGE http://uk.download.nvidia.com/nzone/international/benchmarks/ffxiv/FFXIVBenchmark.zip 9c2406540306575bdc738c439e59f54eb44304a8 + + cd "$programfilesdir_x86_unix" + try unzip "$WISOTOOL_CACHE/$PACKAGE/FFXIVBenchmark.zip" + +# Setup two batch files, one for high res, one for low res: +cat > FFXIVBenchmark/data/config.low <<__EOF__ +[FFXIV_BENCHMARK] +LANGUAGE=1 +CHARACTER=0 +RESOLUTION=1 +LOOP=0 +__EOF__ + +cat > FFXIVBenchmark/data/config.high <<__EOF__ +[FFXIV_BENCHMARK] +LANGUAGE=1 +CHARACTER=0 +RESOLUTION=0 +LOOP=0 +__EOF__ + +cat > "$DRIVE_C/run-$PACKAGE-low.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\FFXIVBenchmark\\data" +copy config.low config.ini /y +FFXivWinBenchmark.exe +__EOF__ + +cat > "$DRIVE_C/run-$PACKAGE-high.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\FFXIVBenchmark\\data" +copy config.high config.ini /y +FFXivWinBenchmark.exe +__EOF__ + +if workaround_wine_bug 22555 +then + try "$WINETRICKS" -q d3dx9_36 +fi + +} + +#---------------------------------------------------------------- + +verblist_add fm10_demo "Football Manager 2010 demo (Sony, 2009)" Setup_FM2010_Vanilla_Demo.exe + +load_fm10_demo() { + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/Setup_FM2010_Vanilla_Demo.exe" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Download the demo from http://www.mirrorfootball.co.uk/football-manager-2010/ and put it in $WISOTOOL_CACHE/$PACKAGE" + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run, Setup_FM2010_Vanilla_Demo.exe + winwait, Football Manager 2010 Demo + sleep 1000 + ; Buttons have no names, and there is no visible window text. Additionally, the windows don't close. :-( + ; Lastly, controlclick doesn't work, even with coordinates. Luckily, mousemove + click does + mousemove, 550, 400 + Click + sleep 2000 + mousemove, 400, 325 + click + sleep 1000 + mousemove, 550, 400 + click + sleep 2000 + mousemove, 550, 400 + click + sleep 2000 + mousemove, 550, 400 + click + ; Wants directx. Cancel. Convienent, so we know when the install is done. + winwait, Installing Microsoft + winclose + winwait, Football Manager 2010 Demo + sleep 1000 + mousemove, 550, 400 + click + " + + if workaround_wine_bug 24417 + then + sh "$WINETRICKS" -q d3dx9_36 + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +cd $programfilesdir_x86_win\\Sports Interactive\\Football Manager 2010 Demo +fm.exe +__EOF__ + +} + +# http://www.futurepinball.com/ +verblist_add futurepinball "Future Pinball (Christopher Leathley, 2008) [download]" + +load_futurepinball() { + download $PACKAGE "http://members.iinet.net.au/~cleathley/downloads/FuturePinballSetup_v1.9.20081225.exe" 1d7f445c03ea508b8144cd56961c6d59136c2b1b + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + Run, FuturePinballSetup_v1.9.20081225.exe + WinWait, Setup, Welcome to the Future + sleep 1000 + ControlClick, TButton1 + WinWait, Setup, License Agreement + sleep 1000 + ControlClick, TRadioButton1 ; accept + sleep 1000 + ;ControlClick, TButton2 ; next + send {Enter} + WinWait, Setup, Select Destination Location + sleep 1000 + ControlClick, TButton3 + WinWait, Folder Does Not Exist + sleep 1000 + ControlClick, Button1 + WinWait, Setup, Select Start Menu Folder + sleep 1000 + ControlClick, TButton4 + WinWait, Setup, Select Additional Tasks + sleep 1000 + ControlClick, x53 y163 + ControlClick, TButton4 + WinWait, Setup, Ready to Install + sleep 1000 + ControlClick, TButton4 + WinWait, Setup, Completing the Future Pinball + sleep 1000 + send {Space} ; do not launch + ControlClick, TButton4 ; finish + " + if workaround_wine_bug 8780 + then + try "$WINETRICKS" -q wsh56vb dcom98 + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "\\Games\\Future Pinball" +"Future Pinball.exe" +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add gothic4_demo "Gothic 4 demo (Jowood/Dreamcatcher Games, 2010) [download] (broken)" ArcaniA_Gothic4_Demo_Setup.zip +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=21507 + +load_gothic4_demo() { + download $PACKAGE http://gamedaily.newaol.com/pub/ArcaniA_Gothic4_Demo_Setup.zip + + try mkdir -p "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_TMP/$PACKAGE" + try unzip "$WISOTOOL_CACHE/$PACKAGE"/ArcaniA_Gothic4_Demo_Setup.zip + + ahk_do " + Settitlematchmode, 2 + run, ArcaniA_Gothic4_Demo_Setup.exe + winwait, Select Setup Language + sleep 1000 + controlclick, TNewButton1, Select Setup Language + winwait, Setup - ArcaniA, Welcome to the + sleep 1000 + controlclick, TNewButton1, Setup - ArcaniA, Welcome to the + winwait, Setup - ArcaniA, License Agreement + sleep 1000 + controlclick, TNewRadioButton1, Setup - ArcaniA, License Agreement + sleep 1000 + controlclick, TNewButton2, Setup - ArcaniA, License Agreement + winwait, Setup - ArcaniA, Select Destination Location + sleep 1000 + controlclick, TNewButton3, Setup - ArcaniA, Select Destination Location + winwait, Setup - ArcaniA, Select Components + sleep 1000 + controlclick, TNewButton3, Setup - ArcaniA, Select Components + winwait, Setup - ArcaniA, Select Start Menu + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Select Start Menu + winwait, Setup - ArcaniA, Select Additional + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Select Additional + winwait, Setup - ArcaniA, Ready to Install + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Ready to Install + winwait, Setup - ArcaniA, Information + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Information + winwait, Setup - ArcaniA, Completing + sleep 1000 + ; The two checkboxes share the same button id. App/Wine bug? + mousemove, 190, 155 + click + sleep 1000 + mousemove, 190, 180 + click + sleep 1000 + controlclick, TNewButton4, Setup - ArcaniA, Completing + " + +if workaround_wine_bug 21939 +then + sh "$WINETRICKS" -q wmp9 +fi + +if workaround_wine_bug 24250 +then + sh "$WINETRICKS" -q vcrun2008 +fi + +if workaround_wine_bug 7065 +then + warn "Game has Securom protection, doesn't work in Wine yet." +fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +cd $programfilesdir_x86_win\\JoWooD Entertainment AG\\ArcaniA - Gothic 4 Demo +Arcania.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add grand_ages_rome_demo "Grand Ages: Rome demo (Kalypso, 2009) " GrandAgesRome-EU-XL-Demo.exe +# http://appdb.winehq.org/objectManager.php?sClass=application&iId=9378 + +load_grand_ages_rome_demo() { + download $PACKAGE http://gamedaily.newaol.com/pub/GrandAgesRome-EU-XL-Demo.exe 175c0dcdd6eb7c2b928f4ece0f775772ae94d8cf + + if workaround_wine_bug 24819 + then + sh "$WINETRICKS" -q gameux=disabled + $WINESERVER -w + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + + ahk_do " + Settitlematchmode, 2 + run, GrandAgesRome-EU-XL-Demo.exe + winwait, Installer Language + sleep 1000 + controlclick, Button1, Installer Language + winwait, Grand Ages, Welcome to the + sleep 1000 + controlclick, Button2, Grand Ages, Welcome to the + winwait, Grand Ages, Press Page Down + sleep 1000 + controlclick, Button2, Grand Ages, Press Page Down + winwait, Grand Ages, Please select installation type + sleep 1000 + controlclick, Button2, Grand Ages, Please select installation type + winwait, Grand Ages, Completing the Grand Ages Rome Demo + sleep 1000 + controlclick, Button4, Grand Ages, Completing the Grand Ages Rome Demo + sleep 100 + controlclick, Button2, Grand Ages, Completing the Grand Ages Rome Demo + " + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +cd $programfilesdir_x86_win\\Kalypso\\Grand Ages Rome Demo +Rome Demo.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add gta_vc "Grand Theft Auto: Vice City (Rockstar, 2003) " \ + e98c2d323dd0494989a844442586dc2d48fba8f9.iso \ + d31f5c35cc63d804a7ffdb212f550681b97ee5b3.iso + +load_gta_vc() { + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/e98c2d323dd0494989a844442586dc2d48fba8f9.iso + ahk_do " + SetTitleMatchMode, 2 + Run, ${ISO_MOUNT_LETTER}:Setup.exe + winwait, Choose Setup Language + sleep 1000 + Send {enter} + winwait, Grand Theft Auto Vice City, Welcome to the InstallShield Wizard + sleep 1000 + Send {enter} + winwait, Grand Theft Auto Vice City, License Agreement + sleep 1000 + Send !a + send {enter} + winwait, Grand Theft Auto Vice City, Customer Information + sleep 1000 + controlclick, edit1 + send $USERNAME + send {tab} + send company ; installer won't proceed without something here + send {enter} + winwait, Grand Theft Auto Vice City, Choose Destination Location + sleep 1000 + controlclick, Button1 + winwait, Grand Theft Auto Vice City, Select Components + sleep 1000 + controlclick, Button2 + winwait, Grand Theft Auto Vice City, Ready to Install the Program + sleep 1000 + send {enter} + winwait, Setup Needs The Next Disk, Please insert disk 2 + sleep 1000" + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/d31f5c35cc63d804a7ffdb212f550681b97ee5b3.iso + ahk_do " + sleep 1000 + send {enter} + winwait, Grand Theft Auto Vice City, InstallShield Wizard Complete + sleep 1000 + send {enter} + " + iso_umount + + if workaround_wine_bug 22414 + then + try "$WINETRICKS" -q quartz + fi +} + +#---------------------------------------------------------------- + +verblist_add half_life_goty "Half Life: Game of the Year Edition (Sierra, 2000) " \ + dc32c16bca6c19f14e3501e3be3e4a157ddbee20.iso + +load_half_life_goty() { + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/dc32c16bca6c19f14e3501e3be3e4a157ddbee20.iso + + ahk_do " + SetTitleMatchMode, 2 + Run, ${ISO_MOUNT_LETTER}:Setup.exe + winwait, System Test, Did you hear the sound file? + sleep 1000 + ControlClick, Button6, System Test, Did you hear the sound file? + winwait, Welcome, Welcome to the Half-Life Setup program. This program will install Half-Life on your computer. + sleep 1000 + ControlClick, Button1, Welcome, Welcome to the Half-Life Setup program. This program will install Half-Life on your computer. + winwait, Software License Agreement, Please read the following License Agreement. Press the PAGE DOWN key to see the rest of the agreement. + sleep 1000 + ControlClick, Button2, Software License Agreement, Please read the following License Agreement. Press the PAGE DOWN key to see the rest of the agreement. + winwait, Choose Destination Location, Setup will install Half-Life in the following folder. + sleep 1000 + ControlClick, Button1, Choose Destination Location, Setup will install Half-Life in the following folder. + winwait, Install, Setup has placed the Sierra Utilities in your Start Menu. + sleep 1000 + ControlClick, Button1, Install, Setup has placed the Sierra Utilities in your Start Menu. + winwait, Install, Setup has determined that there may be updates to your product available. + sleep 1000 + ControlClick, Button7, Install, Setup has determined that there may be updates to your product available. + winwait, Install, Please Register Now! + sleep 1000 + ControlClick, Button1, Install, Please Register Now! + winwait, Choose Method of Registration, Please choose a registration method + sleep 1000 + ControlClick, Button8, Choose Method of Registration, Please choose a registration method + winwait, Select Components, Please ensure you are running the latest drivers appropriate for your hardware + sleep 1000 + ControlClick, Button11, Select Components, Please ensure you are running the latest drivers appropriate for your hardware + winwait, Setup Complete, Setup has finished installing Half-Life on your computer. + sleep 1000 + ControlClick, Button1, Setup Complete, Setup has finished installing Half-Life on your computer. + Sleep 1000 + ControlClick, Button4, Setup Complete, Setup has finished installing Half-Life on your computer. + " + + # The key is put in on first run: + HALF_LIFE_GOTY_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/dc32c16bca6c19f14e3501e3be3e4a157ddbee20.txt` + cd $DRIVE_C/SIERRA/Half-Life + + # Forcefully closing the process later will screw up the screen resolution, so store the user's current resolution so we can restore it later: + current_res=`xrandr -q | awk -F'current' -F',' 'NR==1 {gsub("( |current)","");print $2}'` + + # FIXME: Not sure how reliable the ahk_class designation is... + ahk_do " + Run, hl.exe + winwait, ahk_class #32770 + sleep 1000 + ControlClick, Edit1, ahk_class #32770 + Send {RAW}$HALF_LIFE_GOTY_KEY + sleep 1000 + ControlClick, Button1, ahk_class #32770 + sleep 5000 + ; I tried closing it the nice way, with either PostMessage or Win_close, but neither worked + process, close, hl.exe + " + xrandr -s $current_res +} + +#---------------------------------------------------------------- + +verblist_add hordsoforcs2_demo "Hordes of Orcs 2 Demo (Freeverse, 2010) [download]" HoO2Demo.exe + +load_hordsoforcs2_demo() { + if ! test -f "$WISOTOOL_CACHE/$PACKAGE"/HoO2Demo.exe + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please visit http://www.fileplanet.com/216619/download/Hordes-of-Orcs-2-Demo, download HoO2Demo.exe, and place it in directory $WISOTOOL_CACHE/$PACKAGE" + fi + # FIXME: check sha1sum 1ba26d35697e359f89a30915140e471fadc675da + + cd "$WISOTOOL_CACHE/$PACKAGE" + + ahk_do " + SetTitleMatchMode, 2 + run HoO2Demo.exe + WinWait,Orcs + sleep 500 + ControlFocus, Button1, Hordes ; Next + sleep 500 + Send {Enter} + WinWait,Orcs,conditions + sleep 500 + ControlFocus, Button4, Hordes, agree + sleep 500 + Send {Space} + sleep 500 + ControlFocus, Button1, Hordes ; Next + sleep 500 + Send {Enter} + WinActivate,Orcs,files + sleep 500 + ControlFocus Button1, Hordes ; Next + sleep 500 + Send {Enter} + WinWait,Orcs,exist + sleep 500 + ControlFocus, Button1, Hordes ; Yes + sleep 500 + Send {Enter} + WinActivate,Orcs,T + sleep 500 + ControlFocus, Button1, Hordes ; Start + sleep 500 + Send {Enter} + WinWait,Orcs,E + sleep 500 + ControlFocus, Button2, successfully + sleep 500 + Send {Space} + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Hordes of Orcs 2 Demo" +HoO2.exe +__EOF__ +} + +#---------------------------------------------------------------- + +hbpdemoexe=Release_HBP_demo_PC_DD_DEMO_FINAL_348428.exe +verblist_add hphbp_demo "Harry Potter & The Half Blood Prince Demo (EA, 2009) [download]" $hbpdemoexe + +load_hphbp_demo() +{ + case "$LANG" in + ""|"C") die "Harry Potter won't install in the Posix locale; please do 'export LANG=en_US.UTF-8' or something like that" ;; + esac + + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/$hbpdemoexe" + then + download $PACKAGE http://largedownloads.ea.com/pub/demos/HarryPotter/Release_HBP_demo_PC_DD_DEMO_Final_348428.exe dadc1366c3b5e641454aa337ad82bc8c5082bad2 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, $hbpdemoexe + winwait, Harry Potter, Install + controlclick, Button1, Harry Potter + winwait, Setup, License + controlclick, Button1 + controlclick, Button3 + winwait, Setup, License + controlclick, Button1 + controlclick, Button3 + winwait, Setup, Destination + controlclick, Button1 + winwait, Setup, begin + controlclick, Button1 + winwait, Setup, Finish + controlclick, Button1 + " + cd "$olddir" + + # Not sure I trust putting \U2122 in a batch file, so use a wild card to cd to the right dir. + # Have to "cd pc" as next command, or the wildcard expansion fails on wine? + # Have to be in the pc directory for the app to find its files. + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd $programfilesdir_x86_win\\Electronic Arts\\Harry Potter and the Half-Blood Prince* Demo +cd pc +hp6_demo.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add hphbp "Harry Potter & The Half Blood Prince (EA, 2009)" 9590f4c4bf2d5e819014cd9b03a5d5408ae2cd7d.iso + +load_hphbp() +{ + case "$LANG" in + ""|"C") die "Harry Potter won't install in the Posix locale; please do 'export LANG=en_US.UTF-8' or something like that" ;; + esac + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/9590f4c4bf2d5e819014cd9b03a5d5408ae2cd7d.iso + HPHBP_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/9590f4c4bf2d5e819014cd9b03a5d5408ae2cd7d.txt | tr -d -` + ahk_do " + SetTItleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:EASetup.exe + winwait, Harry Potter + send {RAW}$HPHBP_KEY + controlclick, Button2 + winwait, Setup, License + controlclick, Button1 + controlclick, Button3 + winwait, Setup, License + controlclick, Button1 + controlclick, Button3 + winwait, Setup, Destination + controlclick, Button1 + winwait, Setup, begin + controlclick, Button1 + winwait, Setup, Finish + controlclick, Button1 + " + $WINESERVER -w + iso_umount + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd $programfilesdir_x86_win\Electronic Arts\Harry Potter and the Half-Blood Prince* +cd pc +hp6.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add hegemonypom_demo "Hegemony: Philip of Macedon Demo (Longbow Games, 2010) [download]" Hegemony_Philip_of_Macedon_Installer.exe + +load_hegemonypom_demo() +{ + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + cd "$WISOTOOL_CACHE/$PACKAGE" + + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/Hegemony_Philip_of_Macedon_Installer.exe" + then + download $PACKAGE http://www.longbowgames.com/downloads/Hegemony%20Philip%20of%20Macedon%20Installer.exe d3d2aa020d38b594d112360ae40871662d35dea4 + # Get rid of spaces in exe name, since download leaves them as %20's, and ahk_do might not make it easy to use quotes + mv Hegemony* Hegemony_Philip_of_Macedon_Installer.exe + fi + + ahk_do " + SetTitleMatchMode, 2 + run, Hegemony_Philip_of_Macedon_Installer.exe + winwait, Hegemony, installation + controlclick, Button2 + winwait, Hegemony, License + controlclick, Button2 + winwait, Hegemony, Components + controlclick, Button2 + winwait, Hegemony, Install Location + controlclick, Button2 + winwait, Hegemony, shortcuts + controlclick, Button2 + + Loop + { + ; Work around wine bug 24484 + IfWinExist, Log message, IKnownFolderManager + { + send {Enter} + } + ; Work around wine bug 21261 + IfWinExist, Log message, Games Explorer + { + send {Enter} + } + IfWinExist, Hegemony, has been installed + { + break + } + Sleep (2000) + } + + winwait, Hegemony, has been installed + controlclick, Button4 + controlclick, Button2 + " + cd "$olddir" +} + +#---------------------------------------------------------------- + +verblist_add help "How to use this tool" + +load_help() { + warn "If the game is not marked with {download} or {loaded} in the menu, you have to insert its disc and give the 'load' command before you can choose that game in the menu. If the game has multiple discs, you have to do this for each disc." + warn "If the game has an install key, you have to enter that when loading the first disc. (You have to do that from the commandline, e.g. sh wisotool load=XXXX-YYYY-ZZZZ.)" +} + +#---------------------------------------------------------------- + +honexe=HoNClient-1.0.12.1.exe +verblist_add hon "Heroes of Newerth (S2 Games, 2010) [download]" \ +$honexe + +load_hon() +{ + download $PACKAGE http://dl.heroesofnewerth.com/$honexe 27236eca37ac7b90fe80feaf9b2c0f8eb0e49701 + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, $honexe + winwait, Heroes of Newerth + controlclick, Button2, Heroes of Newerth + winwait, Heroes of Newerth, License + controlclick, Button2, Heroes of Newerth, License + winwait, Heroes of Newerth, Components + controlclick, Button2, Heroes of Newerth, Components + winwait, Heroes of Newerth, Install Location + controlclick, Button2, Heroes of Newerth, Install Location + winwait, Heroes of Newerth, Start Menu + controlclick, Button2, Heroes of Newerth, Start Menu + winwait, Heroes of Newerth, Finish + controlclick, Button2, Heroes of Newerth, Finish + " + cd "$olddir" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Heroes of Newerth" +hon.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add hod3_jp_demo "The House of the Dead 3 - Japanese - Demo (SEGA, 2005) (broken in wine-1.3.3?) [download]" hod3_trial.exe + +load_hod3_jp_demo() { + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/hod3_trial.exe" + then + download $PACKAGE http://www2.sega.co.jp/download/pc/hod3/hod3_trial.exe f616ac945bcbb5b897d24f3ce568c0f528801d05 + fi + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + ; Use slow matching because otherwise autohotkey cant find the 1-2-12 in the Asian text + SetTitleMatchMode, slow + run hod3_trial.exe + winwait, THE HOUSE OF THE DEAD 3,Windows + send {Enter} + winwait, THE HOUSE OF THE DEAD 3,1-2-12 + Send {Up} + Send {Space} + send {Enter} + winwait, THE HOUSE OF THE DEAD 3,SEGA + send {Enter} + winwaitclose + winwait, THE HOUSE OF THE DEAD 3 + send {Enter} + ; Installer crashes before putting up finished dialog, but app seems okay anyway + Loop + { + IfWinExist, THE HOUSE OF THE DEAD 3,Finish + { + WinActivate + Send {Enter} ; Finish (I hope, needs testing) + } + Process, Exist, hod3_trial.exe ; BmLauncher automatically starts after installation finished. + retVal = %ErrorLevel% + if retVal == 0 + { + ; installer has crashed or exited + break + } + ; work around hang on wine + if FileExist(\"$programfilesdir_x86_win\\SEGA\\THE HOUSE OF THE DEAD3_JP_TRIAL\\hod3launch.exe\") + { + Sleep (10000) + break + } + Sleep (2000) + } + " + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\SEGA\\THE HOUSE OF THE DEAD3_JP_TRIAL" +hod3launch.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add kq1vga "King Quest I VGA (AGD Interactive, 2009) [download]" Kq1vga40.exe + +# http://www.agdinteractive.com/games/kq1/download/download.html +# http://agdinteractive.com/countdl.php?action=download&game=11 +# See also http://en.wikipedia.org/wiki/AGD_Interactive + +load_kq1vga() { + download $PACKAGE http://www.glorianon.com/agdi/Kq1vga40.exe 68627cf51391a7000ba671253421b47dc2d57005 + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run Kq1vga40.exe + WinWait, King's Quest I Install Program - Welcome + Send {Enter} + WinWait, King's Quest I Install Program - Information + Send {Enter} + WinWait, King's Quest I Install Program - Agreement + ;Click 248, 275 ; check agree + ;Send !n ; Next + Send {Up}{Up}{Up}{Space} ; check agree + Send {Tab}{Enter} ; Next + WinWait, King's Quest I Install Program - Directory + Send {Enter} + IfNotExist, C:\\Program Files\\AGD Interactive\\King's Quest I + { + WinWait, King's Quest I Install Program, Do you want it to be created + Send {Enter} + } + WinWait, King's Quest I Install Program - Confirmation + Send {Enter} + WinWait, King's Quest I Install Program - End + ;Sleep 1000 + ;Click 184, 232 ; don't start game + ;Send {Esc} + ; Couldn't find a portable way to not start game, so let it start, then kill it + Send !x ; Exit + WinWait King's Quest I Launcher + WinClose + " + if workaround_wine_bug 23892 + then + ahk_do " + winwait Adventure Game Studio + send {Enter} + " + fi + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\AGD Interactive\\King's Quest I" +Kq1vga.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add lhp_demo "LEGO Harry Potter Demo [Years 1-4] (Travellers Tales / WB, 2010) [download]" LEGOHarryPotterDEMO.exe + +load_lhp_demo() +{ + case "$LANG" in + *UTF-8*|*utf8*) ;; + *) die "This installer fails in non-utf-8 locales. Try doing export LANG=en_US.UTF-8" + esac + + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/LEGOHarryPotterDEMO.exe" + then + download $PACKAGE http://static.kidswb.com/legoharrypottergame/LEGOHarryPotterDEMO.exe bb0a30ad9a7cc51c80e1bb1f3eec22e6ccc1a706 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, LEGOHarryPotterDEMO.exe + winwait, LEGO, language + controlclick, Button1 + winwait, LEGO, License + controlclick, Button1 + controlclick, Button2 + winwait, LEGO, installation method + controlclick, Button2 + winwait, LEGO, Finish + controlclick, Button1 + " + cd "$olddir" + + if workaround_wine_bug 23397 + then + warn "If you have sound problems, try switching to OSS sound in winecfg" + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\WB Games\\LEGO*" +LEGOHarryPotterDEMO.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add lol "League of Legends (Riot Games, 2009)" LeagueofLegends.exe + +load_lol() +{ +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=19141 +# http://www.leagueoflegends.com/ + + # Outer installer, fetches the latest client + if ! test -f "${WISOTOOL_CACHE}/${PACKAGE}/LeagueofLegends.exe" + then + download ${PACKAGE} http://l3cdn.riotgames.com/Installer/ProdSource.06_29_2010/LeagueofLegends.exe 89cb958c6430c7840c377b61cae7939a0d276249 + fi + + # Holy crap this is broken under Wine! Prepare for a workaround orgy + if workaround_wine_bug 20296 + then + warn "You'll need a patch from http://bugs.winehq.org/show_bug.cgi?id=20296 to avoid a crash when starting LoL" + fi + + if workaround_wine_bug 21870 + then + sh "$WINETRICKS" -q secur32 + fi + + if workaround_wine_bug 22152 + then + export GC_DONT_GC=1 + fi + + if workaround_wine_bug 24019 'wine-1.3.[2-9]|wine-1.3.1[0-9]' # fixed in wine-1.3.2 + then + # Avoid crash in downloader + warn "Please apply patch from wine bug 24019" + fi + + if workaround_wine_bug 24020 + then + # Avoid crash in downloader + sh "$WINETRICKS" -q vcrun2008 + fi + + if workaround_wine_bug 24025 + then + warn "The installer's background will be white. Known wine bug, no workaround yet. See http://bugs.winehq.org/show_bug.cgi?id=24025" + fi + + if ! test -d "$WISOTOOL_CACHE/$PACKAGE/LeagueofLegends" + then + cd "${WISOTOOL_CACHE}/${PACKAGE}" + ahk_do " + settitlematchmode, 2 + run, LeagueofLegends.exe + winwait, League of Legends Downloader, Where would you like to save League of Legends? + sleep 1000 + ; It doesn't always register this click... + while true + { + ifwinexist, League of Legends Downloader, Where would you like to save League of Legends? + { + sleep 1000 + controlclick, Static21, League of Legends Downloader, Where would you like to save League of Legends? + } + else + break + } + ; After it finishing download, move the files from $DRIVE_C/users/$LOGNAME/Desktop to $WISOTOOL_CACHE/$PACKAGE + winwaitclose, League of Legends Downloader + process, close, setup.exe + process, close, PMB.exe + " + # Cache the game files. Assumes that the Desktop directory is under C:\users\$USERNAME or the equivalent on Windows + # FIXME: Make this more generic(move out of this function, so others can use it) / test on XP and Vista+ + WINEDESKTOP="`$WINE cmd /c echo %USERPROFILE% | tr -d '\r' | sed 's,\\\\,\\\\\\\\,g'`" + DESKTOPDIR="`$XXXPATH -u $WINEDESKTOP`/Desktop" + mv "$DESKTOPDIR/LeagueofLegends" "$WISOTOOL_CACHE/$PACKAGE/" + fi + + cd "$WISOTOOL_CACHE/$PACKAGE/LeagueofLegends" + ahk_do " + settitlematchmode, 2 + run, Setup.exe + winwait, League of Legends, Welcome to the InstallShield Wizard + sleep 1000 + controlclick, Button1, League of Legends, Welcome to the InstallShield Wizard + winwait, League of Legends, I &accept the terms of the license agreement + sleep 1000 + controlclick, Button3, League of Legends, I &accept the terms of the license agreement + sleep 1000 + controlclick, Button1, League of Legends, I &accept the terms of the license agreement + winwait, League of Legends, Please select a setup type + sleep 1000 + controlclick, Button4, League of Legends, Please select a setup type + winwait, League of Legends, Click Install to begin + sleep 1000 + controlclick, Button1, League of Legends, Click Install to begin + winwait, League of Legends, Click Finish to exit the wizard + sleep 1000 + controlclick, Button1, League of Legends, Click Finish to exit the wizard + sleep 1000 + controlclick, Button4, League of Legends, Click Finish to exit the wizard + " + + if workaround_wine_bug 24015 + then + sh "$WINETRICKS" -q ie6 + fi + +cat > "${DRIVE_C}/run-${PACKAGE}.bat" << __EOF__ +C: +cd "C:\\Riot Games\\League of Legends" +lol.launcher.exe +__EOF__ + +set -x + # Run once to accept EULA and start autoupdater + rm -f "$DRIVE_C/Riot Games/League of Legends/patcher_lib.log" + cd "$DRIVE_C" + ahk_do " + SetTitleMatchMode, 2 + run, run-$PACKAGE.bat + winwait, League of Legends Launcher,Accept + send {Enter} + " + log="$DRIVE_C/Riot Games/League of Legends/patcher_lib.log" + # Wait for autoupdate to start + while true + do + sleep 5 + tail -n 2 "$log" + if test -f "$log" && ! tail -n 2 "$log" | grep "to .PATCHER_STATE_ALLTASKSCOMPLETE" + then + echo Downloader started + break + fi + done + + # Wait for autoupdate to finish + while true + do + sleep 5 + tail -n 2 "$log" + if tail -n 2 "$log" | grep "to .PATCHER_STATE_ALLTASKSCOMPLETE" + then + echo Downloader finished + break + fi + done + + ahk_do " + SetTitleMatchMode, 2 + winwait, League of Legends Launcher + winclose + " +} + +verblist_add lol_standalone "League of Legends standalone client (Riot Games, 2009)" 'StandAlone_9_21_2010_NA(with%20sse2%20fix).rar' + +load_lol_standalone() { + download ${PACKAGE} "http://l3cdn.riotgames.com/Installer/lol/StandAlone_9_21_2010_NA(with%20sse2%20fix).rar" 571f8fbb5bff31fe94f3f08280cb0ff6e432bde5 + mkdir -p "$DRIVE_C/Riot Games" + cd "$DRIVE_C/Riot Games" + try_unrar x "$WISOTOOL_CACHE/$PACKAGE/StandAlone_9_21_2010_NA(with%20sse2%20fix).rar" + +cat > "${DRIVE_C}/run-${PACKAGE}.bat" << __EOF__ +C: +cd "C:\\Riot Games\\StandAlone_9_21_2010_NA" +lol.launcher.exe +__EOF__ + + # Holy crap this is broken under Wine! Prepare for a workaround orgy + if workaround_wine_bug 20296 + then + warn "You'll need a patch from http://bugs.winehq.org/show_bug.cgi?id=20296 to avoid a crash when starting LoL" + fi + if workaround_wine_bug 21870 + then + warn "Please apply patch attached to bug 21870, or client will crash on start." + fi + if workaround_wine_bug 24102 # fixed in wine-1.3.3, but wine-1.3.3 crashes in secur32 on start? wine-1.3.1 is ok... + then + # Crashes on startup in wine below 1.3.3 without this + sh "$WINETRICKS" -q d3dx9_36 + fi + if workaround_wine_bug 24015 + then + sh "$WINETRICKS" -q ie6_full + fi + if workaround_wine_bug 24432 + then + sh "$WINETRICKS" -q vcrun2005 + fi +} + +#---------------------------------------------------------------- + +verblist_add lotsn "Launch of the Screaming Narwhal (Telltale Games / Lucasarts, 2009)" LaunchOfTheScreamingNarwhal_Setup.exe + +load_lotsn() +{ + if ! test -f "${WISOTOOL_CACHE}/${PACKAGE}/LaunchOfTheScreamingNarwhal_Setup.exe" + then + download ${PACKAGE} http://www.telltalegames.com/demo/launchofthescreamingnarwhal 8a9292d89fd5e7efe58e63dcfc84a05bf08ff1d6 LaunchOfTheScreamingNarwhal_Setup.exe + fi + + load_gecko + + cd "${WISOTOOL_CACHE}/${PACKAGE}" + chmod +x LaunchOfTheScreamingNarwhal_Setup.exe + ahk_do " + SetTitleMatchMode, 2 + run, LaunchOfTheScreamingNarwhal_Setup.exe + WinWait, Setup + ControlClick Button2 ; Next + WinWait, Setup, Checking DirectX + ControlClick Button5 ; Don't check + ControlClick Button2 ; Next + WinWait, Setup, License + ControlClick Button2 ; Agree + WinWait, Setup, Location + ControlClick Button2 ; Install + WinWait, Setup, has been installed + ControlClick Button4 ; uncheck Play Now + ControlClick Button2 ; Finish + WinWaitClose + " + cd "${olddir}" + + cat > "${DRIVE_C}/run-${PACKAGE}.bat" << __EOF__ +${programfilesdrive}: +cd "${programfilesdir_x86_win}\\Telltale Games\\Tales of Monkey Island\\Launch of the Screaming Narwhal" +MonkeyIsland101.exe +__EOF__ + + if workaround_wine_bug 22161 + then + # Crashes on startup without this + sh "$WINETRICKS" -q d3dx9_36 + fi +} + +#---------------------------------------------------------------- + +verblist_add lp2bench "Lost Planet 2 Benchmark (Capcom, 2010)" LostPlanet2_Benchmark.zip + +load_lp2bench() +{ + # http://news.bigdownload.com/2010/08/16/lost-planet-2-pc-due-out-on-october-15-benchmark-test-released/ + + if ! test -f "${WISOTOOL_CACHE}/${PACKAGE}/LostPlanet2_Benchmark.zip" + then + download ${PACKAGE} http://gamedaily.newaol.com/pub/LostPlanet2_Benchmark.zip 2c9862adc81974a61a450a1865cd60decd82587c + fi + + cd "${WISOTOOL_CACHE}/${PACKAGE}/" + + if ! test -f "${WISOTOOL_CACHE}/${PACKAGE}/LostPlanet2_Benchmark.exe" + then + try unzip "$WISOTOOL_CACHE/$PACKAGE"/LostPlanet2_Benchmark.zip + fi + + ahk_do " + SetTitleMatchMode, 2 + run LostPlanet2_Benchmark.exe + winwait, LOST PLANET 2 Benchmark + sleep 1000 + controlclick, Button1, LOST PLANET 2 Benchmark + winwait, LOST PLANET 2 Benchmark, Capcom and NVIDIA have worked + sleep 1000 + controlclick, Button1, LOST PLANET 2 Benchmark, Capcom and NVIDIA have worked + winwait, LOST PLANET 2 Benchmark, license agreement + sleep 1000 + controlclick, Button3, LOST PLANET 2 Benchmark, license agreement + sleep 1000 + controlclick, Button5, LOST PLANET 2 Benchmark, license agreement + winwait, LOST PLANET 2 Benchmark, Destination Folder + sleep 1000 + controlclick, Button1, LOST PLANET 2 Benchmark, Destination Folder + winwait, LOST PLANET 2 Benchmark, Ready to Install + sleep 1000 + controlclick, Button1, LOST PLANET 2 Benchmark, Ready to Install + winwait, LOST PLANET 2 Benchmark, InstallShield Wizard Completed + sleep 1000 + controlclick, Button3, LOST PLANET 2 Benchmark, InstallShield Wizard Completed + sleep 1000 + controlclick, Button1, LOST PLANET 2 Benchmark, InstallShield Wizard Completed + " + if workaround_wine_bug 21939 + then + sh "$WINETRICKS" -q wmp9 + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\CAPCOM\\LOST PLANET 2 Benchmark Version" +.\LP2DX9.exe +__EOF__ + + if workaround_wine_bug 24043 + then + warn "Benchmark crashes on launch, see http://bugs.winehq.org/show_bug.cgi?id=24043" + fi + +} + +#---------------------------------------------------------------- + +verblist_add lswcs "Lego Star Wars Complete Saga (Lucasarts, 2009)" dc5db10e2ad2892ba40015d3856d1d29dc55893a.iso + +load_lswcs() { + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/dc5db10e2ad2892ba40015d3856d1d29dc55893a.iso + ahk_do " + run ${ISO_MOUNT_LETTER}:setup.exe + SetTitleMatchMode, 2 + winwait, Choose Setup Language + send {Enter} + winwait, LEGO, License Agreement + send a{Enter} + winwait, LEGO, method + ControlClick Easy Installation + sleep 1000 + winwaitclose, LEGO + " + # Installer crashes at end (http://bugs.winehq.org/show_bug.cgi?id=22529) but this doesn't seem to hurt. + # Wait for all processes to exit, else unmount will fail + $WINESERVER -w + iso_umount + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\LucasArts\\LEGO Star Wars - The Complete Saga" +LEGOStarWarsSaga.exe +__EOF__ + + warn "This game is copy-protected, and requires the real disc in a real drive to run." +} + +#---------------------------------------------------------------- + +# Note: may require load_harder. Result may vary in length and checksum. + +verblist_add manhole "The Manhole Masterpiece Edition (Cyan, 1994)" \ + 39aea1267c2b2b22a7d5c1e9f86ea1f4461457e3.iso + +load_manhole() { + cd $WISOTOOL_TMP + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/39aea1267c2b2b22a7d5c1e9f86ea1f4461457e3.iso + mkdir -p "$DRIVE_C"/manhole + try cp -r "$ISO_MOUNT_ROOT"/* "$DRIVE_C"/manhole + iso_umount + + if workaround_wine_bug 22502 + then + warn "Run with wine-1.0 to avoid crash on startup. Also cancel when prompted to install Quicktime." + fi +} + +#---------------------------------------------------------------- + +verblist_add masseffect2 "Mass Effect 2 (BioWare, 2010)" \ + 4b817d67c8b7e8e7bc33f8cb6047210ab554fef6.iso \ + 49d1f9b85203049d52a8e34b92cd7d4b96e0c8be.iso + +load_masseffect2() { + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/4b817d67c8b7e8e7bc33f8cb6047210ab554fef6.iso + ME2_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/4b817d67c8b7e8e7bc33f8cb6047210ab554fef6.txt | tr -d -` + + if workaround_wine_bug 22091 + then + warn "Will probably hang at end of installer. If a crash dialog comes up, you can kill it, it's done." + try sh "$WINETRICKS" -q nocrashdialog + fi + + if workaround_wine_bug 23126 "wine-1.3.[0-9]*" + then + try sh "$WINETRICKS" -q vcrun2005 + fi + if workaround_wine_bug 23125 "wine-1.3.[0-9]*" + then + try sh "$WINETRICKS" d3dx10 + fi + if workaround_wine_bug 23151 + then + warn "Disabling glsl to workaround wine bug 23151. Users of nvidia cards will get weird effects without this. If you're on ATI/Intel, you can revert this with 'winetricks glsl-enable'" + try sh "$WINETRICKS" -q glsl-disable + fi + if workaround_wine_bug 22919 + then + try sh "$WINETRICKS" -q physx + fi + + ahk_do " + SetTitleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:Setup.exe + winwait, Installer Language + send {Enter} + winwait, Mass Effect + send {Enter} + winwait, Mass Effect, License + ControlClick, Button4 + ControlClick, Button2 + winwait, Mass Effect, Registration Code + send {RAW}$ME2_KEY + ControlClick, Button2 + winwait, Mass Effect, Install Type + ControlClick, Button2 + winwait, Insert Disc + " + sleep 5 + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/49d1f9b85203049d52a8e34b92cd7d4b96e0c8be.iso + ahk_do " + SetTitleMatchMode, 2 + winwait, Insert Disc + ControlClick, Button4 + ; on windows, the first click doesn't seem to do it, so press enter, too + sleep 1000 + send {Enter} + ; Some installs may not get to this point due to an installer hang/crash (bug 22919) + ; The hang/crash happens after the Physx install but does not seem to affect gameplay + loop + { + ifwinexist, Mass Effect, Finish + { + winkill, Mass Effect + break + } + Process, exist, Installer.exe + me2pid = %ErrorLevel% + if me2pid = 0 + break + sleep 1000 + } + " + if workaround_wine_bug 6971 + then + echo "See http://appdb.winehq.org/objectManager.php?sClass=version&iId=19125 for info on how to patch wine to work around bug 6971" + fi + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Mass Effect 2\Binaries" +MassEffect2.EXE +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add masseffect2_demo "Mass Effect 2 (BioWare, 2010)" MassEffect2DemoEN.exe + +load_masseffect2_demo() { + download ${PACKAGE} http://masseffect.bioware.com/cdn/A/ME2_DEMO/MassEffect2DemoEN.exe cda9a25387a98e29772b3ccdcf609f87188285e2 + + if workaround_wine_bug 22091 + then + warn "Will probably hang at end of installer. If a crash dialog comes up, you can kill it, it's done." + try sh "$WINETRICKS" -q nocrashdialog + fi + + if workaround_wine_bug 23126 "wine-1.3.[0-9]*" + then + try sh "$WINETRICKS" -q vcrun2005 + fi + if workaround_wine_bug 23125 "wine-1.3.[0-9]*" + then + try sh "$WINETRICKS" d3dx10 + fi + if workaround_wine_bug 23151 + then + warn "Disabling glsl to workaround wine bug 23151. Users of nvidia cards will get weird effects without this. If you're on ATI/Intel, you can revert this with 'winetricks glsl-enable'" + try sh "$WINETRICKS" -q glsl-disable + fi + if workaround_wine_bug 22919 + then + try sh "$WINETRICKS" -q physx + fi + + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + case "$OS" in + "Windows_NT") + cp "$WISOTOOL_CACHE/$PACKAGE/MassEffect2DemoEN.exe" "$WISOTOOL_TMP" ;; + *) + ln -sf "$WISOTOOL_CACHE/$PACKAGE/MassEffect2DemoEN.exe" "$WISOTOOL_TMP" ;; + esac + cd "$WISOTOOL_TMP" + ahk_do " + SetTitleMatchMode, 2 + run, MassEffect2DemoEN.exe + winwait, Mass Effect 2 Demo + Sleep 1000 + send {Enter} + winwait, Mass Effect 2 Demo, conflicts + Sleep 1000 + send {Enter} + winwait, Mass Effect, License + ControlClick, Button4 + ;ControlClick, Button2 + send {Enter} + winwait, Mass Effect, Install Type + ControlClick, Button2 + ; Some installs may not get to this point due to an installer hang/crash (bug 22919) + ; The hang/crash happens after the Physx install but does not seem to affect gameplay + loop + { + ifwinexist, Mass Effect, Finish + { + winkill, Mass Effect + break + } + Process, exist, Installer.exe + me2pid = %ErrorLevel% + if me2pid = 0 + break + sleep 1000 + } + " + if workaround_wine_bug 6971 + then + echo "See http://appdb.winehq.org/objectManager.php?sClass=version&iId=19125 for info on how to patch wine to work around bug 6971" + fi + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Mass Effect 2 Demo\\Binaries" +MassEffect2.EXE +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add maxmagicmarker_demo "Download: Max & the Magic Marker Demo (2010) [download]" max_demo_pc.zip + +load_maxmagicmarker_demo() { + + download $PACKAGE http://www.maxandthemagicmarker.com/maxdemo/max_demo_pc.zip 1a79c583ff40e7b2cf05d18a89a806fd6b88a5d1 + + try mkdir "$programfilesdir_x86_unix"/$PACKAGE + cd "$programfilesdir_x86_unix"/$PACKAGE + try unzip "$WISOTOOL_CACHE/$PACKAGE"/max_demo_pc.zip + # Work around bug in game?! + mv "max and the magic markerdemo pc" "max and the magic markerdemo pc"_Data + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\$PACKAGE" +max and the magic markerdemo pc.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add metro2033 "Metro 2033 (THQ, 2010)" 3de89e07449c2573cd4a334b0cd7da012a98f97c.iso + +load_metro2033() { + warn "You'll need to have STEAM_USER/STEAM_PASS set in your environment or in $WISOTOOL_CACHE. You'll also need your cd-key for Metro 2033 already added to your Steam Account." + + if [ ! "$STEAM_USER" -a ! -f "$WISOTOOL_CACHE"/STEAM_USER ] + then + die "You need to set STEAM_USER variable in your environment or put it in "$WISOTOOL_CACHE"/STEAM_USER" + elif [ ! "$STEAM_USER" -a -f "$WISOTOOL_CACHE"/STEAM_USER ] + then + STEAM_USER=`cat "$WISOTOOL_CACHE"/STEAM_USER` + fi + + if [ ! "$STEAM_PASS" -a ! -f "$WISOTOOL_CACHE"/STEAM_PASS ] + then + die "You need to set STEAM_PASS variable in your environment or put it in "$WISOTOOL_CACHE"/STEAM_PASS" + elif [ ! "$STEAM_PASS" -a -f "$WISOTOOL_CACHE"/STEAM_PASS ] + then + STEAM_PASS=`cat "$WISOTOOL_CACHE"/STEAM_PASS` + fi + + steam_dir="$programfilesdir_unix/Steam" + + # Game uses Steam to install itself + try sh $WINETRICKS -q steam + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/3de89e07449c2573cd4a334b0cd7da012a98f97c.iso + METRO_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/3de89e07449c2573cd4a334b0cd7da012a98f97c.txt | tr -d -` + + cd "$steam_dir" + + # Run Steam, let it update. Then, in a separate thread, run the installer. + ahk_do " + SetTitleMatchMode, 2 + SetControlDelay -1 + run, Steam.exe -login $STEAM_USER $STEAM_PASS + Winwait, Steam - Update News + ; Close all windows, prevent conflicts with later controlclick's + winclose, Steam - Update News + winclose, Steam + " + + ahk_do " + Run, Steam.exe -install I:\\ + ; Install Metro 2033 + winwait, Install - Metro 2033 + send, {Enter} + ; Shortcuts + sleep 10000 + winwait, Install - Metro 2033 + send, {Enter} + ; Installing... + sleep 10000 + winwait, Install - Metro 2033 + send, {Enter} + " + + # Wait for install to finish + dl_log="$steam_dir/logs/download_log.txt" + while true + do + grep "SetHasAllLocalContent(true) called for 43110" "$dl_log" && break + sleep 15 + done + + ahk_do " + send {Enter} + sleep 1000 + run, Steam.exe -shutdown + " + + warn "You'll need the Xinput2 patch from http://bugs2.winehq.org/attachment.cgi?id=29313 to be able to use the mouse." + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Steam" +Steam.exe -login $STEAM_USER $STEAM_PASS -applaunch 43110 +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add mise "Monkey Island: Special Edition (LucasArts, 2009)" SecretOfMonkeyIslandSE_ddsetup.zip + +load_mise() { + # Archive SHA1SUM 2e32458698c9ec7ebce94ae5c57531a3fe1dbb9e + if [ ! -f "$WISOTOOL_CACHE/$PACKAGE/SecretOfMonkeyIslandSE_ddsetup.zip" ] + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Download the game from http://www.direct2drive.com/8241/product/Buy-The-Secret-of-Monkey-Island(R):-Special-Edition-Download and place in $WISOTOOL_CACHE/$PACKAGE. Place the activation code in activationcode.txt in that directory, too." + fi + + if workaround_wine_bug 22161 + then + # Doesn't crash, but you only get a black screen and a flood of d3dx fixme's without native d3dx9_36 + sh "$WINETRICKS" -q d3dx9_36 + fi + + if workaround_wine_bug 24545 + then + # Game wants to install directx, but we delete it. It really only needs xact for x3daudio?_?.dll + sh "$WINETRICKS" -q xact + fi + + if workaround_wine_bug 24547 + then + # It really does need vcrun2005, for msvp80.dll (and potentially one stub from msvcr80) + sh "$WINETRICKS" -q vcrun2005 + fi + + cd "$WISOTOOL_TMP" + mkdir $PACKAGE + cd $PACKAGE + + # Don't extract DirectX/dotnet35 installers, they just take up extra time and aren't needed. Luckily, MISE copes well and just skips them if they are missing: + try unzip "$WISOTOOL_CACHE/$PACKAGE"/SecretOfMonkeyIslandSE_ddsetup.zip -x DirectX* dotnet* + + ahk_do " + SetTitleMatchMode, 2 + run, setup.exe + WinWait, The Secret of Monkey Island, This wizard will guide you + sleep 1000 + ControlClick, Button2 + WinWait, The Secret of Monkey Island, License Agreement + sleep 1000 + ControlSend, RichEdit20A1, {CTRL}{END} + sleep 1000 + ControlClick, Button4 + sleep 1000 + ControlClick, Button2 + WinWait, The Secret of Monkey Island, Setup Type + sleep 1000 + ControlClick, Button2 + WinWait, The Secret of Monkey Island, Click Finish + sleep 1000 + ControlClick, Button2 + " + + cd "$olddir" + + # Activate + if test -f "$WISOTOOL_CACHE"/$PACKAGE/activationcode.txt + then + MISE_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/activationcode.txt` + ahk_do " + SetTitleMatchMode, 2 + run, $programfilesdir_x86_win\\LucasArts\\The Secret of Monkey Island Special Edition\\MISE.exe + winwait, Product Activation + ControlClick, Edit1 ; Activation Code + send $MISE_KEY + ControlClick Button4 ; Activate Online + winwait, Product Activation, SUCCESSFUL + winClose + " + elif test -f "$WISOTOOL_CACHE"/$PACKAGE/unlockcode.txt + then + MISE_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/unlockcode.txt` + ahk_do " + SetTitleMatchMode, 2 + run, $programfilesdir_x86_win\\LucasArts\\The Secret of Monkey Island Special Edition\\MISE.exe + winwait, Product Activation + ControlClick, Edit3 ; Unlock Code + send $MISE_KEY + ControlClick Button6 ; Activate manual + winwait, Product Activation, SUCCESSFUL + winClose + " + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\LucasArts\\The Secret of Monkey Island Special Edition" +MISE.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add moh_beta "Medal of Honor: Beta (EA, 2010) [download]" MOHMP_Beta_PC_Client_R2_550504_Installer.zip + +load_moh_beta() +{ + # Archive SHA1SUM 7585700202ec305017038be4f1cb8ee1b43c24a2 + file="$WISOTOOL_CACHE/$PACKAGE/MOHMP_Beta_PC_Client_R2_550504_Installer.zip" + test -f "$file" || file="$WISOTOOL_CACHE/$PACKAGE/MOH-MPBetaClient_R2550504_Installer.zip" + if ! test -f "$file" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Download the beta from http://medalofhonor.com/beta or http://www.fileplanet.com/213429/210000/fileinfo/Medal-of-Honor---Multiplayer-Beta-Client and place in $WISOTOOL_CACHE/$PACKAGE" + fi + + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + try unzip -o "$file" -d "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_TMP/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, setup.exe + winwait, Medal of Honor, will install + controlclick, Button1 + winwait, Medal of Honor, License + controlclick, Button1 + controlclick, Button3 + winwait, Medal of Honor, License + controlclick, Button1 + controlclick, Button3 + winwait, Medal of Honor, shortcuts + controlclick, Button1 + winwait, Medal of Honor, Before continuing + controlclick, Button1 + winwait, Medal of Honor, Finish + controlclick, Button1 + " + + # Game defaults to Dx10. Must force DxVersion=9 + # This is identical to the BFBC2 bug. Should I file an app specific bug? + if workaround_wine_bug 22762 + then + cd "$DRIVE_C/users/$USERNAME/My Documents" + if test -f "Medal of Honor MP Beta"/settings.ini + then + mv "Medal of Honor MP Beta"/settings.ini "Medal of Honor MP Beta"/oldsettings.ini + sed 's,DxVersion=auto,DxVersion=9,; + s,Fullscreen=true,Fullscreen=false,' "Medal of Honor MP Beta"/oldsettings.ini > "Medal of Honor MP Beta"/settings.ini + else + mkdir -p "Medal of Honor MP Beta" + echo "[Graphics]" > "Medal of Honor MP Beta"/settings.ini + echo "DxVersion=9" >> "Medal of Honor MP Beta"/settings.ini + fi + fi + + cd "$olddir" + + # fixme: Try to find a way to script this? + warn "After you sign up at http://medalofhonor.com/beta, you will receive a beta key which you will need to enter the first time you run the game." + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Electronic Arts\\Medal of Honor MP Beta" +MoHMPGame.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add morrowind "The Elder Scrolls III: Morrowind (Bethesda, 2002)" \ + c8368ed30d3f3fcd7fccf8bffcfcdf0a6d4cb68b.iso + +load_morrowind() { + cd $WISOTOOL_TMP + # FIXME: Untested on Windows! + + # FIXME: Only supports the main installer, and the construction set (which follows automatically) + # eventually should support the expansions as well + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/c8368ed30d3f3fcd7fccf8bffcfcdf0a6d4cb68b.iso + ahk_do " + SetTitleMatchMode, 2 + Run, ${ISO_MOUNT_LETTER}:Setup.exe + winwait, The Elder Scrolls III: Morrowind Setup, The Elder Scrolls III: Morrowind (License Agreement) + sleep 1000 + controlclick, Button2 + winwait, The Elder Scrolls III: Morrowind Setup, Please read the following important information. + sleep 1000 + controlclick, Button1 + winwait, The Elder Scrolls III: Morrowind Setup, Setup will install Morrowind in the following folder. + sleep 1000 + controlclick, Button1 + winwait, The Elder Scrolls III: Morrowind Setup, Setup has enough information to start copying the program files. + sleep 1000 + controlclick, Button1 + + ; Then launched construction set setup + winwait, The Elder Scrolls Construction Set Setup, The Elder Scrolls Construction Set (License Agreement) + sleep 1000 + Controlclick, Button2 + ; No confirm screen? (FIXME: verify on windows) + winwait, The Elder Scrolls Construction Set Setup, Setup has enough information to start copying the program files + sleep 1000 + controlclick, Button1 + winwait, The Elder Scrolls Construction Set Setup, Setup has finished installing TES Construction Set on your computer. + sleep 1000 + controlclick, Button4 + + ; Exits the Construction set setup on its own, and goes back to main installer + ; The text box is split into two lines separately, not using word wrap, hence the weird sentence.. + winwait, Question, Would you like to register Morrowind online now? Make sure + sleep 1000 + controlclick, Button2 + ; Sometimes finicky here, short sleep here works around it + Sleep 10000 + winwait, The Elder Scrolls III: Morrowind Setup, Setup has finished installing Morrowind on your computer. + sleep 1000 + controlclick, Button4 + winwait, Information, You have installed Windows XP, which includes DirectX 8.1 + sleep 1000 + ControlClick, Button1 + + exit 0" + + sleep 30s + iso_umount + cd "$olddir" +} + +#---------------------------------------------------------------- + +mnbw_demo_exe=mb_warband_setup_1113.exe +verblist_add mnbw_demo "Mount & Blade Warband Demo (Taleworlds, 2010) [download]" ${mnbw_demo_exe} + +load_mnbw_demo() +{ + if ! test -f "${WISOTOOL_CACHE}/${PACKAGE}/${mnbw_demo_exe}" + then + download ${PACKAGE} http://download.taleworlds.com/${mnbw_demo_exe} + fi + cd "${WISOTOOL_CACHE}/${PACKAGE}" + chmod +x ${mnbw_demo_exe} + ahk_do " + SetTitleMatchMode, 2 + run, ${mnbw_demo_exe} + WinWait, Warband + ControlClick, Button2, Warband + WinWait, Warband + ControlClick, Button2, Warband + WinWait, Warband, Finish + ControlClick, Button4, Warband + ControlClick, Button2, Warband + " + cd "${olddir}" + cat > "${DRIVE_C}/run-${PACKAGE}.bat" << __EOF__ +${programfilesdrive}: +cd "${programfilesdir_x86_win}\\Mount&Blade Warband" +mb_warband.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add nd23_saw_demo "Nancy Drew 23: Shadow at the Waters Edge Demo (Her Interactive, 2010)" SAW_demo1.zip + +load_nd23_saw_demo() { + # http://www.herinteractive.com/Mystery_Games/Nancy_Drew/Shadow_at_the_Waters_Edge/pc + download $PACKAGE http://www.herinteractive.com/games/saw/SAW_demo1.zip 29975be19c99f7707c4da218b60e2ed0d70bf4a7 + + cd "$DRIVE_C" + mkdir $PACKAGE + cd $PACKAGE + try unzip "$WISOTOOL_CACHE/$PACKAGE"/SAW_demo1.zip + + if workaround_wine_bug 24754 + then + try sh "$WINETRICKS" -q d3dx9_36 + fi + cat > "${DRIVE_C}/run-${PACKAGE}.bat" << __EOF__ +c: +cd "${PACKAGE}" +Shadow.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add nfsps_demo "Need For Speed: Pro Street Demo (EA, 2007)" nfsps_pcdemo.exe + +load_nfsps_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/ps_pcdemo.exe" + then + download $PACKAGE http://largedownloads.ea.com/pub/demos/NFS/prostreet/nfsps_pcdemo.exe 9cf74563d28c29a40920e0c0644c2da6e8e2a888 + fi + + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, nfsps_pcdemo.exe + winwait, ProStreet, folder + send $WISOTOOL_TMP_WIN\\$PACKAGE + controlclick, Button2 + winwait, ProStreet, View the readme + controlclick, Button1 + winwait, ProStreet, License + controlclick, Button1 + controlclick, Button3 + winwait, ProStreet, License + controlclick, Button1 + controlclick, Button3 + winwait, ProStreet, Destination + controlclick, Button1 + winwait, ProStreet, Ready + controlclick, Button1 + winwait, ProStreet, Finish + controlclick, Button1 + winwait, ProStreet, completed, + controlclick, Button7 + controlclick, Button4 + " + cd "$olddir" + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Electronic Arts\\Need for Speed ProStreet Demo" +nfsdemo.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add nfsshift "Need For Speed: Shift (EA, 2009)" 83d3b7499742ccf77da11fc2613de422c6f30572.iso + +load_nfsshift() +{ + if workaround_wine_bug 23324 + then + msvcrun_me_harder=" + winwait, Microsoft + controlclick, Button1 + " + else + msvcrun_me_harder="" + fi + + NFSSHIFT_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/83d3b7499742ccf77da11fc2613de422c6f30572.txt | tr -d -` + iso_mount "$WISOTOOL_CACHE/$PACKAGE/83d3b7499742ccf77da11fc2613de422c6f30572.iso" + ahk_do " + SetTitleMatchMode, 2 + ; note: if this is the second run, the installer skips the registration code prompt + run, ${ISO_MOUNT_LETTER}:EASetup.exe + ; Not sure which of two or three dialogs happens next + loop + { + if winexist, SHIFT, Registration Code + { + send {RAW}$NFSSHIFT_KEY + Sleep 1000 + ;controlclick, Button2 + send {Enter} + break + } + if winexist, Microsoft + break + if winexist, Setup, License + break + sleep 1000 + } + $msvcrun_me_harder + winwait, Setup, License + Sleep 1000 + ;controlclick, Button1 ; Accept Doesn't work on vista + send a ; Accept + Sleep 1000 + send {Enter} + winwait, Setup, License + Sleep 1000 + controlclick, Button1 + Sleep 1000 + send {Enter} + winwait, Setup, Destination + Sleep 1000 + controlclick, Button1 + winwait, Setup, begin + Sleep 1000 + controlclick, Button1 + winwait, Setup, Finish + Sleep 1000 + controlclick, Button5 + ;controlclick, Button1 ; Finish + send {Enter} ; Finish doesn't respond to click on vista? + " + iso_umount + + download $PACKAGE http://cdn.needforspeed.com/data/downloads/shift/SHIFTPCPATCHV1.02_NA.exe 3ec2bf46aeb223c369ffcb0b57c080fba67d5dd9 + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run SHIFTPCPATCHV1.02_NA.exe + WinWait Updating + WinWaitClose Updating + " + + # Need path on shift.exe, see bug 23319 + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Electronic Arts\\Need for Speed SHIFT" +.\shift.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add nfsshift_demo "Need For Speed: SHIFT Demo (EA, 2009) [download]" NFSSHIFTPCDEMO.exe + +load_nfsshift_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/NFSSHIFTPCDEMO.exe" + then + download $PACKAGE http://cdn.needforspeed.com/data/downloads/shift/NFSSHIFTPCDEMO.exe 7b267654d08c54f15813f2917d9d74ec40905db7 + fi + + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + # FIXME: use ln -s on Linux (in case user has run 'winetricks sandbox'), + # but run the package from the cache on Windows + cp "$WISOTOOL_CACHE/$PACKAGE/NFSSHIFTPCDEMO.exe" "$WISOTOOL_TMP" + cd "$WISOTOOL_TMP" + ahk_do " + SetTitleMatchMode, 2 + SetTitleMatchMode, slow + run, NFSSHIFTPCDEMO.exe + winwait, WinRAR + send $PACKAGE + ControlClick, Button2 + winwait, SHIFT, View the readme + controlclick, Button1 + ; Not all systems need the Visual C++ runtime + loop + { + ifwinexist, Visual C++ + { + controlclick, Button1 + break + } + ifwinexist, Setup, SHIFT Demo License + { + break + } + sleep 1000 + } + winwait, Setup, SHIFT Demo License + Sleep 1000 + send {Space} + Sleep 1000 + send {Enter} + winwait, Setup, DirectX + Sleep 1000 + send {Space} + Sleep 1000 + send {Enter} + winwait, Setup, Destination + Sleep 1000 + send {Enter} + winwait, Setup, begin + Sleep 1000 + controlclick, Button1 + winwait, Setup, Finish + Sleep 1000 + controlclick, Button5 + controlclick, Button1 + " + cd "$olddir" + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Electronic Arts\\Need for Speed SHIFT Demo" +shiftdemo.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add oblivion "Elder Scrolls: Oblivion (Bethesda Game Studios, 2006)" 0c6826d55029e7b64150ebe804220284962657e1.iso + +load_oblivion() +{ + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/0c6826d55029e7b64150ebe804220284962657e1.iso + + ahk_do " + SetTitleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:Setup.exe + winwait, Oblivion, Welcome to the + controlclick, Button1 + winwait, Oblivion, License Agreement + controlclick, Button3 + controlclick, Button1 + winwait, Oblivion, Choose Destination + controlclick, Button1 + winwait, Oblivion, Ready to Install + controlclick, Button1 + winwait, Oblivion, Complete + controlclick, Button1 + controlclick, Button2 + controlclick, Button3 + " + iso_umount + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Bethesda Softworks Oblivion\\Oblivion" +Oblivion.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add orangebox "Orange Box (Valve, 2007) " \ + 976f67eec4b84331de8f6695272bc9192466da6a.iso \ + b86c9297cc4c56e98f8c3f3e489091ffa4b4a11d.iso + +load_orangebox() { + test -f "$programfilesdir_x86_unix"/Steam/Steam.exe || try sh $WINETRICKS -q steam + # Have to log in before you can install orangebox! + $WINE 'c:\Program Files\Steam\Steam' -login $STEAMUSER $STEAMPW + # Now, um, let it log in for a few seconds. Anyone know how to tell when it's done? + sleep 45 + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/976f67eec4b84331de8f6695272bc9192466da6a.iso + KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/976f67eec4b84331de8f6695272bc9192466da6a.txt | tr -d -` + ahk_do " + SetTitleMatchMode, 2 + Run, ${ISO_MOUNT_LETTER}:Setup.exe + winwait, ahk_class #32770 + MouseMove, 300, 365 + ; user has to click Install; I can't script it! + + ; FIXME: only do these steps on first run; if you've + ; already activated Orange Box on your account, + ; these don't show up. + ;winwait, Activation + ;MouseMove, 60, 400 + ;Click + ;Sleep 300 + ;setKeyDelay, 300 + ;sendEvent {Raw}$KEY + ;; Skip notice about Team Fortress guest passes + ;winwait, News + ;MouseMove, 650, 800 + ;Click + ;winwait, Activation + ;MouseMove, 310, 565 + ;Click + + winwait, Install + sendEvent {Enter} + ; wait for "create start menu and install" question + sleep 5000 + sendEvent {Enter} + winwait, Insert + " + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/b86c9297cc4c56e98f8c3f3e489091ffa4b4a11d.iso + + ahk_do " + SetTitleMatchMode, 2 + Send {Enter} + winwait, ahk_class MsiDialogCloseClass, Please insert + " + iso_umount + + # FIXME: how to tell when update is done? Probably have to launch all games once + # the the commandline option to exit immediately. +} + +#---------------------------------------------------------------- + +verblist_add osmos_demo "Osmos demo (Hemisphere Games, 2009) [download]" OsmosDemo_Installer_1.5.6.exe + +load_osmos_demo() { + + download $PACKAGE http://gamedaily.newaol.com/pub/OsmosDemo_Installer_1.5.6.exe 7568f97100a73985a0fd625b63b205f4477578e8 + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run OsmosDemo_Installer_1.5.6.exe + winwait, Osmos Demo Setup, License Agreement + sleep 500 + controlclick, Button2, Osmos Demo Setup, License Agreement + winwait, Osmos Demo Setup, Choose Install Location + sleep 500 + controlclick, Button2, Osmos Demo Setup, Choose Install Location + winwait, Osmos Demo Setup, Choose Start Menu Folder + sleep 500 + controlclick, Button2, Osmos Demo Setup, Choose Start Menu Folder + winwait, Osmos Demo Setup, Installation Complete + sleep 500 + controlclick, Button2, Osmos Demo Setup, Installation Complete + " + + if workaround_wine_bug 24416 + then + sh "$WINETRICKS" -q vcrun2005 + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\OsmosDemo" +OsmosDemo.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add pcmark04 "PC Mark 04 (Futuremark, 2004) [download]" PCMark04_v130_installer.exe + +load_pcmark04() { + # http://www.futuremark.com/download/pcmark04/ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/PCMark04_v130_installer.exe" + then + die "Sorry, you have to download PCMark04_v130_installer.exe yourself and put it in $WISOTOOL_CACHE/$PACKAGE/PCMark04_v130_installer.exe" + fi + + warn "Please don't use mouse while this installer is running. Sorry..." + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run PCMark04_v130_installer.exe + ; Skip past the two windows warning about WMP9 etc. + WinWait, Information + Send {Enter} + WinWaitClose, Information + WinWait, Information + Send {Enter} + + WinWait ahk_class #32770, Welcome + Send {Enter} + WinWait, ahk_class #32770, License + Send a ; Accept + Send {Enter} ; Next + Sleep 3000 ; Wait for Destination window + Send {Enter} + Sleep 3000 ; Wait for Install window + Send {Enter} + ; Wait for install to finish + WinWait, PCMark04, Registration + ; Purchase later + ; This window won't activate any other way! + MsgBox, 32, , Preparing your dungeon. Why not enjoy a delicious slime mold while you wait?, 1 + Send {Enter} + Sleep 3000 + ; Uncheck readme + Send {Space} + Send {Tab} + Send {Tab} + Send {Enter} + " + if workaround_wine_bug 22402 + then + warn "You may need to apply the patch from bug 22402 to avoid a crash in the tumbling blocks test." + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Futuremark\PCMark04" +PCMark04 +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add pcmark05 "PC Mark 05 (Futuremark, 2005) [download]" PCMark05_v120_1901.exe + +load_pcmark05() { + # http://www.futuremark.com/download/pcmark05/ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/PCMark05_v120_1901.exe" + then + download $PACKAGE http://www.bulletproofnerds.com/uploadedfiles/futuremark/PCMark05_v120_1901.exe 8636fce0e4023cd59bcf7f3e1a027e233ee81193 + fi + + warn "Don't use mouse while this installer is running. Sorry..." + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run PCMark05_v120_1901.exe + ; Skip past the two windows warning about WMP10 etc. + WinWait, Information + Send {Enter} + WinWaitClose, Information + WinWait, Information + Send {Enter} + + WinWait ahk_class #32770, Welcome + Send {Enter} + WinWait, ahk_class #32770, License + Send a ; Accept + Send {Enter} ; Next + Sleep 3000 ; Wait for 2nd Welcome window + Send {Enter} + Sleep 3000 ; Wait for Destination window + Send {Enter} + Sleep 3000 ; Wait for Install window + Send {Enter} + ; Wait for install to finish + WinWait, PCMark05, Registration + ; Purchase later + ; This window won't activate any other way! + MsgBox, 32, , Preparing your dungeon. Why not enjoy a delicious slime mold while you wait?, 1 + Send {Enter} + Sleep 2000 + ; Uncheck readme + Send {Space} + Send {Tab} + Send {Tab} + Send {Enter} + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Futuremark\PCMark05" +PCMark05 +__EOF__ +} + +#---------------------------------------------------------------- + +# Not finished +#verblist_add passmark7 "Performance Test 7 (Passmark, 2010) [download]" petst.exe + +load_passmark7() { + # http://www.passmark.com/download/pt_download.htm + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/petst.exe" + then + download $PACKAGE http://www.passmark.com/ftp/petst.exe 6d9db9c1bc53452cf7a2d3ad07a1195218095f8f + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run petst.exe + " + warn "TODO: finish." +} + +#---------------------------------------------------------------- + +verblist_add pscs5 "Photoshop CS5 Demo (Adobe, 2010)" \ + Photoshop_12_LS1.7z \ + Photoshop_12_LS1.exe + + +load_pscs5() { + try cd "$WISOTOOL_CACHE/$PACKAGE" + if [ ! -f "$WISOTOOL_CACHE/$PACKAGE/Photoshop_12_LS1.7z" ] + then + die "You must download Photoshop CS5 trial files and put them in $WISOTOOL_CACHE/$PACKAGE" + else + verify_sha1sum 0d8fac96f32963194add553b8ca072c40ca4b912 Photoshop_12_LS1.7z + fi + if [ ! -f "$WISOTOOL_CACHE/$PACKAGE/Photoshop_12_LS1.exe" ] + then + die "You must download Photoshop CS5 trial files and put them in $WISOTOOL_CACHE/$PACKAGE" + else + verify_sha1sum abbfeeef9348c79b6cdde5f8762f5c3f96d32f6e Photoshop_12_LS1.exe + fi + + try Photoshop_12_LS1.exe /s /x /d . + try cd "Adobe CS5" + + if workaround_wine_bug 22679 + then + try sh "$WINETRICKS" -q msxml3 + fi + + warn "Try not to have anything else running, cs5 will complain if firefox is running, and the mouse clicks here are sensitive" + + # Doesn't have clickable buttons, resorting to window positions. May break on non standard dpi settings. + # Not sure how to detect when the window changes. They all have the same title, and no text is visible to AHK. + # As a dirty workaround, may try detecting the color on the left side which shows the menu. The current step is darker + # than the rest. + ahk_do " + SetTitleMatchMode, 2 + run Set-up.exe + winwait, Adobe Photoshop CS5 + sleep 2000 + ControlClick, X750 Y550, Adobe Photoshop CS5 + sleep 2000 + winwait, Adobe Photoshop CS5 + sleep 2000 + ControlClick, X300 Y350, Adobe Photoshop CS5 + sleep 2000 + ControlClick, X700 Y340, Adobe Photoshop CS5 + Send, {Down}{Down}{Enter} ; Choose US English + sleep 2000 + ControlClick, X750 Y550, Adobe Photoshop CS5 + sleep 2000 + winwait, Adobe Photoshop CS5 + sleep 2000 + ControlClick, X750 Y550, Adobe Photoshop CS5 + ; Installs in about 5 minutes here, but that's not a reliable number. + ; The final window is indistinguishable from the previous, except that it has a button that the former does not. + ; Exploit that to close the installer gracefully. + Loop + { + ; Loop every 30 seconds while the installer window is present, and try to click the 'Done' button. + ; If the window doesn't exist, installer is finally done. + IfWinExist, Adobe Photoshop CS5 + { + ControlClick, X750 Y550, Adobe Photoshop CS5 + Sleep 30000 + } + else break + } + " + try cd .. + # Remove installer temp files: + try cd "$WISOTOOL_CACHE/$PACKAGE" + try rm -rf "Photoshop CS5 Read Me.pdf" "Adobe CS5" + try cd "$olddir" +} + +verblist_add pscs5_pickle "Photoshop CS5 Demo (Adobe, 2010)" + +load_pscs5_pickle() { + warn "This will tar up Photoshop CS5's files from a Windows install, along with needed registry entries, for use in wine with load_pscs5_unpickle()" + + if [ ! -d "$programfilesdir_x86_win/Adobe/Adobe Photoshop CS5/" ] + then + load_pscs5 + fi + + try cd "$WISOTOOL_TMP" + + # Setup a skeleton file structure: + try rm -rf cs5_temp + try mkdir -p cs5_temp/"Common Files" + try mkdir -p cs5_temp/"Program Files" + try mkdir -p cs5_temp/"userhome" + + try cd cs5_temp + + try sleep 1 # Potential race condition, caught me a couple times + + # First, the registry entries: + try reg.exe export HKLM\\Software\\Adobe adobe_cs5.reg + + # Then the files: + userprofile_unix="`cygpath $USERPROFILE`" + system32_unix="`cygpath $WINDIR/system32`" + + try cd "Common Files" + try cp -r "$programfilesdir_x86_unix/Common Files/Adobe" . + try cd ../"Program Files" + try cp -r "$programfilesdir_x86_unix/Adobe" . + try cd ../userhome + try cp -r "$appdata_unix/Adobe" . + try cd .. + try cp "$system32_unix/odbc32.dll" . + try cp "$system32_unix/odbcint.dll" . + + try cd "$WISOTOOL_TMP"/cs5_temp + try tar -c -f "$olddir/adobe_cs5.tar" * + try cd .. + try rm -rf cs5_temp + try cd "$olddir" + +} + +verblist_add pscs5_unpickle "Photoshop CS5 Demo (Adobe, 2010)" \ + adobe_cs5.tar + +load_pscs5_unpickle() { + warn "This will install Photoshop CS5's files from a Windows install made with pscs5_pickle()" + + # Install dependencies: + try sh "$WINETRICKS" -q gdiplus ie6 msxml3 vcrun2005sp1 vcrun2008 + + try cd "$WISOTOOL_TMP" + try tar xf "$WISOTOOL_CACHE/$PACKAGE/adobe_cs5.tar" + try $WINE regedit adobe_cs5.reg + try cd "$programfilesdir_x86_unix" + try mv "$WISOTOOL_TMP/Program Files/Adobe" . + try cd "Common Files" + try mv "$WISOTOOL_TMP/Common Files/Adobe" . + try cd "$appdata_win/" + try mv "$WISOTOOL_TMP/userhome"/* . + try cd "$WINDIR/system32" + try mv "$WISOTOOL_TMP/odbc32.dll" . + try mv "$WISOTOOL_TMP/odbcint.dll" . + try $WINE regsvr32 odbc32.dll + try $WINE regsvr32 odbcint.dll + + warn "Do not report bugs to wine with an installation done this way. Wait until the installer bugs are fixed or have patches to workaround them!" + warn "On the first run, it will tell you your trial has 0 days left. On the second run and after, it will say 30 days." +} + +#---------------------------------------------------------------- + +verblist_add plantsvszombies "Plants vs. Zombies (PopCap Games, 2009) [download]" PlantsVsZombiesSetup.exe + +load_plantsvszombies() { + if ! test -f "$WISOTOOL_CACHE/plantsvszombies/PlantsVsZombiesSetup.exe" + then + download plantsvszombies "http://downloads.popcap.com/www/popcap_downloads/PlantsVsZombiesSetup.exe" c46979be135ef1c486144fa062466cdc51b740f5 + fi + + cd "$WISOTOOL_CACHE/plantsvszombies" + ahk_do " + run PlantsVsZombiesSetup.exe + winwait, Plants vs. Zombies Installer + send {Enter} + winwait, Plants vs. Zombies License Agreement + ControlClick Button1 + winwait, Plants vs. Zombies Installation Complete! + send {Space}{Enter} + ControlClick, x309 y278, Plants vs. Zombies Installation Complete!,,,, Pos + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\PopCap Games\Plants vs. Zombies" +PlantsVsZombies +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add pop2008 "Prince of Persia (Ubisoft, 2008)" e65acd04baaf84481b79589b795edb144d24d1b5.iso + +load_pop2008() +{ + iso_mount "$WISOTOOL_CACHE/$PACKAGE/e65acd04baaf84481b79589b795edb144d24d1b5.iso" + ahk_do " + SetTitleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:Setup.exe + winwait, Prince of Persia, Language + sleep 1000 + ControlClick, Button3 + winwait, Prince of Persia, Welcome + sleep 1000 + ControlClick, Button1 + winwait, Prince of Persia, License + sleep 1000 + ControlClick, Button5 + sleep 1000 + ControlClick, Button2 + winwait, Prince of Persia, Click Install + sleep 1000 + ControlClick, Button1 + winwait, Prince of Persia, Click Finish + sleep 1000 + ControlClick, Button4 + " + + iso_umount + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Ubisoft\\Prince of Persia" +Prince of Persia.exe +__EOF__ +} + + +#---------------------------------------------------------------- + +verblist_add popfs "Prince of Persia The Forgotten Sands (Ubisoft, 2010)" \ +bab557c2a75ad67fd1a10804ecd2fb5e5890f03e.iso + +load_popfs() +{ + iso_mount "$WISOTOOL_CACHE/$PACKAGE/bab557c2a75ad67fd1a10804ecd2fb5e5890f03e.iso" + ahk_do " + SetTitleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:Setup.exe + winwait, Prince of Persia, Language + ControlClick, Button3 + winwait, Prince of Persia, Welcome + ControlClick, Button1 + winwait, Prince of Persia, License + ControlClick, Button5 + ControlClick, Button2 + winwait, Prince of Persia, Click Install + ControlClick, Button1 + ;Avoid error when creating desktop shortcut + Loop + { + IfWinActive, Prince of Persia, Click Finish + break + IfWinExist, Prince of Persia, desktop shortcut + { + ControlClick, Button1, Prince of Persia, desktop shortcut + break + } + sleep 5000 + } + winwait, Prince of Persia, Click Finish + ControlClick, Button4 + " + iso_umount + +if workaround_wine_bug 24346 +then + sh "$WINETRICKS" -q dsoundbug9612 +fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Ubisoft\\Prince of Persia The Forgotten Sands" +Prince of Persia.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add popsot "Prince of Persia Sands of Time (Ubisoft, 2003)" \ +a55dc7459b0e8b40b49c16e62761932c90b6ede2.iso + +load_popsot() +{ + iso_mount "$WISOTOOL_CACHE/$PACKAGE/a55dc7459b0e8b40b49c16e62761932c90b6ede2.iso" + ahk_do " + SetTitleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:Setup.exe + winwait, Prince of Persia, Language + ControlClick, Button3 + winwait, Prince of Persia, Welcome + ControlClick, Button1 + winwait, Prince of Persia, License + ControlClick, Button3 + ControlClick, Button1 + winwait, Prince of Persia, Destination + ControlClick, Button1 + winwait, Question, Proceed + ControlClick, Button6 + winwait, Prince of Persia, Acrobat Reader + ControlClick, Button2 + ControlClick, Button11 + winwait, Prince of Persia, Complete + ControlClick, Button1 + ControlClick, Button4 + sleep 6000 + IfWinExist, register + { + ControlClick, OK, register + } + " + iso_umount +} + +#---------------------------------------------------------------- + +verblist_add popsot_demo "Prince of Persia Sands of Time Demo (Ubisoft, 2003)" \ +POP_Demo_Eng.exe + +load_popsot_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/POP_Demo_Eng.exe" && ! test -f "$WISOTOOL_CACHE/$PACKAGE/pop_demo_eng.exe" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "You must manually download the Prince of Persia Sands of Time Demo to $WISOTOOL_CACHE/$PACKAGE/pop_demo_eng.exe; expected sha1sum ed62f4da1f898c661ca09bd4e3a22e4a983a822b" + fi + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, POP_Demo_Eng.exe + winwait, Prince of Persia, To continue + ControlClick, Next, Prince of Persia, To continue + winwait, Prince of Persia, License Agreement + ControlClick, Button3, Prince of Persia + ControlClick, Next, Prince of Persia + sleep 1000 + IfWinExist, Minimum Configuration + { + send {Enter} + } + winwait, Prince of Persia, Choose Destination + ControlClick, Next, Prince of Persia, Choose Destination + winwait, Question + ControlClick, Yes, Question + winwait, Prince of Persia, Installing game + winwaitclose, Prince of Persia, Installing game + sleep 3000 + IfWinExist, Prince of Persia, Setup has detected + { + ControlClick, Button2, Prince of Persia, Setup has detected + ControlClick, Next, Prince of Persia, Setup has detected + } + sleep 6000 + IfWinExist, register + { + ControlClick, OK, register + } + winwait, Prince of Persia, View the Readme + ControlClick, Button1, Prince of Persia, View the Readme + ControlClick, Finish, Prince of Persia, View the Readme + " + cd "$olddir" + warn "Once you're in the Prince of Persia game, turn off fog or you won't be able to see anything (see wine bug 17423 for explanation, but this isn't a wine bug)" +} + +#---------------------------------------------------------------- + +verblist_add procycling08_demo "Pro Cycling Manager 2008 Demo (Cyanide, 2008) [download, broken in wine]" ProCyclingManager08_Demo.exe + +load_procycling08_demo() +{ + # FIXME sha1sum 008b91a16c388c9965faaeaaa8242409b9db56b9 + # FIXME homepage http://www.cycling-manager.com/ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/ProCyclingManager08_Demo.exe" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please download the game to $WISOTOOL_CACHE/$PACKAGE/ProCyclingManager08_Demo.exe from e.g. http://www.fileplanet.com/189566/download/Pro-Cycling-Manager---Tour-de-France-2008---Demo , sha1sum should be 008b91a16c388c9965faaeaaa8242409b9db56b9" + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, ProCyclingManager08_Demo.exe + winwait, Pro Cycling Manager, This will + ControlClick, TButton1, Pro Cycling Manager, This will ; Next + winwait, Pro Cycling, License + ControlClick, TRadioButton1, Pro Cycling, License ; Accept License + ControlClick, TButton2, Pro Cycling, License ; Next + winwait, Pro Cycling, following folder + ControlClick, TButton3, Pro Cycling, following folder ; Next + winwait, Pro Cycling, shortcuts + ControlClick, TButton4, Pro Cycling, shortcuts ; Next + winwait, Pro Cycling, Click Install + ControlClick, TButton4, Pro Cycling, Click Install ; Install + winwait, Pro Cycling, finished + ControlClick, TButton4, Pro Cycling, finished ; Finish + " + cd "$olddir" + + if workaround_wine_bug 17512 + then + warn "This game crashes under Wine; see http://bugs.winehq.org/show_bug.cgi?id=17512" + fi +} + +#---------------------------------------------------------------- + +verblist_add proevolution2010_demo "Pro Evolution Soccer 2010 Demo (Konami, 2009) [download]" PES2010_PC_DEMO_Setup.exe + +load_proevolution2010_demo() +{ + # http://appdb.winehq.org/objectManager.php?sClass=version&iId=18148 + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/PES2010_PC_DEMO_Setup.exe" + then + download $PACKAGE http://gamedaily.newaol.com/pub/PES2010_PC_DEMO_Setup.exe a1c913c367f121adf5f6e4104c76ab48f8d9457e + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, PES2010_PC_DEMO_Setup.exe + winwait, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, WARNING: This program is protected + sleep 1000 + ControlClick, Button1, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, WARNING: This program is protected ; Next + winwait, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, Please read the following + sleep 1000 + ControlClick, Button3, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, Please read the ; Accept license + sleep 1000 + ControlClick, Button5, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, Please read the following license ; Next + winwait, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, Click Next to install to this folder + sleep 1000 + ControlClick, Button1, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, Click Next to install to this folder ; Next + winwait, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, The wizard is ready to begin installation + sleep 1000 + ControlClick, Button1, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, The wizard is ready to begin installation. ; Install + winwait, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, InstallShield Wizard Completed + sleep 1000 + ControlClick, Button1, Pro Evolution Soccer 2010 DEMO - InstallShield Wizard, InstallShield Wizard Completed ; Finished + " + cd "$olddir" + + if workaround_wine_bug 23104 + then + try sh "$WINETRICKS" -q d3dx9_36 + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\KONAMI\\Pro Evolution Soccer 2010 DEMO" +pes2010.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add proevolution2011_demo "Pro Evolution Soccer 2011 Demo (Konami, 2010) [download][broken on wine]" PES2011_Demo.exe + +load_proevolution2011_demo() +{ + # http://appdb.winehq.org/objectManager.php?sClass=version&iId=18148 + # http://www.bigdownload.com/games/pro-evolution-soccer-2011/pc/pro-evolution-soccer-2011-demo/ + download $PACKAGE http://gamedaily.newaol.com/pub/PES2011_Demo.exe 48e281177651637f549fb0ee5b8c4f91affb809a + + if workaround_wine_bug 24438 + then + warn "Installer probably won't work, see http://bugs.winehq.org/show_bug.cgi?id=24438" + fi + + # Copied from 2010, the first few dialogs are the same, but can't test all of it because of bug 24438. + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, PES2011_Demo.exe + winwait, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, WARNING: This program is protected + sleep 1000 + ControlClick, Button1, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, WARNING: This program is protected ; Next + winwait, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, Please read the following + sleep 1000 + ControlClick, Button3, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, Please read the ; Accept license + sleep 1000 + ControlClick, Button5, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, Please read the following license ; Next + winwait, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, Click Next to install to this folder + sleep 1000 + ControlClick, Button1, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, Click Next to install to this folder ; Next + winwait, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, The wizard is ready to begin installation + sleep 1000 + ControlClick, Button1, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, The wizard is ready to begin installation. ; Install + winwait, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, InstallShield Wizard Completed + sleep 1000 + ControlClick, Button1, Pro Evolution Soccer 2011 DEMO - InstallShield Wizard, InstallShield Wizard Completed ; Finished + " + cd "$olddir" + + if workaround_wine_bug 23104 + then + sh "$WINETRICKS" d3dx9_36 + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\KONAMI\\Pro Evolution Soccer 2011 DEMO" +pes2011demo.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add rom "Runes of Magic (Frogster Interactive, 2009) [download]" \ + Runes_of_Magic_3.0.1.2153.part1.exe \ + Runes_of_Magic_3.0.1.2153.part2.rar + +load_rom() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/Runes_of_Magic_3.0.1.2153.part1.exe" || ! test -f "$WISOTOOL_CACHE/$PACKAGE/Runes_of_Magic_3.0.1.2153.part2.rar" + then + download $PACKAGE http://frogster.vo.llnwd.net/o9/FOG/rom/Runes_of_Magic_3.0.1.2153_two.exe/Runes_of_Magic_3.0.1.2153.part1.exe 3263660262c6411f179e80c5ef0906c783d7bb08 + download $PACKAGE http://frogster.vo.llnwd.net/o9/FOG/rom/Runes_of_Magic_3.0.1.2153_two.exe/Runes_of_Magic_3.0.1.2153.part2.rar 569dee9c375fa50394958daa9f8d8a1b02bb9b11 + + fi + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/cached/ROMSetup.exe" + then + # Pre-extract files, if unrar is available + mkdir -p "$WISOTOOL_CACHE/$PACKAGE/cached" + cd "$WISOTOOL_CACHE/$PACKAGE/cached" + try_unrar e ../Runes_of_Magic_3.0.1.2153.part1.exe + fi + # manual updates from http://forum.runesofmagic.com/showthread.php?t=79267 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.1.2153.en_3.0.1.2172.en.exe 817391606fd1c05ad6194a06b21f6a5632cacf4f + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.1.2172.en_3.0.1.2175.en.exe ed120bc8140f8c3b2481a78f504a7a9e76c8642f + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.1.2175.en_3.0.1.2178.en.exe 012e679402f2165effbf2aaaffe41a5d9405d319 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.1.2178.en_3.0.1.2181.en.exe c449510566108dfc29882e6229cf716f232102df + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.1.2181.en_3.0.1.2192.en.exe d5afc10ff1126c3dabafa02b4681f411aa689c57 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.1.2192.en_3.0.1.2199.en.exe 542ac3b4d0fc4434aadfb784a46868f1815351da + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.1.2199.en_3.0.2.2189.en.exe c5f6115aeb2e4627dd0428c0024f177dca6f067c + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.2.2189.en_3.0.2.2213.en.exe bf3183406bcb848826301bba33775a6dfb611859 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.2.2213.en_3.0.2.2214.en.exe d576596086395ea83cb8c1422877c81ed45a90c9 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.2.2214.en_3.0.3.2231.en.exe af3f74030f371ef9bc4cfcecf4a9ad1159f28136 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.3.2231.en_3.0.3.2241.en.exe e46dbb3d2699ddc34a7885a16224c79f80657749 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.3.2241.en_3.0.3.2246.en.exe 17c49fb1381fb6927a19ed58ef210abd98c3e89f + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.3.2246.en_3.0.3.2250.en.exe 6484b2d8b23c1c7389f2f9a38681ecda84d856a4 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.3.2250.en_3.0.4.2237.en.exe a34b20828303cdeaa649b503d0eee915b7a808b3 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.4.2237.en_3.0.4.2261.en.exe 511bf0281a7f87e9912fcf52649307eec5b7d315 + download $PACKAGE http://frogster.vo.llnwd.net/o9/patch/en/patch_3.0.4.2261.en_3.0.4.2263.en.exe 8d01ef99ae2a72e36d9de2b6d021bc3bbd3cd246 + + cd "$WISOTOOL_CACHE/$PACKAGE" + patches=`ls patch*.exe` + ahk_do " + SetTitleMatchMode, 2 + ; Pre-extracting makes it a lot easier to debug this script! + ifexist, cached\\ROMSetup.exe + run, cached\\ROMSetup.exe + else + run, Runes_of_Magic_3.0.1.2153.part1.exe + winwait, Runes of Magic, This will install + sleep 2000 + ControlClick, TNewButton1 + winwait, Runes of Magic, License + sleep 1000 + ControlClick, TNewRadioButton1 ; Accept + loop + { + ; FIXME find some simpler way of making this reliable on vista + ifwinexist, Runes of Magic, License + ControlClick, TNewButton2 ; Next + sleep 1000 + ifwinexist, Runes of Magic, Destination + break + } + winwait, Runes of Magic, Destination + ;ControlClick, TNewButton3 + send {Enter} + winwait, Runes of Magic, shortcuts + ;ControlClick, TNewButton4 + send {Enter} + winwait, Runes of Magic, Additional Tasks + ;ControlClick, TNewButton4 + send {Enter} + winwait, Runes of Magic, Ready + ;ControlClick, TNewButton4 + send {Enter} + winwait, Runes of Magic, finished + sleep 1000 + ;ControlClick, TNewCheckListBox1 + send {Space} ; don't start + ;ControlClick, TNewButton4 + send {Enter} ; finish + ;winwait, Territory # not needed anymore? + ;send {Esc} + ; Don't let it autoupdate (not needed anymore?) + winkill + " + # Let installer finish normally + $WINESERVER -w + # Create settings file so patches can find game. Normally this is created on first run of game. + # Use funny tr and | to avoid embedded carriage returns, some editors strip them + mkdir -p "$DRIVE_C/users/$USERNAME/My Documents/Runes of Magic" + tr '|' '\015' > "$DRIVE_C/users/$USERNAME/My Documents/Runes of Magic/GameSettings.ini" <<_EOF_ +[Install]| +GamePath=$programfilesdir_x86_win\\Runes of Magic\\| +_EOF_ + + for patch in $patches + do + echo Running $patch + ahk_do " + run $patch,,, patchpid + SetTitleMatchMode, 2 + loop + { + ; patch might exit before we notice it + process, exist, %patchpid% + if ErrorLevel = 0 + break + ;ifwinexist, Find game path + ;{ + ; send {Enter} + ; winwait, Browse for Folder + ; ; these coordinates are brittle and only work on empty wine + ; MouseMove, 76,145 ; on + next to Program Files + ; Click + ; MouseMove, 115,207 ; select Runes of Magic + ; Click + ; send {Enter} + ; winwaitclose + ;} + ifwinexist, Error + winwaitclose + ; Older updaters use title "RomUpdate" + ifwinexist, RomUpdate + { + winwaitclose + break + } + ; Newer updaters use title "Runes of Magic U" (no fooling) + ifwinexist, Runes of Magic U + { + winwaitclose + break + } + sleep 1000 + } + " + done + + if workaround_wine_bug 23217 + then + try sh "$WINETRICKS" -q vcrun2005 + fi + + if workaround_wine_bug 22002 + then + try sh "$WINETRICKS" -q ie6 + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Runes of Magic" +"Runes of Magic.exe" +__EOF__ + + cd "$olddir" +} + +#---------------------------------------------------------------- + +verblist_add re5bench "Resident Evil 5 Benchmark (Capcom, 2009) [download]" nzd_ResidentEvil5_Benchmark.exe + +load_re5bench() { + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/nzd_ResidentEvil5_Benchmark.exe" + then + download $PACKAGE http://download.nvidia.com/downloads/nZone/demos/nzd_ResidentEvil5_Benchmark.exe 041492b9af138f67e7acf97fbd8e926dda59ab12 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run nzd_ResidentEvil5_Benchmark.exe + WinWait ahk_class MsiDialogCloseClass + Sleep 1000 + Send {Enter} + ; ControlClick Button1 ; Next. Doesn't work? + WinWait ahk_class MsiDialogCloseClass, License + ControlClick Button3 ; Accept + ControlClick Button5 ; Next + WinWait ahk_class MsiDialogCloseClass, Destination + ControlClick Button1 ; Next + WinWait ahk_class MsiDialogCloseClass, Ready + ControlClick Button1 ; Install + Loop + { + ; Only shows up on older Wine versions (e.g., 1.2. Disabling gameux.dll does not help + IfWinExist, GameExplorerInstall + { + ControlClick, Button1, GameExplorerInstall + Winwait, ahk_class MsiDialogCloseClass, Completed + ControlClick Button3 ; Uncheck Launch + ControlClick Button1 ; Finish + break + } + IfWinExist, ahk_class MsiDialogCloseClass, Completed + { + ControlClick Button3 ; Uncheck Launch + ControlClick Button1 ; Finish + break + } + sleep 5000 + } + " + + if workaround_wine_bug 21939 + then + try sh "$WINETRICKS" -q wmp9 + fi + + # Should run launcher.exe, but that requires .net and doesn't run on Wine + # Should give choice of running RE5DX10.EXE, but that requires dx10, which doesn't work on Wine yet + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\CAPCOM\RESIDENT EVIL 5 Benchmark Version" +RE5DX9.EXE +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add riseofnations_demo "Rise of Nations Trial (Microsoft/Big Huge Games 2003) [download]" RiseOfNationsTrial.exe + +load_riseofnations_demo() { + + if ! test -f "$WISOTOOL_CACHE/$PACKAGE"/RiseOfNationsTrial.exe + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please visit http://download.cnet.com/Rise-of-Nations-Trial-Version/3000-7562_4-10730812.html, download RiseOfNationsTrial.exe, and place it in directory $WISOTOOL_CACHE/$PACKAGE" + fi + # FIXME: check sha1sum 33cbf1ebc0a93cb840f6296d8b529f6155db95ee + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run RiseOfNationsTrial.exe + WinWait,Rise Of Nations Trial Setup + sleep 2500 + ControlClick CButtonClassName2 + WinWait,Rise Of Nations Trial Setup, installed + sleep 2500 + ControlClick CButtonClassName7 + " + + if workaround_wine_bug 9027 + then + try sh "$WINETRICKS" -q directmusic + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd $programfilesdir_x86_win\\Microsoft Games\\Rise of Nations Trial +nations.exe +__EOF__ + +} +#---------------------------------------------------------------- +#---------------------------------------------------------------- + +verblist_add quake3 "Quake 3 (ID Software, 1999)" 4d2102a8df3c1fea237f2a6a141346c436614d5e.iso + +load_quake3() { + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/4d2102a8df3c1fea237f2a6a141346c436614d5e.iso + ahk_do " + Run ${ISO_MOUNT_LETTER}:Setup.exe + WinWait, Quake III Arena + ControlClick, x532 y206 ; Click Install + WinWait, Welcome + ControlClick, Button1 ; Click Next + WinWait, Software License Agreement + ControlClick, Button2 ; Click Yes + WinWait, Setup Type + ControlClick, Button2 ; Click Next + WinWait, Choose Destination Location + ControlClick, Button1 ; Click Next + WinWait, Select Program Folder + ControlClick, Button2 ; Click Next + WinWait, Question, Would you like to place a Shortcut on your Desktop? + ControlClick, Button7 ; Click No + WinWait, Setup Complete + ControlClick, Button3 ; Click No I will restart my computer later. + ControlClick, Button5 ; Click Finish + " + iso_umount +} + +#---------------------------------------------------------------- + +verblist_add sammax304_demo "Sam & Max: The Devils Playhouse - Beyond the Alley of the Dolls (Telltale Games, 2010) [download]" SamMax304_v02.18_unlockable_securom_pa_BigDownload.exe + +load_sammax304_demo() { + if ! test -f "$WISOTOOL_CACHE/$PACKAGE"/SamMax304_v02.18_unlockable_securom_pa_BigDownload.exe + then + download $PACKAGE "http://gamedaily.newaol.com/pub/SamMax304_BigDownload.exe.zip" 5d3cefcf0c654d3646105e14cb3d06c61feb32f3 + cd "$WISOTOOL_CACHE/$PACKAGE" + try unzip SamMax304_BigDownload.exe.zip + rm -f SamMax304_BigDownload.exe.zip + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run SamMax304_v02.18_unlockable_securom_pa_BigDownload.exe + WinWait,Sam and Max Beyond the Alley of the Dolls Setup,Welcome + ControlClick Button2 ; Next + WinWait,Sam and Max Beyond the Alley of the Dolls Setup,DirectX + ControlClick Button2 ; Next - Directx check defaulted + WinWait,Sam and Max Beyond the Alley of the Dolls Setup,License + ControlClick Button2 ; Agree + WinWait,Sam and Max Beyond the Alley of the Dolls Setup,Location + ControlClick Button2 ; Install + WinWait,Sam and Max Beyond the Alley of the Dolls Setup,Finish + ControlClick Button4 ; Uncheck Play Now + ControlClick Button2 ; Finish + " + + if workaround_wine_bug 24250 + then + try sh "$WINETRICKS" -q vcrun2005 + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Telltale Games\\Sam and Max - The Devil's Playhouse\\Beyond the Alley of the Dolls" +SamMax304.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add sega_rally_2 "Sega Rally 2 (Sega, 1999)" rally2.exe + +# http://appdb.winehq.org/objectManager.php?sClass=application&iId=6961 +load_sega_rally_2() { + download $PACKAGE http://www2.sega.co.jp/download/pc/rally2/rally2.exe 1c0560c9f7d22343511a8ad46dbe606c6c7417c9 + + # Installer starts by extracting files, but doesn't seem to be a zip file or a cab file. I tried a few cli arguments, + # but had no luck. It's only 60 MB extracted, so just extract it fresh each time. + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, rally2.exe + winwait, WinSFX32 V2.16.2.6, Install &Directory: + sleep 1000 + controlclick, Button2, WinSFX32 V2.16.2.6, Install &Directory: + loop + { + ifwinexist, WinSFX32 V2.16.2.6, Install &Directory: + sleep 5000 + else + break + } + " + cd rally2/JP_DEMO + # There's a lot of unknown characters (presumably Japanese). Should this require user to run in + # a Japanese locale? + ahk_do " + SetTitleMatchMode, 2 + run, RALLY2DEMO.EXE + winwait, ????, SEGA RALLY 2 DEMO ??????? + sleep 1000 + controlclick, Button1, ????, SEGA RALLY 2 DEMO ??????? + winwait, ??????????, ???????????????? SEGA RALLY 2 DEMO ??????????? + sleep 1000 + controlclick, Button1, ??????????, ???????????????? SEGA RALLY 2 DEMO ??????????? + winwait, ??????? ????????, ??????????????????? ????????????? ????????????????????????????????????????????????????[??]??????????????? + sleep 1000 + controlclick, Button2, ??????? ????????, ??????????????????? ????????????? ????????????????????????????????????????????????????[??]??????????????? + winwait, ??????????, SEGA RALLY 2 DEMO + sleep 1000 + controlclick, Button4, ??????????, SEGA RALLY 2 DEMO + ; Automatically runs the game after install. Kill it. + sleep 3000 + process, close, LAUNCH.exe + " + cd "$olddir" + + if workaround_wine_bug 22668 + then + warn "The game is unplayable due to http://bugs.winehq.org/show_bug.cgi?id=22668. No known workaround." + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Sega\SEGA RALLY 2 DEMO" +"SEGA RALLY 2 DEMO.exe" +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add 7million "7Million (Deep Silver, 2009) [download] [broken on wine]" 7Million_0_17_0-full.exe + +load_7million() { + download $PACKAGE http://content.deepsilver.com/kochmedia/downloads/7million/de-uk/7Million_0_17_0-full.exe 99d496817367216180c4b3a59180361c23348e1e + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, 7Million_0_17_0-full.exe + winwait, Choose Setup Language + ControlClick, Button1 + SetTitleMatchMode, Slow + winwait, 7Million - InstallShield Wizard + sleep 2000 + winactivate, 7Million - InstallShield Wizard + Send {Enter} + sleep 4000 + winactivate, 7Million - InstallShield Wizard + Send !a + Send !n + winwait, Age verification + winactivate, Age verification + Send !y + sleep 1000 + winactivate, 7Million - InstallShield Wizard + Send !i + winwait, 7Million - InstallShield Wizard, InstallShield Wizard Complete + Send {Enter} + " + cd "$olddir" + cat > "$DRIVE_C/run-$PACKAGE.bat" << __EOF__ +${programfilesdrive}: +cd "users\\$LOGNAME\Local Settings\Application Data\7Million" +7million +__EOF__ + if workaround_wine_bug 23248 + then + warn "This game doesn't work on wine yet" + fi +} + +#---------------------------------------------------------------- + +verblist_add secondlife_beta "Second Life Viewer - Beta [Download]" Second_Life_2-1-0-207030_Setup.exe + +load_secondlife_beta() { + download $PACKAGE http://download.cloud.secondlife.com/Viewer-2-1/Second_Life_2-1-0-207030_Setup.exe + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, Second_Life_2-1-0-207030_Setup.exe + winwait, Installer Language + send {Enter} + winwait, Installation Folder + send {Enter} + winwait, Second Life, Start Second Life now + send {Tab}{Enter} + " + cd "$olddir" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd $programfilesdir_x86_win\\SecondLifeViewer2 +SecondLife.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add segabass "Sega Bass Fishing 2 (SEGA/Activision, 2001) [requires disc]" + +load_segabass() { + # Can't make a .iso of this disc, so assume the disc is in drive d: + ahk_do " + SetTitleMatchMode, 2 + run d:setup.exe + winwait, SEGA Bass Fishing, License + send a + sleep 1000 + send {Enter} + winwait, SEGA Bass Fishing, Destination + send {Enter} + winwait, SEGA Bass Fishing, Ready + send {Enter} + winwait, SEGA Bass Fishing, Complete + send {Enter} + winwaitclose + " + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\SEGA\\Sega Bass Fishing" +BassFishing.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add sims3 "The Sims 3 (EA, 2009)" 8a82a067f3bb8f68d034a06954e9a16ea381958a.iso + +load_sims3() { + # Launcher needs .net. (But you don't need the launcher to play the game, so this may be overkill.) + if false && workaround_wine_bug 22350 + then + try sh "$WINETRICKS" -q dotnet20 + fi + + if workaround_wine_bug 21517 + then + try sh "$WINETRICKS" -q d3dx9_36 + fi + + # Get user's key + KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/8a82a067f3bb8f68d034a06954e9a16ea381958a.txt | tr -d -` + + echo KEY is $KEY + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/8a82a067f3bb8f68d034a06954e9a16ea381958a.iso + # Default lang, USA, accept defaults, uncheck EA dl mgr, uncheck readme + ahk_do " + run ${ISO_MOUNT_LETTER}:Sims3Setup.exe + winwait, Choose Setup Language + send {Enter} + SetTitleMatchMode, 2 + winwait, - InstallShield Wizard + sleep 1000 + ControlClick &Next >, - InstallShield Wizard + sleep 1000 + send uuuuuu{Tab}{Tab}{Enter} + sleep 1000 + send a{Enter} + sleep 1000 + send {Raw}$KEY + send {Enter} + winwait, - InstallShield Wizard, Setup Type + send {Enter} + winwait, - InstallShield Wizard, Click Install to begin + send {Enter} + winwait, - InstallShield Wizard, EA Download Manager + ControlClick Yes, - InstallShield Wizard + send {Enter} + winwait, - InstallShield Wizard, Complete + ControlClick View the readme file, - InstallShield Wizard + ControlClick Finish, - InstallShield Wizard + " + iso_umount + + cd "$programfilesdir_unix/Electronic Arts/The Sims 3/Game/Bin" + echo "Sims3 version info:" + cat skuversion.txt + + download sims3 http://na.llnet.eadownloads.ea.com/u/f/sims/sims3/patches/Sims3_1.6.6.002001_from_1.0.631.00001.exe 02703d296417750005326ff0d37295fa434a3f49 + + cd "$WISOTOOL_CACHE"/sims3 + ahk_do " + run Sims3_1.6.6.002001_from_1.0.631.00001.exe + SetTitleMatchMode, 2 + winwait, - InstallShield Wizard, Complete + ControlClick Finish, - InstallShield Wizard + " + + # FIXME: apply next patch, too + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Electronic Arts\\The Sims 3\\Game\\Bin" +TS3.EXE +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add singularity "Singularity (Activision, 2010)" cfbba29fa8db1b9f87a90ea2f54c63026757c13d.iso + +load_singularity() { + # Get user's key + KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/cfbba29fa8db1b9f87a90ea2f54c63026757c13d.txt | tr -d -` + + echo KEY is $KEY + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/cfbba29fa8db1b9f87a90ea2f54c63026757c13d.iso + ahk_do " + run ${ISO_MOUNT_LETTER}:setup.exe + winwait, Activision(R) - InstallShield, Select the language for the installation from the choices below. + sleep 1000 + controlclick, Button1, Activision(R) - InstallShield, Select the language for the installation from the choices below. + sleep 1000 + winwait, Singularity(TM), Keycode Check + sleep 1000 + Send $KEY + sleep 1000 + Send {Enter} + ; Well this is annoying... + Winwait, Keycode Check, The Keycode you entered appears to be valid. + sleep 1000 + Send {Enter} + winwait, Singularity(TM), The InstallShield Wizard will install Singularity(TM) on your computer + sleep 1000 + controlclick, Button1, Singularity(TM), The InstallShield Wizard will install Singularity(TM) on your computer + winwait, Singularity(TM), Please read the following license agreement carefully + sleep 1000 + controlclick, Button5, Singularity(TM), Please read the following license agreement carefully + sleep 1000 + controlclick, Button2, Singularity(TM), Please read the following license agreement carefully + winwait, Singularity(TM), Minimum System Requirements + sleep 1000 + controlclick, Button1, Singularity(TM), Minimum System Requirements + winwait, Singularity(TM), Select the setup type to install + controlclick, Button4, Singularity(TM), Select the setup type to install + sleep 5000 + Loop + { + ifwinexist, Singularity(TM) + sleep 15000 + else + break + } + " + iso_umount + + if workaround_wine_bug 6971 + then + sh "$WINETRICKS" -q mwo=force + fi + + if workaround_wine_bug 22548 + then + echo "Disabling \'depth of field\'" + cat > "$WISOTOOL_TMP"/dof.reg <<_EOF_ +REGEDIT4 + +[HKEY_CURRENT_USER\Software\Activision\Singularity] +"DepthOfField"=dword:00000000 + +_EOF_ + try_regedit "$WISOTOOL_TMP_WIN"\\dof.reg + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Activision\Singularity(TM)\Binaries" +Singularity.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add splitsecond_demo "Split Second Demo (Black Rock Studios, 2010) [wine bug 22865]" SplitSecond_Demo.exe + +load_splitsecond_demo() +{ + if test ! -f "$WISOTOOL_CACHE/$PACKAGE"/SplitSecond*.exe + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "You must download the demo to $WISOTOOL_CACHE/$PACKAGE before running this script. See http://www.fileplanet.com/212404/210000/fileinfo/Split/Second-Demo" + fi + + if workaround_wine_bug 22774 "wine-1.3.[0-9]*" + then + echo "On wine, install takes an extra 7 minutes at the end, please be patient." + fi + + if workaround_wine_bug 22865 + then + echo "This game is currently unplayable on wine due to rendering problems; see winehq bug 22865." + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + exe=`ls SplitSecond*.exe` + ahk_do " + SetTitleMatchMode, 2 + run, "$exe" + winwait, Split, Language + ;ControlClick, Next, Split, Language ; does not quite work, have to use {Enter} instead + Send {Enter} + winwait, Split, game installation + ControlClick, Button1, Split, game installation + winwait, Split, license + ControlClick, Button5, Split, license + ControlClick, Button2, Split, license + winwait, Split, DirectX + ControlClick, Button5, Split, DirectX + ControlClick, Button2, Split, DirectX + winwait, Split, installation path + ControlClick, Button1, Split, installation path + winwait, Split, Game features + ControlClick, Button2, Split, Game features + winwait, Split, start copying + ControlClick, Button1, Split, start copying + winwait, Split, completed + ControlClick, Button1, Split, completed + ControlClick, Button4, Split, completed + " + cd "$olddir" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Disney Interactive Studios\\Split Second Demo" +SplitSecondDEMO.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add splitsecond "Split Second (Black Rock Studios, 2010) [wine bug 22865]" 15548fabe350e1b65432400aae8c3acfb1c930d8.iso + +load_splitsecond() +{ + if workaround_wine_bug 22774 "wine-1.3.[0-9]*" + then + echo "On wine, install takes an extra 7 minutes at the end, please be patient." + fi + + if workaround_wine_bug 22865 + then + echo "This game is currently unplayable on wine due to rendering problems; see winehq bug 22865." + fi + + #KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/15548fabe350e1b65432400aae8c3acfb1c930d8.txt` + # Key is used in first run activation. TODO: script first run activation. + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/15548fabe350e1b65432400aae8c3acfb1c930d8.iso + + # Aborts with dialog about FirewallInstallHelper.dll if that's not on the path (e.g. in current dir) + cd "$ISO_MOUNT_ROOT" + ahk_do " + SetTitleMatchMode, 2 + run setup.exe + winwait, Split, Language + ;ControlClick, Next, Split, Language ; does not quite work, have to use {Enter} instead + Send {Enter} + winwait, Split, game installation + ControlClick, Button1, Split, game installation + winwait, Split, license + ControlClick, Button5, Split, license + ControlClick, Button2, Split, license + winwait, Split, DirectX + ControlClick, Button5, Split, DirectX + ControlClick, Button2, Split, DirectX + winwait, Split, installation method + send {Enter} + winwait, DirectX needs to be updated + send {Enter} + winwait, Split, begin + ControlClick, Button1 + winwait, Split, completed + ControlClick, Button1, Split + ControlClick, Button4, Split + " + iso_umount + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Disney Interactive Studios\\Split Second" +SplitSecond.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add spore "Spore (EA, 2008)" d08d1985d3161661d4f0ded30a0d11e705f2fcc2.iso + +load_spore() +{ + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/d08d1985d3161661d4f0ded30a0d11e705f2fcc2.iso + SPORE_KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/d08d1985d3161661d4f0ded30a0d11e705f2fcc2.txt | tr -d -` + ahk_do " + SetTitleMatchMode, 2 + run, ${ISO_MOUNT_LETTER}:SPORESetup.exe + winwait, Language + controlclick, Button1 + winwait, SPORE, Welcome + controlclick, Button1 + winwait, SPORE, License + controlclick, Button3 + controlclick, Button1 + winwait, SPORE, Registration Code + send {RAW}$SPORE_KEY + controlclick, Button2 + winwait, SPORE, Setup Type + controlclick, Button6 + winwait, SPORE, Shortcut + controlclick, Button6 + winwait, SPORE, begin + controlclick, Button1 + winwait, Question + ; download managers are usually a pain, so always say no to such questions + controlclick, Button2 + winwait, SPORE, complete + controlclick, Button1 + controlclick, Button2 + controlclick, Button4 + " + iso_umount + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Electronic Arts\\SPORE\\Sporebin" +SporeApp.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add ssdd2 "SpongeBob SquarePants Diner Dash 2 (Nickelodeon/Big Fish, 2007) [download]" InstallSpongeBobDinerDash2.exe + +load_ssdd2() +{ + # Main page: http://arcade.nick.com/nick/gameinfo.jsp?s=SpongeBobDinerDash2 + # old: 8407dae2c062ce62b38408eeac3a9f95be202b96 + # 27 Oct 2010: 440c4f2e9484ba150782cae8754ff8eaaad3b01e + download $PACKAGE http://nickdownloads.shockwave.com/InstallSpongeBobDinerDash2.exe 440c4f2e9484ba150782cae8754ff8eaaad3b01e + + if workaround_wine_bug 23749 + then + sh "$WINETRICKS" -q ie6 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run InstallSpongeBobDinerDash2.exe + winwait, Welcome + sleep 1000 + controlclick, Button1, Welcome + sleep 1000 + winwait, End User License + sleep 1000 + controlclick, Button1, End User License + winwait, Choose Destination Location + sleep 1000 + controlclick, Button1, Choose Destination Location + winwait, FREE Toolbar + sleep 1000 + controlclick, Button5, FREE Toolbar + sleep 1000 + controlclick, Button1, FREE Toolbar + winwait, Start Installation + sleep 1000 + controlclick, Button1, Start Installation + winwait, Installation Complete + sleep 1000 + controlclick, Button1, Installation Complete + " + sleep 5 + killall winefile.exe + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Nick Arcade\\SpongeBob SquarePants Diner Dash 2" +"SpongeBob SquarePants Diner Dash 2.exe" +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add sonicdxb_demo "Sonic Adventure Deluxe Trial B (Sega, 2003) [download]" sadx_trial_b.exe + +load_sonicdxb_demo() { + # http://sega.jp/pc/sonicdx/ + # http://sega.jp/pc/sonicdx/trial.shtml + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/sadx_trial_b.exe" + then + download $PACKAGE 'http://sega.jp/cgi-bin/link.cgi?url=sadx_trial_b' f76fc33d3cb1b062437e03ba4e0687be07d903ad + mv "$WISOTOOL_CACHE"/$PACKAGE/'link.cgi?url=sadx_trial_b' "$WISOTOOL_CACHE/$PACKAGE/sadx_trial_b.exe" + fi + + # Switch to Japanese locale so freedesktop.org menu item works + # (This works for Scott, at least) + OLDLANG=${LANG} + export LANG=ja_JP.utf8 + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run, sadx_trial_b.exe + WinWait ahk_class SONIC_DX_PC_LC_B + ControlClick, x450 y90 + WinWait ahk_class #32770 + ControlClick, Button3 + ControlClick, Button1 + WinWait ahk_class #32770 + ControlClick, Button1 + WinWait ahk_class #32770 + ControlClick, Button1 + WinWaitActive ahk_class SONIC_DX_PC_LC_G_B + ControlClick, x450 y130 + " + LANG=${OLDLANG} + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Sega\\SONICADVENTUREDX_DEMO_B" +sonic.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add stalker_pripyat_bench "S.T.A.L.K.E.R Call of Pripyat benchmark (GSC Game World, 2009) [download]" stkcop-bench-setup.exe + +load_stalker_pripyat_bench() { + # FIXME: There's a much faster download at + # http://www.bigdownload.com/games/stalker-call-of-pripyat/pc/stalker-call-of-pripyat-benchmark + # Should we direct users to download from there manually? + download $PACKAGE http://files.gsc-game.com/st/bench/stkcop-bench-setup.exe 8691c3f289ecd0521bed60ffd46e65ad080206e0 + + cd "$WISOTOOL_CACHE/$PACKAGE" + + # FIXME: a bit fragile, if you're browsing the web while installing, it sometimes gets stuck. + ahk_do " + SetTitleMatchMode, 2 + run stkcop-bench-setup.exe + WinWait,Setup - Call Of Pripyat Benchmark,Pripyat + sleep 1000 + ControlClick TNewButton1 ; Next + WinWait,Setup - Call Of Pripyat Benchmark,License + sleep 1000 + ControlClick TNewRadioButton1 ; accept + sleep 1000 + ControlClick TNewButton2 ; Next + WinWait,Setup - Call Of Pripyat Benchmark,Destination + sleep 1000 + ControlClick TNewButton3 ; Next + WinWait,Setup - Call Of Pripyat Benchmark,shortcuts + sleep 1000 + ControlClick TNewButton4 ; Next + WinWait,Setup - Call Of Pripyat Benchmark,tasks + sleep 1000 + send {Enter} + WinWait,Setup - Call Of Pripyat Benchmark,ready + sleep 1000 + ControlClick, TNewButton4 ; Next (nah, who reads doc?) + WinWait,Setup - Call Of Pripyat Benchmark,finished + sleep 1000 + Send {Space} ; uncheck launch + sleep 1000 + ControlClick TNewButton4 ; Finish + " + + if workaround_wine_bug 24868 + then + sh "$WINETRICKS" d3dx9_31 d3dx9_42 + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Call Of Pripyat Benchmark" +Benchmark.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add starcraft "Starcraft Battle Chest (Blizzard, 1998)" 8d6cc11bc76b8af22868a95e17e0282277e9c53c.iso 966bae1f2e2035e066139e78137e623c92838254.iso + +load_starcraft() { + warn "You must have already done 'wisotool load=YOURKEY' on the install disc, and 'wisotool load' on the other disc." + + # Force clean-ish install + test -d "$programfilesdir_unix/StarCraft" && rm -rf "$programfilesdir_unix/StarCraft" + + # Get user's key + KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/8d6cc11bc76b8af22868a95e17e0282277e9c53c.txt` + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/8d6cc11bc76b8af22868a95e17e0282277e9c53c.iso + ahk_do " + run ${ISO_MOUNT_LETTER}:StarCraft (Windows).exe + winwait, StarCraft - Brood War + send {i} + winwait, End User License Agreement + Sleep 2000 + send {a} + winwait, CD-Key + send $USERNAME + send {Tab}$KEY + send {Enter} + winwait, Installation Destination Directory + send {Enter} + winwait,,Please insert" + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/966bae1f2e2035e066139e78137e623c92838254.iso + ahk_do " + send, {Enter} + SetTitleMatchMode, 2 + winwait, - StarCraft + winwaitclose, - StarCraft + Sleep 2000 + send {e}" + iso_umount + + # FIXME: apply patch, follow instructions in http://us.blizzard.com/support/article.xml?articleId=21150 +} + +#---------------------------------------------------------------- + +verblist_add starcraft2 "Starcraft II (Blizzard, 2010)" Installer Tome 1.MPQE Installer UI 1.MPQ Installer UI 2.MPQE Installer.app Installer.exe + +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=20882 + +load_starcraft2() { + load_gecko + + for x in "Installer Tome 1.MPQE" "Installer UI 1.MPQ" "Installer UI 2.MPQE" "Installer.app" "Installer.exe" + do + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/$x" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please download the installer files using the Blizzard downloader from https://us.battle.net/account/management/sc2/download.html?gameRegion=NA&lang=en-US&platform=win and put them in $WISOTOOL_CACHE/$PACKAGE" + fi + done + + # Force clean-ish install + test -d "$programfilesdir_unix/StarCraft II" && rm -rf "$programfilesdir_unix/StarCraft II" + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + SetTitleMatchMode, 2 + run, Installer.exe + winwait, StarCraft II Installer + ControlClick, x300 y200 + winwait, End User License Agreement + winactivate + MouseMove, 300, 300 + Click WheelDown, 70 + Sleep, 1000 + ControlClick, Agree + winwait, StarCraft II Installer + sleep 1000 + ControlClick, x800 y500 + winwait, StarCraft II Activation + sleep 1000 + ; Skip activation + controlclick, Button2, StarCraft II Activation + winwait, StarCraft II v, update was successful + winclose + " + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\StarCraft II" +"StarCraft II.exe" +__EOF__ +} + +#---------------------------------------------------------------- +verblist_add sto "Star Trek Online (Cryptic, 2010)" f891dab46d05d771e0123a1e7ec969f3601064a6.iso + +load_sto() +{ + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/f891dab46d05d771e0123a1e7ec969f3601064a6.iso + # Note: http://www.startrekonline.com/download shows how to download the + # client using bittorrent. If the iso is not present, we should try that path. + + if workaround_wine_bug 22943 + then + # Install is fine without ie6, but can't log in or download patch without ie6, + # and the installer launches the app when it's done. + # Even with ie6, it's not perfect, there are lots of annoying script error prompts. + sh "$WINETRICKS" -q ie6 + fi + + ahk_do " + SetTitleMatchMode, 2 + run ${ISO_MOUNT_LETTER}:setup.exe + winwait, Installer + Send {Enter} ; Accept English as default language + winwait, Star Trek Online + ControlClick, Button2 + winwait, Star Trek, License + ControlClick, Button2, + winwait, Star Trek, Location + ControlClick, Button2 + winwait, Star Trek, shortcuts + ControlClick, Button2 + winwait, Star Trek, additional + ControlClick, Button2 + winwait, Star Trek, Launch + ControlClick, Button2 + " + iso_umount + # FIXME: register using the key that came with the DVD? + # FIXME: log in and download patch? + # FIXME: kill game? +} + +#---------------------------------------------------------------- + +verblist_add stfu "Starwars: The Force Unleashed (Aspyr, 2009)" 0d0f4e826c3a04542a68d7bcc971f4df7526965b.iso 5d6e2eb1b08b9d4a71b2390b385c3048ec91f3df.iso + +load_stfu() { + load_autohotkey + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/0d0f4e826c3a04542a68d7bcc971f4df7526965b.iso + warn "Starting installer. This can be very slow, please be patient." + ahk_do " + run ${ISO_MOUNT_LETTER}:setup.exe + SetTitleMatchMode, 2 + winwait, Select Setup Language + send {Enter} + winwait, Setup, Welcome + send {Enter} + winwait, Setup, License + sleep 500 + send {Tab}a{Space}{Enter} + winwait, Setup, Destination + send {Enter} + winwait, Setup, Menu + send {Enter} + winwait, Setup, Tasks + send {Space}{Enter} + winwait, Setup, begin + sleep 1000 + ControlClick &Install, Setup + winwait, Setup Needs the Next Disk + " + iso_umount + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/5d6e2eb1b08b9d4a71b2390b385c3048ec91f3df.iso + ahk_do " + SetTitleMatchMode, 2 + send {Enter} + winwait, Setup, Completing + send {Space}{Tab} ; don't show readme + send {Space}{Tab} ; don't start app + send {Enter} + " + iso_umount + + # Patch to 1.2 + # FIXME: add a commandline option to disable patching in general + # URL from http://www.lucasfiles.com/index.php?s=&action=download&id=1537&agree=true + # See also http://www.forceunleashed.net/news/force-unleashed-patch-1-2/ + download stfu http://xfer.lfnetwork.com/lucasfiles.com/downloads/1537/SWTFU_PC_EF_1.2_Update.exe cfd8043c4b86f4dc0ff0acd4c108b11c4b76e716 + cd "$WISOTOOL_CACHE/stfu" + ahk_do " + run SWTFU_PC_EF_1.2_Update.exe + SetTitleMatchMode, 2 + winwait, Patch + send {Enter} + winwait, Patch, Finish + send {Enter} + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\StarCraft II Beta" +"StarCraft II.exe" +__EOF__ + + # Should start SWTFU Launcher.exe, but that doesn't run in Wine? + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Aspyr\Star Wars The Force Unleashed" +SWTFU.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add sf4bench "Street Fighter 4: Benchmark (CAPCOM, 2009) [download]" StreetFighterIV_Benchmark.exe + +load_sf4bench() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/StreetFighterIV_Benchmark.exe" + then + download $PACKAGE http://gamedaily.newaol.com/pub/StreetFighterIV_Benchmark.exe f7754210308b3a0ff2bb3be3a62b22767519ca62 + fi + + cd "$WISOTOOL_CACHE"/$PACKAGE + + ahk_do " + SetTitleMatchmode, 2 + run, StreetFighterIV_Benchmark.exe + winwait, Choose + controlclick, Button1 + winwait, STREET, To continue, click Next + controlclick, Button1 + winwait, STREET, license agreement + controlclick, Button3 + controlclick, Button5 + winwait, STREET, Destination Folder + controlclick, Button1 + winwait, STREET, ready to begin + controlclick, Button1 + winwait, STREET, successfully installed + controlclick, Button1 + + " + + # The game has a flickering graphics problem when parallel rendering is enabled. + # You can disable it and tweak benchmark settings via the config.ini file. + if workaround_wine_bug 23647 + then + cd "$DRIVE_C/users/$USERNAME/Local Settings/Application Data" + if test -f CAPCOM/STREETFIGHTERIVBENCHMARK/config.ini + then + cd CAPCOM/STREETFIGHTERIVBENCHMARK + mv config.ini config.ini.old + sed 's,RenderingThread=ON,RenderingThread=OFF,' config.ini.old > config.ini + else + mkdir -p "CAPCOM/STREETFIGHTERIVBENCHMARK" + cd "CAPCOM/STREETFIGHTERIVBENCHMARK" + cat > config.ini <<__EOF__ +[SYSTEM] +RenderingThread=OFF +[DISPLAY] +Resolution=1024x768 +RefreshRate=60Hz +FullScreen=YES +VSync=OFF +FrameRate=VARIABLE +Aspect=AUTO +[GRAPHICS] +MSAA=NONE +TextureFilter=DEFAULT +ModelQuality=HIGH +StageQuality=HIGH +SoftShadowQuality=LOW +SelfShadowQuality=LOW +MotionBlurQuality=LOW +ParticleQuality=MIDDLE +ExtraTouch=OFF +Brightness=50 +[BENCHMARK] +Type=BATTLE+DEMO +Loop=OFF +[GAME] +FPS=ON +__EOF__ + fi + fi + + cd "$olddir" + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\CAPCOM\\STREETFIGHTERIV_BENCHMARK" +StreetFighterIV_Benchmark.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add smbx "Super Mario Bros. X (Indie, 2009) [download]" smbx122.exe + +load_smbx() { + # Download URL embedded in http://www.supermariobrothers.org/downloads/smbx122.html + download $PACKAGE http://www.tehgamez.com/a/smbx122.exe 269eb60d502e57fdfae9c3601ad9ee22801cb5d1 + + # This winetricks verb doesn't work on Windows yet, but that's ok-ish, Windows comes with vb6 runtime + sh "$WINETRICKS" -q vb6run + + if workaround_wine_bug 23821 + then + # http://www.supermariobrothers.org/forums/viewtopic.php?f=8&t=6711 + # claims this works + sh "$WINETRICKS" -q quartz + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + + ahk_do " + SetTitleMatchMode, 2 + run smbx122.exe + + WinWait, Setup - Super Mario Bros. X, Welcome + Send {Enter} + WinWait, Setup - Super Mario Bros. X, Information + Send {Enter} + WinWait, Setup - Super Mario Bros. X, Select Destination Location + Send {Enter} + WinWait, Setup - Super Mario Bros. X, Select Start Menu Folder + Send {Enter} + WinWait, Setup - Super Mario Bros. X, Additional Tasks + Send {Enter} + WinWait, Setup - Super Mario Bros. X, Recommended by + MouseMove, 36,274 + Click ; Don't install recommended (Ad) software + Send {Enter} + WinWait, Setup - Super Mario Bros. X, Ready to Install + Send {Enter} + WinWait, Setup - Super Mario Bros. X, Information + Send {Enter} + WinWait, Setup - Super Mario Bros. X, Completing + Send {Space} ; Don't run game + Send {Enter} + " + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +C: +cd C:\\SMBX +smbx.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add timezattack_demo "Timez Attack Demo (BigBrainz, 2005) [download]" Win_TimezAttackFreeInstaller.exe + +load_timezattack_demo() { + download $PACKAGE http://s3.amazonaws.com/BigBrainz/Win_TimezAttackFreeInstaller.exe aa30905e064c1f28949b56a8ab5ffe1ffa86618c + + cd "$WISOTOOL_CACHE/$PACKAGE" + # autohotkey can't read any text from this one :-( + ahk_do " + settitlematchmode, 2 + run, Win_TimezAttackFreeInstaller.exe + winwait, Setup + send {Enter} + sleep 5000 + send {Tab}{Tab}{Space}{Tab}{Tab}{Tab}{Enter} + sleep 5000 + send {Enter} + sleep 5000 + send {Enter} + sleep 40000 ; fixme: wait for last file to be created + send {Enter} + sleep 5000 + ControlClick TkChild14 ; uncheck (start game). fixme: cannot uncheck + send {Enter} + sleep 2000 + " + # fixme: only works on linux + killall TimezAttack.exe + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +C: +cd C:\\TimezAttack +TimezAttack.app\\TimezAttack.exe +__EOF__ + + if workaround_wine_bug 24537 + then + sh "$WINETRICKS" -q corefonts + fi +} + +#---------------------------------------------------------------- + +verblist_add tlr_demo "The Last Remnant Demo (Square Enix, 2009) [download]" d96a2ebbd15c3d03286d1b8b5601e7038cab46b1.iso + +load_tlr_demo() { +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=15997 +# http://news.bigdownload.com/2009/02/26/download-the-last-remnant-demo/ + + if ! test -f "$WISOTOOL_CACHE"/$PACKAGE/TheLastRemnant_PC_Demo.zip + then + download $PACKAGE http://gamedaily.newaol.com/pub/TheLastRemnant_PC_Demo.zip 86b093eec133393ef47bb1dcd268b38b12927899 + fi + + cd "$WISOTOOL_TMP" + try unzip "$WISOTOOL_CACHE/$PACKAGE/TheLastRemnant_PC_Demo.zip" + cd "The Last Remnant Trial Version" + + ahk_do " + settitlematchmode, 2 + run, setup.exe + winwait, The Last Remnant Trial Version, Please close all unnecessary running + sleep 1000 + controlclick, Button1, The Last Remnant Trial Version, Please close all unnecessary running + winwait, The Last Remnant Trial Version, Welcome to the InstallShield Wizard + sleep 1000 + controlclick, Button1, The Last Remnant Trial Version, Welcome to the InstallShield Wizard + winwait, The Last Remnant Trial Version, License Agreement + sleep 1000 + controlclick, Button5, The Last Remnant Trial Version, License Agreement + sleep 1000 + controlclick, Button2, The Last Remnant Trial Version, License Agreement + winwait, The Last Remnant Trial Version, Choose Destination Location + sleep 1000 + controlclick, Button1, The Last Remnant Trial Version, Choose Destination Location + winwait, The Last Remnant Trial Version, The wizard is ready to begin installation. + sleep 1000 + controlclick, Button1, The Last Remnant Trial Version, The wizard is ready to begin installation. + winwait, The Last Remnant Trial Version, InstallShield Wizard Complete + sleep 1000 + controlclick, Button4, The Last Remnant Trial Version, InstallShield Wizard Complete + " + + # FIXME: When running, the window has the wrong size. Wine or app bug? +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\SquareEnix\\The Last Remnant Trial Version\\Binaries" +TLRDemo.exe +__EOF__ + + warn "The mouse seems broken, see bug 6971 for possible workarounds (mwo={force,disabled,enabled} didn't work for me)." +} + +#---------------------------------------------------------------- + +verblist_add tmnationsforever "TrackMania Nations Forever (Nadeo, 2009) [download]" tmnationsforever_setup.exe + +load_tmnationsforever() { + if workaround_wine_bug 20915 + then + warn "Gameplay and sound may be very choppy on some machines :-(" + fi + + download $PACKAGE "http://files.trackmaniaforever.com/tmnationsforever_setup.exe" cab0cf66db0471bc2674a3b1aebc35de0bca6ed0 + + cd "$WISOTOOL_CACHE/$PACKAGE" + + ahk_do " + SetTitleMatchMode, 2 + run tmnationsforever_setup.exe + WinWait,Select Setup Language,language + Sleep 1000 + ControlClick TNewButton1 ; OK + WinWait,Setup - TmNationsForever,Welcome + Sleep 1000 + ControlClick TNewButton1 ; Next + WinWait,Setup - TmNationsForever,License + Sleep 1000 + ControlClick TNewRadioButton1 ; Accept + Sleep 1000 + ControlClick TNewButton2 ; Next + WinWait,Setup - TmNationsForever,Where + Sleep 1000 + ControlClick TNewButton3 ; Next + WinWait,Setup - TmNationsForever,shortcuts + Sleep 1000 + ControlClick TNewButton4 ; Next + WinWait,Setup - TmNationsForever,perform + Sleep 1000 + ControlClick TNewButton4 ; Next + WinWait,Setup - TmNationsForever,installing + Sleep 1000 + ControlClick TNewButton4 ; Install + WinWait,Setup - TmNationsForever,finished + Sleep 1000 + ControlFocus, TNewCheckListBox1, TmNationsForever, finished + Sleep 1000 + Send {Space} ; don't start game + ControlClick TNewButton4 ; Finish + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\TmNationsForever" +TmForever.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add twfc "Transformers: War for Cybertron (Activision, 2010)" d96a2ebbd15c3d03286d1b8b5601e7038cab46b1.iso + +load_twfc() { + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/d96a2ebbd15c3d03286d1b8b5601e7038cab46b1.iso + + KEY=`cat "$WISOTOOL_CACHE"/$PACKAGE/d96a2ebbd15c3d03286d1b8b5601e7038cab46b1.txt | tr -d -` + + ahk_do " + run ${ISO_MOUNT_LETTER}:setup.exe + SetTitleMatchMode, 2 + winwait, Activision, Select the language for the installation + sleep 1000 + controlclick, Button1, Activision, Select the language for the installation + winwait, Transformers, Press NEXT to verify your key + sleep 1000 + send $KEY + send {Enter} + winwait, Keycode Check, The Keycode you entered appears to be valid + sleep 1000 + send {Enter} + winwait, Transformers, The InstallShield Wizard will install Transformers + sleep 1000 + controlclick, Button1, Transformers, The InstallShield Wizard will install Transformers + winwait, Transformers, License Agreement + sleep 1000 + controlclick, Button5, Transformers, License Agreement + sleep 1000 + controlclick, Button2, Transformers, License Agreement + winwait, Transformers, Minimum System Requirements + sleep 1000 + controlclick, Button1, Transformers, Minimum System Requirements + winwait, Transformers, Select the setup type to install + sleep 1000 + controlclick, Button4, Transformers, Select the setup type to install + + ; Installer exits silently. Prevent an early umount: + sleep 5000 + Loop + { + ifwinexist, Transformers + sleep 15000 + else + break + } + " + iso_umount + + if workaround_wine_bug 6971 + then + sh "$WINETRICKS" mwo=force + fi + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Activision\Transformers - War for Cybertron\Binaries" +TWFC.exe +__EOF__ + +} + +#---------------------------------------------------------------- + +verblist_add tropico3_demo "Tropico 3 Demo (Kalypso Media GmbH, 2009) [download]" Tropico3Demo.exe + +load_tropico3_demo() { + if ! test -f "$WISOTOOL_CACHE/$PACKAGE"/Tropico3Demo.exe + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Please visit http://www.fileshack.com/file_download.x/15191 or http://www.tropico3.com/?p=downloads, download Tropico3Demo.exe, and place it in directory $WISOTOOL_CACHE/$PACKAGE" + fi + # FIXME: check sha1sum e031749db346ac3a87a675787c81eb1ca8cb5909 + + if workaround_wine_bug 24819 + then + sh "$WINETRICKS" gameux=disabled + $WINESERVER -w + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + + ahk_do " + SetTitleMatchMode, 2 + run Tropico3Demo.exe + WinWait,Installer Language,select + sleep 1000 + ControlClick Button1 ; OK + WinWait,Tropico,Welcome + sleep 1000 + ControlClick Button2 ; Next + WinWait,Tropico,License + sleep 1000 + ControlClick Button2 ; Agree + WinWait,Tropico,Typical + sleep 1000 + ControlClick Button2 ; Next + WinWait,Tropico,Completing + sleep 1000 + ControlClick Button4 ; Uncheck Run Now + ControlClick Button2 ; Finish + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Kalypso\\Tropico 3 Demo" +Tropico3 Demo.exe +__EOF__ + + if workaround_wine_bug 16328 + then + # 20540 is a dup of 16328, but it describes the problem nicely + warn "seawater is invisible due to wine bug 20540, work around this by applying the patch from http://bugs.winehq.org/show_bug.cgi?id=16328#c180" + fi + + if workaround_wine_bug 24845 + then + sh "$WINETRICKS" mmdevapi=disabled + fi +} + +#---------------------------------------------------------------- + +verblist_add typingofthedead_demo "Typing of the Dead Demo (Sega, 1999) [download]" Tod_e_demo.exe + +load_typingofthedead_demo() { + download $PACKAGE "http://downloads.pcworld.com/pub/new/fun_and_games/other/tod-demo.zip" 96fe3edb2431210932af840e29c59bce6b7fc80f + + cd "$WISOTOOL_CACHE/$PACKAGE" + mkdir "$WISOTOOL_TMP/tod-demo" + cp tod-demo.zip "$WISOTOOL_TMP/tod-demo" + cd "$WISOTOOL_TMP/tod-demo" + unzip tod-demo.zip + rm tod-demo.zip + + ahk_do " + SetTitleMatchMode, 2 + run SETUP.EXE + WinWait,InstallShield Wizard,where + sleep 1000 + ControlClick Button1 ; Next + WinWait,InstallShield Wizard,icons + sleep 1000 + ControlClick Button2 ; Next + ; installer crashes here? + Sleep 20000 + " + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\SEGA\\TOD-Demo" +Tod_e_demo.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add unigine_heaven "Unigen Heaven 2 Benchmark (Unigen, 2010) [download]" Unigine_Heaven-2.0.msi + +load_unigine_heaven() { + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/Unigine_Heaven-2.0.msi" + then + warn "This download is slow, you may want to do a manual download from http://downloads.guru3d.com/Unigine-Heaven-DirectX-11-benchmark-2.0-download-2414.html instead" + #download $PACKAGE http://www.techpowerup.com/downloads/1775e/Unigine_Heaven-2.0.msi 6a0bd499ae8ed8d73d74d964d3c4312a0a40b7e6 + download $PACKAGE http://unigine.com/download/files/Unigine_Heaven-2.0.msi 6a0bd499ae8ed8d73d74d964d3c4312a0a40b7e6 + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run msiexec /i Unigine_Heaven-2.0.msi + WinWait ahk_class MsiDialogCloseClass + Sleep 1000 + Send {Enter} + WinWait ahk_class MsiDialogCloseClass, License + ControlClick Button1 ; Accept + ControlClick Button3 ; Accept + WinWait ahk_class MsiDialogCloseClass, Choose + ControlClick Button1 ; Typical + WinWait ahk_class MsiDialogCloseClass, Ready + ControlClick Button2 ; Install + ; FIXME: on systems with OpenAL already (Win7?), the next four lines + ; are not needed. We should somehow wait for either OpenAL window + ; *or* Completed window. + WinWait ahk_class OpenAL Installer + ControlClick Button2 ; OK + WinWait ahk_class #32770 + ControlClick Button1 ; OK + + WinWait ahk_class MsiDialogCloseClass, Completed + Sleep 500 + ControlClick Button1 ; Finish + Send {Enter} + " + + if workaround_wine_bug 22614 + then + # hope your card actually has 1GB of RAM + sh "$WINETRICKS" videomemorysize=1024 + fi + + # Should start Heaven.exe, but that doesn't run in Wine + # Should give option to run Heaven_gl.bat (even works in Wine) + # or the dx10 or dx11 versions (doesn't). + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Unigine\Heaven" +cmd /c Heaven_d3d9.bat +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add vegas "Rainbow Six: Vegas (Ubisoft, 2006) [broken-wine-drm]" \ + be7cf72572708e9776af73c9bec8ee07952385af.iso \ + abd625abe57c7a9ffe5083e69ddc9f2a978c9e84.iso + +load_vegas() { + if workaround_wine_bug 7065 + then + warn "This game's DRM is not supported by wine" + fi + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/be7cf72572708e9776af73c9bec8ee07952385af.iso + + ahk_do " + SetTitleMatchMode, 2 + Run, ${ISO_MOUNT_LETTER}:setup.exe + WinWait, Choose Setup Language + WinActivate + ControlClick Button1 ; OK + WinWait, , Welcome + WinActivate + ControlClick Button1 ; next + WinWait, , License Agreement + WinActivate + ControlClick Button3 ; accept eula + ControlClick Button1 ; next + WinWait, , Choose Destination Location + WinActivate + ControlClick Button4 ; next + WinWait, , Ready to Install + WinActivate + ControlClick Button1 ; install + WinWait, Setup Needs The Next Disk + WinActivate + " + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/abd625abe57c7a9ffe5083e69ddc9f2a978c9e84.iso + + ahk_do " + SetTitleMatchMode, 2 + Send {Enter} + WinWait, Microsoft DirectX Setup + WinActivate + ControlClick Button2 ; no + WinWait, , It is STRONGLY recommended that you install the latest DirectX runtimes + WinActivate + ControlClick Button1 ; ok + WinWait, Microsoft DirectX Setup + WinActivate + ControlClick Button2 ; No + WinWait, , Installation Completed + ControlClick Button1 ; untick desktop icon + ControlClick Button2 ; untick registration + ControlClick Button4 ; finish + WinWait, Detection + WinActivate + ControlClick Button1 ; quit + Sleep 1000 ; does not detect system properly, wait for warning popup and quit + Send {Enter} ; quit + " + iso_umount + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +cd "$programfilesdir_x86_win\\Ubisoft\\Tom Clancy's Rainbow Six Vegas\\Binaries" +R6Vegas_Launcher.exe +__EOF__ +} + + +#---------------------------------------------------------------- + +verblist_add vegas2 "Rainbow Six: Vegas 2 (Ubisoft, 2008) [broken-wine-drm]" \ + e720e914eeb98dbd2ec140d15d32ce6317e24f86.iso \ + 1430fdaa49165d1bed439ddffa65e9fa2af4d498.iso + +load_vegas2() { + if workaround_wine_bug 219 + then + warn "This game's DRM is not supported by wine" + fi + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/e720e914eeb98dbd2ec140d15d32ce6317e24f86.iso + + ahk_do " + SetTitleMatchMode, 2 + Run, ${ISO_MOUNT_LETTER}:setup.exe + WinWait, Tom Clancy + WinActivate + ControlClick Button3 ; next + WinWait, , Welcome + WinActivate + ControlClick Button1 ; next + WinWait, , License Agreement + WinActivate + ControlClick Button5 ; accept eula + ControlClick Button2 ; next + WinWait, , Ready to Install + WinActivate + ControlClick Button1 ; install + WinWait, Setup Needs The Next Disk + WinActivate + " + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/1430fdaa49165d1bed439ddffa65e9fa2af4d498.iso + + ahk_do " + SetTitleMatchMode, 2 + Send {Enter} + WinWait, Detection + WinActivate + ControlClick Button1 ; close + WinWait, Setup Needs The Next Disk + WinActivate + " + + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/e720e914eeb98dbd2ec140d15d32ce6317e24f86.iso + ahk_do " + SetTitleMatchMode, 2 + Send {Enter} + WinWait, , Installation Completed + WinActivate + ControlClick Button4 ; finish + " + iso_umount + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +cd "$programfilesdir_x86_win\\Ubisoft\\Tom Clancy's Rainbow Six Vegas 2\\Binaries" +R6Vegas2_Launcher.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add victoria2_demo "Victoria 2 Demo (Paradox Interactive, 2010) [download]" + +load_victoria2_demo() { + # download zip file via torrent from http://www.gamershell.com/download_62070.shtml + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/Victoria2_Demo.zip" + then + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + die "Download Victoria2_Demo.zip from http://www.gamershell.com/download_62070.shtml and place in $WISOTOOL_CACHE/$PACKAGE" + fi + # FIXME: check sha1sum 20bac88a3ace1010e4fb116d72baf95e92976b39 + # or better, check sha1sum of extracted .exe, since different + # sources add their own readme in the .zip file + mkdir -p "$WISOTOOL_TMP"/$PACKAGE/ + cd "$WISOTOOL_TMP"/$PACKAGE/ + try unzip "$WISOTOOL_CACHE/$PACKAGE"/Victoria2_Demo.zip + + # Clean up old temp files from installer extractor (it leaves them around) + rm -rf temp_files_for_v2 + + # Run installer -- the ifwinactive statements are due to things that may not appear in Win7 + ahk_do " + SetTitleMatchMode, 2 + run, Victoria2_Demo.exe + winwait, WinRAR + ControlClick, Button2, WinRAR + winwait, InstallShield, Welcome to the + sleep 1000 + ControlClick, Button1, InstallShield, Welcome to the + winwait, InstallShield, License Agreement + sleep 1000 + ControlClick, Button2, InstallShield, License Agreement + winwait, InstallShield, Setup will install + sleep 1000 + ControlClick, Button1, InstallShield, Setup will install + winwait, InstallShield, Setup will add program icons + sleep 1000 + ControlClick, Button2, InstallShield, Setup will add program icons + WinWait, InstallShield, Setup is performing + WinWaitClose, InstallShield, Setup is performing + loop + { + ifwinexist, Microsoft Visual C++, Please read the following license + { + winactivate, Microsoft Visual C++, Please read the following license + sleep 1000 + ControlClick, Button1, Microsoft Visual C++, Please read the following license + WinWaitClose, Microsoft Visual C++ + WinWaitClose, Microsoft Visual C++ + WinWaitClose, Microsoft Visual C++ + } + ifwinexist, DirectX, Welcome to setup for DirectX + { + sleep 1000 + ControlClick, Button6, DirectX, Welcome to setup for DirectX + WinWaitClose, DirectX, Welcome to setup for DirectX + } + ifwinexist, InstallShield, InstallShield Wizard Complete + { + sleep 1000 + break + } + sleep 100 + } + ControlClick, Button1, InstallShield, InstallShield Wizard Complete + ControlClick, Button2, InstallShield, InstallShield Wizard Complete + ControlClick, Button4, InstallShield, InstallShield Wizard Complete + winwaitclose, InstallShield, InstallShield Wizard Complete + " + if workaround_wine_bug 24422 + then + sh "$WINETRICKS" -q d3dx9_36 + fi + if workaround_wine_bug 24217 + then + sh "$WINETRICKS" -q dsoundbug9612 + fi + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Paradox Interactive\\Victoria 2 - DEMO" +v2demo.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add vf2_demo "Virtua Fighter 2 demo (Sega, 1997) [download]" vf2_demo.exe + +load_vf2_demo() +{ + if ! test -f "$WISOTOOL_CACHE/$PACKAGE/vf2_demo.exe" + then + download $PACKAGE http://www.sega.com/support/pcdownloads/vf2_demo/vf2_demo.exe efd34dd079cdfd7b2ccc195b584d7ca10ec7e82b + fi + + mkdir -p "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_CACHE/$PACKAGE" + try unzip vf2_demo.exe -d "$WISOTOOL_TMP/$PACKAGE" + cd "$WISOTOOL_TMP/$PACKAGE" + + # installer refuses to run in Windows NT 5 or higher, so set win98 mode + # FIXME: undo this when verb is done + case "$OS" in + "Windows_NT") + export __COMPAT_LAYER=Win95 + ;; + *) + sh $WINETRICKS win98 + ;; + esac + + chmod +x SETUP.EXE + ahk_do " + SetTitleMatchMode, 2 + run, setup.exe + winwait, Welcome, Virtua + send {Enter} + winwait, Get Destination Path + send {Enter} ; accept default path + winwait, Setup + send {Enter} ; yes, create or replace + winwaitclose ; wait for error message window to go away + winwaitclose, Get Destination Path + winwait, Setup, Play + send E ; Don't play + winwaitclose + " + + cd "$olddir" + + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +C: +cd C:\\SEGA\\VF2DEMO +rem FIXME: __COMPAT_LAYER seems to be needed for XP, but breaks vista +set __COMPAT_LAYER=Win95 +VF2DEMO.exe +__EOF__ + + case "$OS" in + "Windows_NT") + warn "$PACKAGE requires an 8 or 16 bit display, so change desktop settings before running. Also, on Windows XP, you'll need to set C:\\SEGA\\VF2DEMO\VF2DEMO.exe to Win95 mode." + ;; + *) + warn "$PACKAGE requires an 8 or 16 bit display. On Linux, try pressing CTRL+ALT+F1, and running 'startx -- :1 -depth 16'. " + ;; + esac +} + +#---------------------------------------------------------------- + +verblist_add wog "World of Goo demo (2D Boy, 2008) [download]" WorldOfGooDemo.1.0.exe + +load_wog() { + if ! test -f "$WISOTOOL_CACHE/wog/WorldOfGooDemo.1.0.exe" + then + # Get temporary download location + download wog "http://www.worldofgoo.com/dl2.php?lk=demo&filename=WorldOfGooDemo.1.0.exe" + URL=`cat "$WISOTOOL_CACHE/wog/dl2.php?lk=demo&filename=WorldOfGooDemo.1.0.exe" | + grep WorldOfGooDemo.1.0.exe | sed 's,.*http,http,;s,".*,,'` + rm "$WISOTOOL_CACHE/wog/dl2.php?lk=demo&filename=WorldOfGooDemo.1.0.exe" + + download wog "$URL" e61d8253b9fe0663cb3c69018bb3d2ec6152d488 + fi + + cd "$WISOTOOL_CACHE/wog" + ahk_do " + run WorldOfGooDemo.1.0.exe + winwait, World of Goo Setup, License Agreement + sleep 1000 + send {Enter} + winwait, World of Goo Setup, Choose Components + send {Enter} + winwait, World of Goo Setup, Choose Install Location + send {Enter} + winwait, World of Goo Setup, Thank you + ControlClick, Make me dirty right now, World of Goo Setup, Thank you + send {Enter} + " + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\WorldOfGooDemo" +WorldOfGoo.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add wowtrial "World of Warcraft trial(Blizzard, 2009)" TryWoW.exe + +load_wowtrial() { + download $PACKAGE https://www.worldofwarcraft.com/downloads/files/pc/enUS/TryWoW.exe 832866b591ea20fa2e5d30c36dcca92aec9ea36a + + ahk_do " + SetTitleMatchMode, slow + run "$WISOTOOL_CACHE/$PACKAGE/TryWoW.exe" + winwait, World of Warcraft Trial v2.0.0.373 + sleep 1000 + controlclick, Button2, World of Warcraft Trial v2.0.0.373 + winwait, World of Warcraft Trial v2.0.0.373, &Agree + sleep 1000 + controlclick, Static2, World of Warcraft Trial v2.0.0.373 + sleep 1000 + controlclick, Button3, World of Warcraft Trial v2.0.0.373 + winwait, World of Warcraft Trial v2.0.0.373, C:\Program Files\World of Warcraft Trial + sleep 1000 + controlclick, Button2, World of Warcraft Trial v2.0.0.373, C:\Program Files\World of Warcraft Trial + ; FIXME: What does the success window look like? + winwait, Launcher, Launcher requires write permission + sleep 1000 + controlclick, Button1, Launcher + " +} + +#---------------------------------------------------------------- + +verblist_add wowbc "World of Warcraft: Battle Chest (Blizzard, 2008)" \ + c874f5bc676eef8e60d3d232fe6db185c4632fb3.iso + +load_wowbc() { + test -f "$WINDIR"/utorrent.exe || try sh $WINETRICKS utorrent + + case "$LANG" in + en_US*) ;; + *) die "This script probably only works for World of Warcraft in the enUS locale." + esac + + # Torrent file URLs found on http://www.wowwiki.com/Patch_mirrors + # Patches 3.3.2.11403-to-3.3.3.11685-enUS-patch.exe up to 3.3.5 are downloaded from http://alexsmith.im/wow-patches/enus-patches + download $PACKAGE "http://a.wirebrain.de/wow/torrent/WoW-3.x.x.x-3.2.0.10192-x86-Win-enUS.torrent" f9e96e7b4edc6a4c22faad084eef147853e3ebb5 + download $PACKAGE "http://a.wirebrain.de/wow/torrent/WoW-3.2.0.10192-3.3.0.10958-x86-Win-enUS.torrent" 33bdf8749b3c3781451b5f6ac2a59ba29d6c61bd + download $PACKAGE "http://a.wirebrain.de/wow/torrent/WoW-3.3.0.10958-3.3.0.11159-x86-Win-enUS.torrent" b7ad37a75713f6d8e578558ca1e321927192c6c6 + download $PACKAGE "http://a.wirebrain.de/wow/torrent/WoW-3.3.0.11159-to-3.3.2.11403-enUS-patch.torrent" f73763541197fecdcca9b9f8cf91e83cde989a49 + download $PACKAGE "http://uk1.files.alexsmith.im/enUS/WoW-3.3.2.11403-to-3.3.3.11685-enUS-patch.exe" ce73a0a8aa9f6eaf00b5e7cd0a34eb928738fd36 + download $PACKAGE "http://uk1.files.alexsmith.im/enUS/WoW-3.3.3.11685-to-3.3.3.11723-enUS-patch.exe" + download $PACKAGE "http://uk1.files.alexsmith.im/enUS/WoW-3.3.3.11723-to-3.3.5.12213-enUS-patch.exe" + + cd "$WISOTOOL_CACHE/$PACKAGE" + patch1=`stat -Lc%s WoW-3.2.0-enUS-patch.exe` + patch2=`stat -Lc%s WoW-3.2.0.10192-to-3.3.0.10958-enUS-patch.exe` + patch3=`stat -Lc%s WoW-3.3.0.10958-to-3.3.0.11159-enUS-patch.exe` + patch4=`stat -Lc%s WoW-3.3.0.11159-to-3.3.2.11403-enUS-patch.exe` + patch5=`stat -Lc%s WoW-3.3.2.11403-to-3.3.3.11685-enUS-patch.exe` + patch6=`stat -Lc%s WoW-3.3.3.11685-to-3.3.3.11723-enUS-patch.exe` + patch7=`stat -Lc%s WoW-3.3.3.11723-to-3.3.5.12213-enUS-patch.exe` + + if [ $patch5 -ne 128600432 ] || [ $patch6 -ne 4959280 ] || [ $patch7 -ne 24886168 ] + then + die "Failed to download patch 3.3.3.11685, or patch 3.3.3.11723, or patch 3.3.5.12213" + fi + + if [ $patch1 -eq 1323316774 ] && [ $patch2 -eq 572045930 ] && [ $patch3 -eq 5101376 ] && [ $patch4 -eq 167050587 ] + then + echo "All patches have been downloaded" + else + UT_WINPATH="$WISOTOOL_CACHE_WIN\\wowbc" + for torrent in `ls *.torrent` + do + try $WINE utorrent "/DIRECTORY" "$UT_WINPATH" "$UT_WINPATH\\$torrent" & + done + + # Start uTorrent, have it wait until all downloads are finished + ahk_do " + SetTitleMatchMode, 2 + winwait, Torrent + sleep 3000 + ;App doesnt remember the set as default setting + winwait, Torrent, default + send n + sleep 3000 + ;Cancels bandwidth test on first run of uTorrent + ifwinactive, Torrent, Bandwidth + { + controlclick, Button5, Torrent, Bandwidth + } + sleep 1000 + ;Sets paramater to close uTorrent once all downloads are complete + send !o + send a{Down}{Enter} + winwaitclose, Torrent + " + fi + cd "$olddir" + + if ! test -d "$WISOTOOL_TMP"/$PACKAGE/tempcd + then + try mkdir -p "$WISOTOOL_TMP"/$PACKAGE/tempcd + iso_mount "$WISOTOOL_CACHE"/$PACKAGE/c874f5bc676eef8e60d3d232fe6db185c4632fb3.iso + sleep 5 + try cp -r "$ISO_MOUNT_ROOT"/* "$WISOTOOL_TMP"/$PACKAGE/tempcd + fi + + # Checks if WoW is installed. If so, skips primary install and proceeds to applying patches + if ! test -d "$DRIVE_C/Program Files/World of Warcraft" + then + ahk_do " + run "$WISOTOOL_TMP_WIN"/$PACKAGE/tempcd/Installer.exe + SetTitleMatchMode, 2 + winwait, Burning Crusade Installer + sleep 4000 + send b + sleep 2000 + send o + winwait, License Agreement + winactivate + MouseMove, 300, 300 + Click WheelDown, 90 + Sleep, 2000 + ControlClick, Button1 + winwait, Installation Destination Directory + send {Enter} + winwait, Manage + ControlClick, Button2 + Loop + { + ; World Of Warcraft directory is created as .temp, then renamed when done + ifExist, C:\Program Files\World of Warcraft\Logs\Burning Crusade Install Log.html + break + Sleep 10000 + } + " + killall Launcher.exe + killall Installer.exe + fi + + cd "$WISOTOOL_CACHE/$PACKAGE" + for file in \ + WoW-3.2.0-enUS-patch.exe\ + WoW-3.2.0.10192-to-3.3.0.10958-enUS-patch.exe\ + WoW-3.3.0.10958-to-3.3.0.11159-enUS-patch.exe\ + WoW-3.3.0.11159-to-3.3.2.11403-enUS-patch.exe\ + WoW-3.3.2.11403-to-3.3.3.11685-enUS-patch.exe\ + WoW-3.3.3.11685-to-3.3.3.11723-enUS-patch.exe\ + WoW-3.3.3.11723-to-3.3.5.12213-enUS-patch.exe + + + do + ahk_do " + run "$WISOTOOL_CACHE"/$PACKAGE/$file + SetTitleMatchMode, 2 + winwait, Blizzard Updater + IfWinExist, Blizzard Updater, unable to start ;Exit if patch is already applied + { + ControlClick, Button1, Blizzard Updater, unable to start + exit + } + else + { + winwait, Blizzard Updater, The update was successful + ControlClick, Button1 + winwait, Launcher + winkill, Launcher + winwait, World of Warcraft + sleep 5000 ; Give time for Play button to appear + IfWinExist, World of Warcraft, Play ;Exit if last patch is applied + { + ; Done! No more patches. + winkill, World of Warcraft, Play + } + else + { + ; Dont let it download the next patch + winwait, World of Warcraft, Estimated time + winkill, World of Warcraft, Estimated time + } + } + " + echo "Patched $file" + sleep 5 + done + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\World of Warcraft" +Wow.exe +__EOF__ +} + +#---------------------------------------------------------------- + +verblist_add zootycoon2_demo "Zoo Tycoon 2 demo (Microsoft, 2004) [download]" Zoo2Trial.exe + +load_zootycoon2_demo() { + download $PACKAGE "http://download.microsoft.com/download/9/f/6/9f6a95f0-f34a-4312-9749-77b81d3de245/Zoo2Trial.exe" 60ad1bb34351f97b579c58234b926055f7979126 + + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + ; Uses winwaitactive, because the windows appear and immediately after another window + ; gets in the way, then disappears after a second or so + SetTitleMatchMode, 2 + run Zoo2Trial.exe + winwaitclose, APPMESSAGE + winwaitactive, Zoo Tycoon 2 Trial, AUTORUN + sleep 1000 + controlclick, CButtonClassName1, Zoo Tycoon 2 Trial, AUTORUN + winwaitclose, APPMESSAGE + winwaitactive, Zoo Tycoon 2 Trial, INSTALLTYPE + ; 1 second was not enough. + sleep 3000 + controlclick, CButtonClassName1, Zoo Tycoon 2 Trial, INSTALLTYPE + winwaitactive, Zoo Tycoon 2 Trial, COMPLETE + winclose, Zoo Tycoon 2 Trial, COMPLETE + " + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\Microsoft Games\\Zoo Tycoon 2 Trial Version" +zt2demoretail.exe +__EOF__ +} + +#---------------------------------------------------------------- + +# Generic Positech installer +_load_positech() +{ + dl_path="$1" + hash_sum="$2" + installer_name="$3" + window_title="$4" + installed_dir="$5" + installed_exe="$6" + download $PACKAGE $dl_path $hash_sum + cd "$WISOTOOL_CACHE/$PACKAGE" + ahk_do " + run, $installer_name + WinWait, $window_title + WinActivate + ControlClick TNewButton1 ; Next + WinWait, $window_title,Select Destination + WinActivate + ControlClick TNewButton3 ; Next + WinWait, $window_title,Select Start + WinActivate + ControlClick TNewButton4 ; Next + WinWait, $window_title,Ready to Install + WinActivate + ControlClick TNewButton4 ; Install + WinWait, $window_title,Completing + WinActivate + Send {Space} ; Untick launch + ControlClick TNewButton4 ; Finish + " + cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\\$installed_dir" +$installed_exe +__EOF__ +} + +verblist_add gsb_demo "Gratuitous Space Battles demo (Positech Games, 2009) [download]" GSBDemoInstaller.exe + +load_gsb_demo() { + _load_positech "http://www.positech.co.uk/gratuitousspacebattles/downloads/GSBDemoInstaller.exe" 83dab80aa3bb94aa886c94b2cb68fa54558fe563 "GSBDemoInstaller.exe" "Setup - Gratuitous Space Battles Demo" "Gratuitous Space Battles Demo" "GSBDemo.exe" + if workaround_wine_bug 22393 + then + sh "$WINETRICKS" -q d3dx9_36 + fi + if workaround_wine_bug 24395 + then + warn "If the game crashes with 'Error initializing output device. ..\src\GUI_Sounds.cpp 661', try disabling pulseaudio, and post a comment to bug 24395 saying whether it helped." + fi +} + +verblist_add democracy2_demo "Democracy2 demo (Positech Games, 2007) [download]" Democracy2Demo.exe + +load_democracy2_demo() { + _load_positech "http://www.positech.co.uk/democracy2/Democracy2Demo.exe" 117cb63119adb3f79034ee3fcf641629dc825615 "Democracy2Demo.exe" "Setup - Democracy 2 Demo" "Democracy2 Demo" "Democracy2.exe" +} + +verblist_add kudos2_demo "Kudos 2 demo (Positech Games, 2008) [download]" Kudos2DemoInstaller.exe + +load_kudos2_demo() { + _load_positech "http://www.positech.co.uk/kudos2/Kudos2DemoInstaller.exe" 31abe5a4ce10eb111e0306c8c1b5570f2fd43f33 "Kudos2DemoInstaller.exe" "Setup - Kudos 2 Demo" "Kudos 2 Demo" "Kudos2Demo.exe" +} + +verblist_add rocklegend_demo "Rock Legend demo (Positech Games, 2007) [download]" RockLegendDemo.exe + +load_rocklegend_demo() { + _load_positech "http://www.positech.co.uk/rocklegend/RockLegendDemo.exe" b9f090d2e6a9e7be860a52c339d599e3c7bfe516 "RockLegendDemo.exe" "Setup - Kudos Rock Legend Demo" "Kudos Rock Legend Demo" "KudosRockLegendDemo.exe" +} + +#---------------------------------------------------------------- + +# Generic Steam installer +# Usage: app_id game_title game_folder +# app_id +# Application ID. See http://developer.valvesoftware.com/wiki/Steam_Application_IDs for list. +# game_title +# Used for AutoHotKey. FIXME: is this guaranteed to match the wiki? +# game_cache_file +# .gcf or .ncf file name. Note: Does _NOT_ always match the game folder name below. +# game_folder +# Folder where files are stored under $STEAMDIR/steamapps/common/ +# game_extra_files +# Most games/demos come with one .gcf or .ncf file, then everything else in the +# $STEAMDIR/steamapps/common/$game_folder directory. Some (Total War demos) have several +# more .gcf/.ncf files. This should be a list, separated by commas. +# +# +# Note: Requires $STEAMUSER $STEAMPASS to be set in your environment or in +# "$WISOTOOL_CACHE"/STEAM_USER" and in "$WISOTOOL_CACHE"/STEAM_PASS" + +_load_steam_app() +{ + if [ ! "$STEAM_USER" -a ! -f "$WISOTOOL_CACHE"/STEAM_USER ] + then + die "You need to set STEAM_USER variable in your environment or put it in "$WISOTOOL_CACHE"/STEAM_USER" + elif [ ! "$STEAM_USER" -a -f "$WISOTOOL_CACHE"/STEAM_USER ] + then + STEAM_USER=`cat "$WISOTOOL_CACHE"/STEAM_USER` + fi + + if [ ! "$STEAM_PASS" -a ! -f "$WISOTOOL_CACHE"/STEAM_PASS ] + then + die "You need to set STEAM_PASS variable in your environment or put it in "$WISOTOOL_CACHE"/STEAM_PASS" + elif [ ! "$STEAM_PASS" -a -f "$WISOTOOL_CACHE"/STEAM_PASS ] + then + STEAM_PASS=`cat "$WISOTOOL_CACHE"/STEAM_PASS` + fi + + steam_dir="$programfilesdir_unix/Steam" + + test -f "$steam_dir/Steam.exe" || try sh $WINETRICKS -q steam + + app_id="$1" + game_title="$2" + game_cache_file="$3" + game_folder="$4" + game_extra_files="$5" + + # If files are already cached, skipped downloading/installing and just restore from cache: + if [ ! -f "$WISOTOOL_CACHE/$PACKAGE/$game_cache_file" ] + then + cd "$steam_dir" + sleep 5 + ahk_do " + ; Originally used: + ; run, Steam.exe -login $STEAM_USER $STEAM_PASS -applaunch $app_id + ; but that doesn't work for all programs. Some would silently fail to start. + + ; Instead, run steam in the background, sleep for 30s to give it enough time + ; to start, then use the steam:// prototol to install: + run, Steam.exe -login $STEAM_USER $STEAM_PASS + ; FIXME: should detect steam running properly... + ; + ; Give Steam up to a minute to update itself. Once it is, let it update. + ; Then give it 30 more seconds. + ; FIXME: perhaps there's a log/file showing if steam is up to date... + Winwait, Steam - Updating,,60 + Loop + { + SetTitleMatchMode, Slow + IfWinExist, Steam - Updating + sleep 10000 + IfWinNotExist, Steam - Updating + break + } + sleep 30000 + run, steam://install/$app_id + + ; Info screen, disk space required, etc. + winwait, Install - $game_title + winactivate, Install - $game_title + ; FIXME: How long should this take? + sleep 10000 + send {enter} + sleep 10000 + + ; Install shortcuts? + winwait, Install - $game_title + winactivate, Install - $game_title + ; FIXME: How long should this take? + sleep 10000 + send {enter} + sleep 10000 + + ; Here, it's getting the .gcf/.ncf files. This is normally quick, but can take a long time. + ; Most finish in a few seconds, but the Total War demos takes a couple minutes. + ; So, we'll exit AHK, then wait for all the game files to be present, + ; before continuing the install. + exit + " + + if test ! "$game_extra_files" = "" + then + # FIXME: Should we perhaps sha1sum? That would get messy... + cd steamapps + IFS=$',' + for x in $game_extra_files + do + while true + do + if test -f $x + then + break + else + sleep 5 + fi + done + done + unset IFS + cd .. + fi + + # FIXME: Is this a long enough sleep? + sleep 30 + + ahk_do " + winwait, Install - $game_title + winactivate, Install - $game_title + ; FIXME: How long should this take? + sleep 10000 + send {enter} + " + + # now wait for the download to complete. We're lucky, Steam has some nice logging + # so we wait until Steam reports the download is complete. Then, to be safe, sleep + # and extra 30 seconds, shutdown steam nicely, and finally, cache everything. + # These are the lines I found for success: + # + # $steam_dir/logs/download_log.txt + # [2010-06-17 00:53:06]: Got eSteamNotifyAppDownloadingPaused for AppID 6110 + # [2010-06-17 00:53:06]: AppID 6110 is now marked not downloading + # [2010-06-17 00:53:06]: Got eSteamNotifyCacheLoadingCompleted for AppID 6110 + # [2010-06-17 00:53:06]: SetHasAllLocalContent(true) called for 6110 + # FIXME: are any of these safe to use? + + dl_log="$steam_dir/logs/download_log.txt" + while true + do + grep "SetHasAllLocalContent(true) called for $app_id" "$dl_log" && break + sleep 15 + done + + sleep 30 + $WINE Steam.exe -shutdown + mkdir -p "$WISOTOOL_CACHE/$PACKAGE" + cp -r "$steam_dir/steamapps/common/$game_folder" "$WISOTOOL_CACHE/$PACKAGE" + cp -r "$steam_dir/steamapps/$game_cache_file" "$WISOTOOL_CACHE/$PACKAGE" + if test ! "$game_extra_files" = "" + then + IFS=$',' + for x in $game_extra_files + do + cp "$steam_dir/steamapps/$x" "$WISOTOOL_CACHE/$PACKAGE" + done + unset IFS + fi + else + mkdir -p "$steam_dir/steamapps/common" + cp -r "$WISOTOOL_CACHE/$PACKAGE/$game_folder" "$steam_dir/steamapps/common" + cp -r "$WISOTOOL_CACHE/$PACKAGE/$game_cache_file" "$steam_dir/steamapps" + if test ! "$game_extra_files" = "" + then + IFS=$',' + for x in $game_extra_files + do + cp "$WISOTOOL_CACHE/$PACKAGE/$x" "$steam_dir/steamapps" + done + unset IFS + fi + fi + + +cat > "$DRIVE_C/run-$PACKAGE.bat" <<__EOF__ +${programfilesdrive}: +cd "$programfilesdir_x86_win\Steam" +.\Steam.exe -login $STEAM_USER $STEAM_PASS -applaunch $app_id +__EOF__ + +} + +# Sorted by app_id: + +verblist_add multiwinia_demo_steam "Multiwinia: Demo (Steam, 2008)" "multiwinia content.ncf" + +load_multiwinia_demo_steam() +{ + _load_steam_app "1540" "Multiwinia Demo" "multiwinia content.ncf" "multiwinia" +} + +verblist_add arx_fatalis_demo_steam "Arx Fatalis Demo (Steam, 2008)" "arx fatalis base.ncf" + +load_arx_fatalis_demo_steam() +{ + _load_steam_app "1710" "Arx Fatalis" "arx fatalis base.ncf" "arx fatalis" +} + +verblist_add painkiller_demo_steam "Painkiller Demo (Steam, 2004)" "painkiller demo content.ncf" + +load_painkiller_demo_steam() +{ + _load_steam_app "3210" "Painkiller Demo" "painkiller demo content.ncf" "painkiller demo" +} + +verblist_add bookworm_adventures_deluxe_demo_steam "Bookworm Adventures Deluxe Demo (Steam, 2007)" "bookworm adventures deluxe content.ncf" + +load_bookworm_adventures_deluxe_demo_steam() +{ + _load_steam_app "3270" "Bookworm Adventures Deluxe Demo" "bookworm adventures deluxe content.ncf" "bookworm adventures deluxe" +} + +verblist_add zen_of_sudoku_demo_steam "Zen of Sudoku Demo (Steam, 2006)" "zenofsudoku.ncf" + +load_zen_of_sudoku_demo_steam() +{ + _load_steam_app "4910" "Zen of Sudoku Demo" "zenofsudoku.ncf" "zen of sudoku" +} + +verblist_add eets_demo_steam "Eets Demo (Steam, 2006)" "eets content.ncf" + +load_eets_demo_steam() +{ + _load_steam_app "6110" "Eets Demo" "eets content.ncf" "eets" +} + +verblist_add longest_journey_demo_steam "The Longest Journey Demo (Steam, 2000)" "the longest journey demo content.ncf" + +load_longest_journey_demo_steam() +{ + _load_steam_app "6320" "The Longest Journey Demo" "the longest journey demo content.ncf" "the longest journey demo" +} + +verblist_add joint_task_force_demo_steam "Joint Task Force Demo (Steam, 2006)" "joint task force demo content.ncf" + +load_joint_task_force_demo_steam() +{ + _load_steam_app "6410" "Joint Task Force Demo" "joint task force demo content.ncf" "joint task force demo" +} + +verblist_add lost_planet_dx9_demo_steam "Lost Planet Extreme Condition Demo (Steam, 2007)" "lost planet demo dx9 content.ncf" + +load_lost_planet_dx9_demo_steam() +{ + _load_steam_app "6530" "Lost Planet Extreme Condition Demo" "lost planet demo dx9 content.ncf" "lost planet demo" +} + +verblist_add lost_planet_dx10_demo_steam "Lost Planet Extreme Condition DX10 Demo (Steam, 2007)" "lost planet demo dx10 content.ncf" + +load_lost_planet_dx10_demo_steam() +{ + _load_steam_app "6540" "Lost Planet Extreme Condition DX10 Demo" "lost planet demo dx10 content.ncf" "lost planet dx10 demo" +} + +verblist_add total_war_and_empire_demo_steam "Empire: Total War Demo (Steam, 2009)" "empire total war demo main.ncf" + +load_total_war_and_empire_demo_steam() +{ + _load_steam_app "10620" "Empire: Total War" "empire total war demo main.ncf" "empire total war demo" "empire total war demo english.ncf,empire total war demo executable.ncf,empire total war demo redist.ncf" + + if workaround_wine_bug 18490 + then + warn "You'll probably want the patch from http://bugs.winehq.org/show_bug.cgi?id=18490. Otherwise, the game will crash when starting a battle." + fi + +} + +verblist_add napoleon_total_war_demo_steam "Napoleon: Total War Demo (Steam, 2010)" "napoleon total war demo english.ncf" + +load_napoleon_total_war_demo_steam() +{ + _load_steam_app "34050" "Napoleon: Total War" "napoleon total war demo english.ncf" "napoleon total war demo" "napoleon total war demo data_34052.ncf,napoleon total war demo exe_34051.ncf,napoleon total war demo redist_34053.ncf" + + if workaround_wine_bug 23126 + then + try sh "$WINETRICKS" -q vcrun2005 + fi + + if workaround_wine_bug 23356 + then + try sh "$WINETRICKS" -q d3dx9 + fi + + if workaround_wine_bug 18490 + then + warn "You'll probably want the patch from http://bugs.winehq.org/show_bug.cgi?id=18490. Otherwise, the game will crash when starting a battle." + fi + +} + +#---------------------------------------------------------------- + +print_version() { + echo "$VERSION" +} + +#--------- Main program ----------------------------------------- + +olddir=`pwd` +srcdir=`dirname $0` +srcdir=`cd $srcdir; /bin/pwd` + +# Load external verbs. Filenames may not contain spaces. +if cd "$WISOTOOL_VERBS" +then + for file in `find . -type f -name '*.verb' 2>/dev/null` + do + . $file + done +fi +cd "$olddir" + +verblist_finish + +# On Solaris, choose more modern commands (needed for id -u). +case `uname -s` in +SunOS) PATH="/usr/xpg6/bin:/usr/xpg4/bin:$PATH" + ;; +esac + +case "$1" in +-V|--version) + echo "wisotool version $VERSION. (C) 2007-2010 Dan Kegel et al. LGPL." + exit 0 + ;; +esac + +detect_menu +detect_sudo + +GUI=0 +case x"$1" in +x) GUI=1 ;; +x-h|x--help|xhelp) usage ; exit 1 ;; +esac + +case "$OS" in + "Windows_NT") + ;; + *) + # Prevent running with wrong user id. + # It's bad to create files as the wrong user! + die_if_user_not_dirowner "$WINEPREFIX" + # Wine misbehaves strangely if user doesn't own the parent of $WINEPREFIX. + die_if_user_not_dirowner "$WINEPREFIX/.." + + if [ ! -x "`which "$WINE" 2>/dev/null`" ] + then + die "Cannot find wine ($WINE)" + fi + + # Create wineprefix if not already there + test -d "$WINEPREFIX" || WINEDLLOVERRIDES=mshtml= $WINE cmd /c echo yes > /dev/null 2>&1 + ;; +esac + +mkdir -p "$WISOTOOL_TMP" + +case $GUI in +1) showmenu ; set $todo ;; +esac + +mkdir -p "$WISOTOOL_CACHE" + +WINETRICKS="$srcdir/winetricks" +if ! test -f "$WINETRICKS" +then + WINETRICKS="$WISOTOOL_CACHE/winetricks" + download . http://kegel.com/wine/winetricks +fi + +# The folder-name is localized! +programfilesdir_win="`unset WINEDEBUG; WINEDLLOVERRIDES=mshtml= $WINE cmd.exe /c echo "%ProgramFiles%" | tr -d '\015'`" +test x"$programfilesdir_win" != x || die "$WINE cmd.exe /c echo '%ProgramFiles%' returned empty string" +case "$programfilesdir_win" in +%*) die "$WINE cmd.exe /c echo '%ProgramFiles%' returned unexpanded string... do you own the parent of $WINEPREFIX ?" +esac +programfilesdir_unix="`unset WINEDEBUG; $XXXPATH -u "$programfilesdir_win" | tr -d '\015' `" +test x"$programfilesdir_unix" != x || die "winepath -u $programfilesdir_win returned empty string" +wisotool_tmp_win="`$XXXPATH -w "$WISOTOOL_TMP"`" + +# 64 bit windows has a second directory for program files +programfilesdir_x86_win="${programfilesdir_win} (x86)" +programfilesdir_x86_unix="${programfilesdir_unix} (x86)" +if ! test -d "$programfilesdir_x86_unix" +then + programfilesdir_x86_win="${programfilesdir_win}" + programfilesdir_x86_unix="${programfilesdir_unix}" +fi +# FIXME: why export this? +export programfilesdir_x86_unix + +# FIXME: don't hardcode +programfilesdrive=c + +# localized, and different across Windows versions: +appdata_win="`unset WINEDEBUG; WINEDLLOVERRIDES=mshtml= $WINE cmd.exe /c echo "%AppData%" | tr -d '\015'`" +appdata_unix="`unset WINEDEBUG; $XXXPATH -u "$appdata_win" | tr -d '\015' `" + +# (Fixme: get fonts path from SHGetFolderPath +# See also http://blogs.msdn.com/oldnewthing/archive/2003/11/03/55532.aspx) +# +# Did the user rename Fonts to fonts? +if test ! -d "$WINDIR"/Fonts && test -d "$WINDIR"/fonts +then + winefontsdir="$WINDIR"/fonts +else + winefontsdir="$WINDIR"/Fonts +fi + +# Mac folks tend to not have sha1sum, but we can make do with openssl +if [ -x "`which sha1sum 2>/dev/null`" ] +then + SHA1SUM="sha1sum" +elif [ -x "`which openssl 2>/dev/null`" ] +then + SHA1SUM="openssl dgst -sha1" +else + die "No sha1sum utility available." +fi + +if [ ! -x "`which unzip 2>/dev/null`" ] +then + die "Cannot find unzip. Please install it (e.g. 'sudo apt-get install unzip' or 'sudo yum install unzip')." +fi + +while test "$1" != "" +do + PACKAGE=$1 + # Kludge: shorthand synonyms. Find some more elegant way of doing this. + case $PACKAGE in + dao) PACKAGE=dragonage ;; + sc2) PACKAGE=starcraft2 ;; + esac + + case $PACKAGE in + -q) WISOTOOL_QUIET="/q" + WINEDEBUG=${WINEDEBUG:-"fixme-all"} + export WINEDEBUG + ;; + -v) set -x;; + ls) list_available_verbs;; + load) load_iso dd;; + load_harder) load_iso ddrescue;; + load=*) key="`echo $PACKAGE | sed 's/load=//'`"; load_iso dd "$key";; + refile|migrate) migrate_files;; + version) print_version;; + + *.verb) + case $1 in + */*) . $1 ;; + *) . ./$1 ;; + esac + PACKAGE=`echo $1 | sed 's,.*/,,;s,.verb,,'` + load_$PACKAGE + ;; + *) if verblist_is_legal_verb $PACKAGE + then + load_$PACKAGE + else + echo Unknown arg $PACKAGE; usage ; exit 1; + fi + ;; + esac + # Provide a bit of feedback + test "$WISOTOOL_QUIET" = "" && case $PACKAGE in + -q) echo Setting quiet mode;; + -v) echo Setting verbose mode;; + *) #echo "$PACKAGE done" ;; + esac + shift + + # if verbs doesn't preserve the working directory, restore it + cd "$olddir" + + # User-specific postinstall hook. + # Source it so the script can call download() if needed. + if [ -f "$WISOTOOL_POST"/$PACKAGE/$PACKAGE-postinstall.sh ] + then + chmod +x "$WISOTOOL_POST/$PACKAGE/$PACKAGE-postinstall.sh" + ( . "$WISOTOOL_POST"/$PACKAGE/$PACKAGE-postinstall.sh ) + fi +done + +test "$WISOTOOL_CACHE_SYMLINK" && rm -f "$WISOTOOL_CACHE_SYMLINK" + +# remove the temp directory +chmod -R 700 "$WISOTOOL_TMP" +while ! rm -rf "$WISOTOOL_TMP" +do + # Sometimes apps take a while to exit on Vista + sleep 1 +done diff --git a/hardware/emulator/wine/pspec.xml b/hardware/emulator/wine/pspec.xml new file mode 100644 index 0000000000..82b7497e36 --- /dev/null +++ b/hardware/emulator/wine/pspec.xml @@ -0,0 +1,262 @@ + + + + + wine + http://www.winehq.org/ + + PisiLinux Community + admins@pisilinux.org + + i686 + LGPLv2.1 + app:console + WINE Is Not An Emulator, which lets you run Microsoft Windows applications + Wine allows running Windows 3.*, Windows 95/98 and Windows NT programs on a i386 (or compatible) machine running X11. It is still alpha level code; don't expect everything to work. + https://dl.winehq.org/wine/source/1.9/wine-1.9.13.tar.bz2 + https://github.com/wine-compholio/wine-staging/archive/v1.9.13.tar.gz + + + lcms2-devel + libao-devel + libSM-devel + mpg123-devel + openal-devel + libXext-devel + libxslt-32bit + mesa-glu-devel + alsa-lib-devel + gstreamer-devel + openldap-client + libgphoto2-devel + pulseaudio-libs-devel + gst-plugins-base-devel + + + cups-devel + gnutls-devel + libXcursor-devel + libXi-devel + libXrandr-devel + libXxf86vm-devel + sane-backends-devel + unixODBC-devel + + + dbus-devel + fontconfig-devel + gsm-devel + libjpeg-turbo-devel + libXcomposite-devel + libXinerama-devel + libxslt-devel + tiff-devel + giflib-devel + v4l-utils + libpng + libtevent-devel + + + jack-audio-connection-kit-devel + + + fontforge + libpcap-devel + util-linux + ncurses-devel + + + + + wine + app:gui + + lcms2 + libX11 + libSM + mpg123 + openal + libXext + mesa-glu + alsa-lib + gstreamer + libgphoto2 + libXcomposite + openldap-client + pulseaudio-libs + gst-plugins-base + libjpeg-turbo + libtevent + p11-kit + libxml2 + giflib + ncurses + + cups + gnutls + libXcursor + libXi + libXrandr + libXxf86vm + sane-backends + unixODBC + + + cabextract + libpcap + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/desktop-directories + /usr/share/wine + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + winetricks + + wisotool + + menu/wine.menu + menu/Wine.directory + + menu/taskmgr.desktop + menu/uninstaller.desktop + menu/winecfg.desktop + menu/winefile.desktop + menu/winetricks.desktop + menu/wine-mime-msi.desktop + menu/wine-oleview.desktop + menu/wine-winemine.desktop + + + + + wine-devel + Wine development environment + + wine + + + /usr/bin/function_grep.pl + /usr/bin/widl + /usr/bin/winebuild + /usr/bin/winecpp + /usr/bin/wineg++ + /usr/bin/winegcc + /usr/bin/winemaker + /usr/bin/wmc + /usr/bin/wrc + /usr/include/wine + /usr/share/aclocal + /usr/share/man/man1/widl.1 + /usr/share/man/man1/winebuild.1 + /usr/share/man/man1/winecpp.1 + /usr/share/man/man1/wineg++.1 + /usr/share/man/man1/winegcc.1 + /usr/share/man/man1/winemaker.1 + /usr/share/man/man1/wmc.1 + /usr/share/man/man1/wrc.1 + + + + + + winetricks + winetricks is a helper script to download and install various redistributable runtime libraries needed to run some programs in Wine. + + /usr/bin/winetricks + /usr/share/applications/winetricks.desktop + + + + + wine-32bit + emul32 + 32-bit shared libraries for wine + emul32 + + zlib-32bit + glib2-32bit + lcms2-32bit + libSM-32bit + p11-kit-32bit + giflib-32bit + libpng-32bit + libv4l-32bit + libX11-32bit + mpg123-32bit + openal-32bit + libXext-32bit + libxml2-32bit + alsa-lib-32bit + mesa-glu-32bit + openldap-32bit + ncurses-32bit + libXrandr-32bit + libXdamage-32bit + libXxf86vm-32bit + fontconfig-32bit + libXcursor-32bit + libXxf86dga-32bit + gstreamer-32bit + libXcomposite-32bit + pulseaudio-libs-32bit + gst-plugins-base-32bit + + + zlib-32bit + lcms2-32bit + libSM-32bit + libX11-32bit + mpg123-32bit + openal-32bit + libXext-32bit + libxml2-32bit + alsa-lib-32bit + mesa-glu-32bit + openldap-32bit + gsm-32bit + cups-32bit + tiff-32bit + libXi-32bit + gnutls-32bit + libpng-32bit + ncurses-32bit + openssl-32bit + p11-kit-32bit + giflib-32bit + alsa-lib-32bit + libXrandr-32bit + gstreamer-32bit + fontconfig-32bit + libXcursor-32bit + libXdamage-32bit + libXxf86vm-32bit + libXxf86dga-32bit + libtool-ltdl-32bit + libXcomposite-32bit + libjpeg-turbo-32bit + pulseaudio-libs-32bit + + + /usr/lib32/libwine.so* + /usr/lib32/wine + + + + + + 2016-07-02 + 1.9.13 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + diff --git a/hardware/emulator/wine/translations.xml b/hardware/emulator/wine/translations.xml new file mode 100644 index 0000000000..137acf5462 --- /dev/null +++ b/hardware/emulator/wine/translations.xml @@ -0,0 +1,20 @@ + + + + wine + Wine bir "Emülator" değildir,Windows uygulamalarını çalıştırma imkanı sunar. + Wine X11 çalıştıran bir i386 (veya uyumluları) makinede Windows 3.*, Windows 95/98 ve Windows NT programlarını çalıştırmanıza imkân verir. Halâ alfa düzeyinde olduğundan her şey çalışmayabilir. + Wine ist kein Emulator, mit dem Sie Microsoft Windows-Anwendungen laufen lässt + Wine gibt ihnen die möglichkeit um Windows 3. *, Windows 95/98 und Windows NT-Programme auf einem i386 (oder kompatibel) System X11 zu laufen. Es ist immer noch Alpha-Level-Code, nicht erwarten, dass alles funktioniert. + + + + wine-devel + Wine geliştirme ortamı + + + + wine-32bit + wine için 32-bit paylaşımlı kitaplıklar + + diff --git a/pisi-index.xml b/pisi-index.xml index a726e963b7..04981b99fd 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -405,422 +405,496 @@ - icecast - http://www.icecast.org + avahi + http://avahi.org/ PisiLinux Community admins@pisilinux.org - GPLv2 - service - multimedia.stream - ShoutCast compatible streaming media server - Shoutcast uyumlu muzik yayın sunucusu - Icecast is a streaming media server which currently supports Ogg Vorbis and MP3 audio streams. It can be used to create an Internet radio station or a privately running jukebox and many things in between. - Icecast, Ogg Vorbis ve Mp3 formatlarını destekleyerek ağ üzerinden muzik yayını yapmanızı sağlar. Icecast ile bir internet radyo istasyonu kurabilir ya da kendinize özel bir şarkı liste oluşturup paylaşabilirsiniz. - icecast - http://downloads.xiph.org/releases/icecast/icecast-2.4.3.tar.gz - - libxslt-devel - libogg-devel - libvorbis-devel - libkate-devel - speex-devel - libtheora-devel - curl-devel - libxml2-devel - openssl-devel - - - pthread_flag.patch - icecast.conf.patch - - multimedia/stream/icecast/pspec.xml - - - icecast - - libxslt - libogg - libvorbis - libkate - speex - libtheora - curl - libxml2 - openssl - - - /etc/icecast - /usr/bin - /usr/share/doc - /usr/share/icecast - /usr/share/man - /usr/share/pixmaps - /var - /run - /usr/lib/tmpfiles.d/icecast.conf - - - System.Package - System.Service - - - tmpfiles.conf - - - - - 2016-06-09 - 2.4.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-08 - 2.4.3 - First release - Stefan Gronewold(groni) - groni@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 + 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 - openssl-devel - zlib-devel + gtk2-devel + gtk3-devel + libcap-devel + libdaemon-devel + gobject-introspection-devel + libepoxy-devel + at-spi2-core-devel + gdbm-devel + intltool - multimedia/stream/rtmpdump/pspec.xml + + avahi-0.6.31-no-deprecations.patch + + network/analyzer/avahi/pspec.xml - rtmpdump + 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 + + + + + 2016-06-09 + 0.6.31 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.6.31 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libpcap + http://www.tcpdump.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + network.analyzer + A system-independent library for user-level network packet capture + Kullanıcı seviyesinde ağ paketi yakalamak için bir sistem bağımsız kitaplığı + libpcap (Packet CAPture) fourni un cadre de développement portable pour la surveillance réseau de bas niveau. On peut l'utiliser pour collecter des statistiques réseau, surveiller la sécurité, corriger le réseau, etc. + libpcap (Packet CAPture) provides a portable framework for low-level network monitoring. Applications include network statistics collection, security monitoring, network debugging, etc. + libpcap (Packet CAPture) düşük-seviye ağların izlenmesi için kullanılan bir kitaplıktır. Ağ istatistikleri, güvenlik izleyicisi, ağ hata gözleme gibi uygulamalar genellikle bu kitaplığı kullanır. + libpcap (Packet CAPture) facilita un framework portable para monitoreo de redes a a bajo nivel. Aplicaciones abarcan sistemas de estadísticas de red, monitoreo de seguridad, depuración de red, etc. + http://www.tcpdump.org/release/libpcap-1.7.4.tar.gz + + bluez-libs-devel + libnl-devel + libusb-devel + dbus-devel + + + libpcap-1.7.4-enable_bluetooth-1.patch + + network/analyzer/libpcap/pspec.xml + + + libpcap + + bluez + libnl + dbus + libusb + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + libpcap-devel + Development files for libpcap + libpcap için geliştirme dosyaları + + libpcap + + + /usr/bin/pcap-config + /usr/include + /usr/share/man/man3 + + + + + 2016-06-09 + 1.7.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-25 + 1.7.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + openslp + http://www.openslp.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + service + network.analyzer + An open-source implementation of Service Location Protocol + Servis Yer Protokolünün (Service Location Protocol - SLP) bir açık kaynak uyarlaması + Le Service Location Protocol (Protocole de Localisation de Service) est un protocole standard de recherche de l'IETF fournissant un framework (cadre de développement) pour permettre aux application résau de découvrir l'existence, la localisation et la configuration de services réseaux au sein des réseaux d'entreprises. + Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. + SLP (Service Location Protocol – Hizmet Yer Protokolu), ağlara bağlı hizmetlerin bulunabilmesi için gereken altyapıyı sağlar. + Service Location Protocol es un protocolo según estándar IETF, que provee un framework que permite a aplicaciones descubrir la existencia, locación y configuración de servicios de red en redes empresariales. + mirrors://sourceforge/openslp/openslp-2.0.0.tar.gz + + zlib-devel + openssl-devel + doxygen + docbook-xsl + + network/analyzer/openslp/pspec.xml + + + openslp openssl - zlib + /etc/slp.conf /usr/bin /usr/lib - /usr/share/doc/rtmpdump - /usr/share/man + /usr/share/doc + /usr/share/doc/openslp/html/IntroductionToSLP + /usr/share/doc/openslp/html/UsersGuide + /usr/share/doc/openslp/html/faq* + /var/log - rtmpdump-devel - Development files for rtmpdump - rtmpdump için geliştirme dosyaları + openslp-server + OpenSLP server daemon + OpenSLP hizmet sunucusu + openslp-server contains ths OpenSLP server daemon to dynamically register services. + openslp-server, dinamik hizmet kaydı için gerekli OpenSLP sunucusunu içerir. - rtmpdump + openssl + openslp + + + /etc/slp.reg + /etc/slp.spi + /usr/sbin/slpd + + + + openslp-devel + Development files for openslp + openslp için geliştirme dosyaları + + openslp + zlib-devel openssl-devel /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 + /usr/share/doc/openslp/html/ProgrammersGuide 2016-06-09 - 20150115 + 2.0.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-07-29 - 20150115 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - darkice - http://darkice.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.stream - Live audio streamer - Canlı müzik, ses yayınlama aracı - DarkIce as a live audio streamer. It records audio from an audio interface (e.g. sound card), encodes it and sends it to a streaming server. - Darkice bir canlı müzik, ses yayınlama uygulamasıdır. Bir ses arayüzünden (örneğin bir ses kartı) sesleri kaydeder, kodlar ve yayınlayacak sunucuya gönderir. - https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/darkice/darkice-1.2.tar.gz - - pulseaudio-libs-devel - lame-devel - faac-devel - libogg-devel - twolame-devel - alsa-lib-devel - libvorbis-devel - libsamplerate-devel - libopus-devel - - - darkice-1.0-gcc44.patch - - multimedia/stream/darkice/pspec.xml - - - darkice - - pulseaudio-libs - lame - faac - libogg - twolame - alsa-lib - libvorbis - libsamplerate - libgcc - libopus - - - /etc - /usr/share/doc - /usr/share/man - /usr/bin - - - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-08 - 1.2 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 0.6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-23 - 0.6.4 - First release - Stefan Gronewold (groni) - groni@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 - - - - - 2016-06-09 - 2014.05.08 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 2014.05.08 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - - - zlib-32bit - lcms2-32bit - libjpeg-turbo-32bit - libmng - - - /usr/lib32 - - - - - 2016-06-09 - 2.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 2.0.2 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-04 - 2.0.2 + 2014-02-01 + 2.0.0 First release Alihan Öztürk alihan@pisilinux.org @@ -829,3347 +903,83 @@ - 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 - - - /usr/lib32 - - - - - 2016-06-09 - 1.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-19 - 1.19 - First release - Alihan Öztürk - alihan@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.23.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 - zlib-devel - libxml2-devel - freetype-devel - xz-devel - - - GraphicsMagick-1.3.14-perl_linkage.patch - GraphicsMagick-1.3.16-multilib.patch - - multimedia/graphics/GraphicsMagick/pspec.xml - - - GraphicsMagick - app:console - - tiff - webp - zlib - bzip2 - libgcc - freetype - libX11 - libxml2 - libpng - lcms2 - libwmf - jasper - libXext - jbigkit - libgomp - ghostscript - libjpeg-turbo - libtool-ltdl - - - /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 - - - - - 2016-06-09 - 1.3.23 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-24 - 1.3.23 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-19 - 2.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - netpbm - http://netpbm.sourceforge.net/ + rrdtool + http://oss.oetiker.ch/rrdtool/ 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 - - - - - 2016-06-09 - 10.61.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-21 - 10.61.02 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 + 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 - 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 - - - - - 2016-06-09 - 1.4.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 1.4.6 - 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 - - 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* - - - - - 2016-06-09 - 2015.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-06 - 2015.0.0 - First release - Osman Erkan - osman.erkan@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 - - giflib - - - /usr/lib32 - - - - - 2016-06-09 - 5.0.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 5.0.6 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 5.0.6 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-10 - 0.91 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-29 - 0.91 - First release - Stefan Gronewold (groni) - groni@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.6.14.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 - - - - - 2016-06-20 - 1.6.14 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-15 - 1.5.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-08 - 1.5.20 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 + tcl-devel + ruby-devel + cairo-devel + pango-devel + libart_lgpl-devel + dejavu-fonts + perl + glib2-devel + python-devel + libxml2-devel + tcp-wrappers-devel + groff - - 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 + network/analyzer/rrdtool/pspec.xml - gegl + rrdtool - glib2 - gdk-pixbuf - libspiro - jasper - libpng - libsdl + lua + tcl + ruby cairo pango - babl - libjpeg-turbo + libart_lgpl + dejavu-fonts + perl + glib2 + python + libxml2 + tcp-wrappers /usr/bin /usr/lib + /usr/share/man /usr/share/doc - /usr/share/locale/ + /usr/share/rrdtool - gegl-devel - Development files for gegl - gegl için geliştirme dosyaları + rrdtool-devel - gegl - glib2-devel - babl-devel + rrdtool /usr/include /usr/lib/pkgconfig - /usr/share/gtk-doc/html 2016-06-15 - 0.2.0 + 1.5.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-12-20 - 0.2.0 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 0.1.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-07 - 0.1.12 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 1.4_rc5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 1.4_rc5 - First release - Serdar Soytetir - kaptan@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/files/libcaca/libcaca-0.99.beta19.tar.gz - - imlib2-devel - slang-devel - ncurses-devel - libX11-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 - - - - - 2016-06-09 - 0.99_beta19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 0.99_beta19 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 2.6.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.6.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - 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 - - - - - 2016-06-09 - 2.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.6.0 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 3.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 3.0.1 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 0.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 0.16 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 0.29.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 0.29.3 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 2.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.0.0 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 3.2.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 3.2.6 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 2.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.0.2 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 2.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.6.0 - First release - Osman Erkan - osman.erkan@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/* - - - - - 2016-06-09 - 0.7.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 0.7.2 - 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 - - - - - 2016-06-09 - 1.6.5.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-10 - 1.6.5.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - 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.16.tar.bz2 - - 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 - libgudev-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 - - - 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 - - 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 - libgudev - 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-an - Gimp translation files for Hollanda Antilleri - locale:ar - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/an - - - - 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-bs - Gimp translation files for Bahama - locale:ar - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/bs - - - - 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 - - - - - 2016-06-09 - 2.8.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 2.8.16 - First release - Alihan Öztürk - alihan02isilinux.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 - - - /usr/lib32 - - - - - 2016-06-09 - 2.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 2.6 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-01 - 2.6 - First release - Stefan Gronewold(groni) - groni@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.4-8.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 - - - - - 2016-06-10 - 6.9.4.8 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-03-22 - 6.9.3.7 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 0.4.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-06 - 0.4.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - - - 2016-06-09 - 0.16.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-13 - 0.16.2 + 2015-07-30 + 1.5.3 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -4178,1010 +988,42 @@ - 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 - - - - - 2016-06-09 - 0.2.8.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 0.2.8.4 - First release - Alihan Öztürk - alihan@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.4.2/libjpeg-turbo-1.4.2.tar.gz - 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 - - libjpeg-turbo - - - /usr/lib32 - - - jpeg-32bit - - - - - 2016-06-09 - 1.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.4.2 - Release bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-04-08 - 1.4.2 - First release - Stefan Gronewold(groni) - groni@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 - libgcc - - - /usr/lib32 - - - - - 2016-06-09 - 4.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 4.0.3 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-19 - 4.0.3 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 2.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.1.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.7.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-05 - 0.7.4 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 2.3.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 2.3.21 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - openjpeg - http://www.openjpeg.org/ + libupnp + http://pupnp.sourceforge.net/ 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 + network.analyzer + Librairie UPnP. + Portable UPnP library + Taşınabilir UPnP kitaplığı + Portabels UPnP Bibliothek + The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux. + http://sourceforge.net/projects/pupnp/files/pupnp/libUPnP%201.6.19/libupnp-1.6.19.tar.bz2 - tiff-devel - doxygen - libpng-devel + kernel-headers - openjpeg-20070717svn-mqc-optimize.patch + pthread-flag.patch - multimedia/graphics/openjpeg/pspec.xml + network/analyzer/libupnp/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 - - libpng-32bit - - - openjpeg - - - /usr/lib32 - - - - - 2016-06-09 - 1.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.5.2 - Release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-22 - 1.5.2 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - libjpeg-turbo-32bit - - - jasper - libjpeg-turbo-32bit - - - /usr/lib32 - - - - - 2016-06-09 - 1.900.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.900.1 - Release bump - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-06-26 - 1.900.1 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - librecad - http://librecad.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.graphics - A 2D CAD drawing tool based QCad - Bilgisayar destekli tasarım programı - LibreCAD is an application for computer aided design (CAD) in two dimensions (2D). With LibreCAD you can create technical drawings such as plans for buildings, interiors, mechanical parts or schemas and diagrams - LibreCAD ile bina, iç mekan, mekanik parça gibi teknik çizimler oluşturabilirsiniz. - librecad - https://github.com/LibreCAD/LibreCAD/archive/2.0.9.tar.gz - - qt5-base-devel - qt5-svg-devel - qt5-assistant-devel - qt5-designer-devel - qt5-linguist - qt5-qdbusviewer - freetype-devel - icu4c-devel - librsvg-devel - muparser-devel - imagemagick-devel - libxml2-devel - boost-devel - - multimedia/graphics/librecad/pspec.xml - - - librecad - - qt5-base - muparser - qt5-svg - qt5-assistant - libgcc - - - /usr/bin - /usr/include - /usr/share - /usr/share/man - /usr/share/doc - - - librecad.desktop - librecad.png - - - - - 2016-06-09 - 2.0.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-07 - 2.0.9 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 4.1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-27 - 4.1.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - dvdauthor - http://dvdauthor.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.editor - A simple DVD tool - Basit bir DVD yaratma aracı - dvdauthor is a set of simple tools to help you author a DVD. - dvdauthor DVD oynatıcıya takıldığında sorunsuzca oynatılabilecek bir DVD üretebilen bir uygulamadır. - http://sourceforge.net/projects/dvdauthor/files/dvdauthor/0.7.1/dvdauthor-0.7.1.tar.gz - - fribidi-devel - libdvdread-devel - imagemagick-devel - GraphicsMagick-devel - fontconfig-devel - freetype-devel - libpng-devel - libxml2-devel - - - config.patch - - multimedia/editor/dvdauthor/pspec.xml - - - dvdauthor - - libpng - fribidi - libxml2 - freetype - fontconfig - libdvdread - GraphicsMagick - - - /usr/bin - /usr/share/doc - /usr/lib - /usr/share/man - /usr/share - - - - - 2016-06-25 - 0.7.1 - First release - Osman Erkan - osman.erkan@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 - python3-requests - - - 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 - - - - - 2016-06-15 - 2.75a - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 2.75a - First release - Ali Algul - alialgul@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 - + libupnp /usr/lib /usr/share/doc - liblqr-devel - Development files for liblqr - liblqr için geliştirme dosyaları + libupnp-devel + Development files for libupnp + libupnp için geliştirme dosyaları - liblqr + libupnp /usr/include @@ -5191,326 +1033,14 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression 2016-06-09 - 0.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 0.4.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libsdl2 - http://www.libsdl.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - LGPLv2.1 - library - multimedia.misc - Simple Direct Media Layer (Couche Média Simple et Directe). - Simple Direct Media Layer 2.0 series - Basit bir direk ortam erişim katmanı 2.0 serisi - 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/SDL2-2.0.4.tar.gz - - mesa-devel - libXv-devel - libXt-devel - libX11-devel - libXext-devel - DirectFB-devel - alsa-lib-devel - audiofile-devel - libXrandr-devel - libXrender-devel - libXinerama-devel - pulseaudio-libs-devel - - multimedia/misc/libsdl2/pspec.xml - - - libsdl2-docs - libsdl2 reference documents - libsdl2 başvuru belgeleri - - libsdl2 - - - /usr/share/man - /usr/share/doc - - - - libsdl2 - - mesa - libXt - libX11 - libXext - DirectFB - alsa-lib - audiofile - libXrandr - libXrender - libXinerama - libXScrnSaver - pulseaudio-libs - - - /usr/lib - - - - libsdl2-devel - Development files for libsdl2 - libsdl2 için geliştirme dosyaları - - libsdl2 - - - /usr/bin - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/lib/libSDL2main.a - /usr/lib32/libSDL2main.a - - - - libsdl2-32bit - 32-bit shared libraries for libsdl2 - libsdl2 için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - libXt-32bit - libX11-32bit - libXext-32bit - alsa-lib-32bit - audiofile-32bit - libXrandr-32bit - libXrender-32bit - libXinerama-32bit - libXScrnSaver-32bit - pulseaudio-libs-32bit - - - mesa-32bit - libXt-32bit - libX11-32bit - libXext-32bit - alsa-lib-32bit - audiofile-32bit - libXrandr-32bit - libXrender-32bit - libXinerama-32bit - libXScrnSaver-32bit - libXScrnSaver-32bit - pulseaudio-libs-32bit - libsdl2 - - - /usr/lib32 - - - - - 2016-06-09 - 2.0.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-11 - 2.0.4 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 2.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 2.3.1 - First release - Alihan Öztürk - alihan@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 - - - /usr/lib32/ - - - - - 2016-06-09 - 1.2.12 + 1.6.19 Release Bump Pisi Linux Community admin@pisilinux.org 2014-05-31 - 1.2.12 + 1.6.19 First release Alihan Öztürk alihan@pisilinux.org @@ -5519,703 +1049,63 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - jansson - http://www.digip.org/jansson/ - - Stefan Gronewold (groni) - groni@pisilinux.org - - MIT - library - multimedia.misc - Jansson is a C library for encoding, decoding and manipulating JSON data. - It features: Simple and intuitive API and data model, Comprehensive documentation, No dependencies on other libraries, Full Unicode support (UTF-8), Extensive test suite. - http://www.digip.org/jansson/releases/jansson-2.7.tar.bz2 - - glibc-devel - - multimedia/misc/jansson/pspec.xml - - - jansson - - glibc - - - /usr/lib - /usr/share - /usr/share/doc - - - - jansson-devel - - jansson - qt5-base-devel - glibc-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2016-06-09 - 2.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 2.7 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libsdl - http://www.libsdl.org/ + qbittorrent + http://www.qbittorrent.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 + GPLv2+ + app:gui + network.p2p + Qt4 based BitTorrent client + Qt4 kullanan bir BitTorrent istemcisi + qbittorrent is a BitTorrent client using the libtorrent library. + qbittorrent, libtorrent kitaplığını kullanan Qt4 tabanlı bir BitTorrent istemcisidir. + qbittorrent + http://sourceforge.net/projects/qbittorrent/files/qbittorrent/qbittorrent-3.3.1/qbittorrent-3.3.1.tar.gz - DirectFB-devel - alsa-lib-devel - aalib-devel - libX11-devel - libusb-compat-devel - libXtst-devel - libICE-devel - libXrandr-devel + qt5-base-devel + qt5-linguist + libtorrent-rasterbar-devel + boost-devel + zlib-devel + openssl-devel + geoip-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 + network/p2p/qbittorrent/pspec.xml - libsdl-docs - libsdl reference documents - libsdl başvuru belgeleri + qbittorrent - libsdl + qt5-base + libtorrent-rasterbar + boost + libnotify + zlib + libgcc + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/pixmaps + /usr/share/appdata /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 - - libsdl - - - /usr/lib32 - - - - - 2016-06-09 - 1.2.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.2.15 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2016-03-27 - 1.2.15 - First release - Serdar Soytetir - kaptan@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 - - 2016-06-09 - 1.9.1 + 3.3.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-25 - 1.9.1 - First release - Alihan Öztürk - alihan@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 - https://gstreamer.freedesktop.org/src/orc/orc-0.4.25.tar.xz - - valgrind - - multimedia/misc/orc/pspec.xml - - - orc - - /usr/bin/ - /usr/lib/ - /usr/share/ - - - - orc-32bit - 32-bit shared libraries for orc - emul32 - emul32 - - 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 - - - - - 2016-06-12 - 0.4.25 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2016-05-27 - 0.4.19 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 0.4.19 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 0.6.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 0.6.21 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-12 - 2.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-08-02 - 2.1.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 2.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-28 - 2.2.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 5.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-20 - 5.1.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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.9.2/libbluray-0.9.2.tar.bz2 - - libtool - doxygen - pkgconfig - libxml2-devel - freetype-devel - fontconfig-devel - - multimedia/misc/libbluray/pspec.xml - - - libbluray - - libxml2 - freetype - fontconfig - - - /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/ - - - - - 2016-06-09 - 0.9.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-04 - 0.9.2 + 2016-04-12 + 3.3.1 First release Stefan Gronewold groni@pisilinux.org @@ -6224,93 +1114,240 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - frei0r-plugins - http://www.piksel.org/frei0r + libtorrent-rasterbar + http://www.rasterbar.com/products/libtorrent + + PisiLinux Community + admins@pisilinux.org + + BSD + library + network.p2p + Full featured torrent client library + Gelişmiş bir torrent kitaplığı + Rasterbar's C++ library that aims to be a good alternative to all the other bittorrent implementations around. It is a library and not a full featured client, although it comes with a working example client. + Libtorrent Rasterbar C++ kitaplığı, diğer bittorrent kitaplıklarına karşı iyi bir alternatifdir. + https://github.com/arvidn/libtorrent/releases/download/libtorrent-1_0_9/libtorrent-rasterbar-1.0.9.tar.gz + + openssl-devel + python-devel + boost-devel + boost-python + geoip-devel + zlib-devel + libtool + + network/p2p/libtorrent-rasterbar/pspec.xml + + + libtorrent-rasterbar + + openssl + python + libgcc + boost + geoip + boost-python + + + /usr/lib + /usr/share/doc/libtorrent-rasterbar + + + + libtorrent-rasterbar-devel + Development files for libtorrent-rasterbar + libtorrent-rasterbar için geliştirme dosyaları + + libtorrent-rasterbar + + + /usr/include + /usr/lib/pkgconfig + /usr/share/licenses + /usr/share/doc/libtorrent/html + + + + + 2016-06-14 + 1.0.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-12 + 1.0.9 + First release + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + filezilla + http://filezilla-project.org/ 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 + app:gui + network.ftp + Simple FTP Client + FTP ve SFTP istemcisi + Easy-to-use FTP Client which also supports SFTP. + Filezilla; dosyalarınızı ftp, sftp, ftps ile göndermenize ve indirmenize yarar + filezilla + mirrors://sourceforge/filezilla/FileZilla_3.14.1_src.tar.bz2 - libgcc + libidn-devel + dbus-devel + sqlite-devel + gnutls-devel + gtk2-devel + xdg-utils + wxGTK-devel - explicitly-link-with-lm.patch + i18n-filezilla.desktop.patch - multimedia/misc/frei0r-plugins/pspec.xml + network/ftp/filezilla/pspec.xml - frei0r-plugins + filezilla + wxGTK + dbus + sqlite libgcc + glib2 + gnutls + xdg-utils - /usr/lib + /usr/bin + /usr/share/applications + /usr/share/filezilla + /usr/share/pixmaps + /usr/share/icons + /usr/share/locale /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 + /usr/share/man + /usr/share/appdata/ 2016-06-09 - 1.4 + 3.14.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-20 - 1.4 + 2016-01-26 + 3.14.1 First release - Serdar Soytetir - kaptan@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - sdl2-net - http://www.libsdl.org/projects/SDL_net/ + glib-networking + http://git.gnome.org/browse/glib-networking/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 + GPLv2+ library - multimedia.misc - Librairie réseau de SDL. - SDL network library 2.0 series - SDL ağ kütüphanesi 2.0 serisi - sdl-mixer is a SDL library for network access. - sdl-net, SDL için ağ erişim kitaplığıdır. - http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.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 - libsdl2-devel + gnutls-devel + p11-kit-devel + ca-certificates + intltool + glib2-devel - multimedia/misc/sdl2-net/pspec.xml + network/library/glib-networking/pspec.xml - sdl2-net + glib-networking - libsdl2 + gnutls + p11-kit + glib2 + ca-certificates + + + /usr/lib/gio/modules + /usr/libexec + /usr/share + /usr/share/doc/glib-networking + + + + + 2016-06-09 + 2.38.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-30 + 2.38.2 + First release + Marcin Bojara + marcin@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. + https://archive.apache.org/dist/serf/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 @@ -6318,12 +1355,11 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - sdl2-net-devel - Development files for sdl-net - sdl2-net için geliştirme dosyaları + serf-devel + Development files for serf + serf için geliştirme dosyaları - sdl2-net - libsdl2-devel + serf /usr/include @@ -6333,128 +1369,14 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression 2016-06-09 - 2.0.1 + 1.3.8 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-11 - 2.0.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - 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/videolan/libdvdcss/1.4.0/libdvdcss-1.4.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 - - - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-05 - 1.4.0 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 1.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-20 - 1.3.1 + 2016-03-06 + 1.3.8 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -6463,459 +1385,666 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - 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://sources.webos-ports.org/downloads/DirectFB-1.7.7.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 - - - - - 2016-06-09 - 1.7.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 1.7.7 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libid3tag - http://mad.sourceforge.net + libmbim + http://www.freedesktop.org/wiki/Software/libmbim/ 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 + 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 - zlib-devel + gtk-doc + glib2-devel + libgudev-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 + network/library/libmbim/pspec.xml - libid3tag + libmbim - zlib + glib2 + libgudev /usr/lib - /usr/share/doc + /usr/share/man + /usr/bin/ + /usr/share/gtk-doc/ + /usr/libexec + /usr/share/doc/libmbim - libid3tag-devel + libmbim-devel + libmbim için geliştirme dosyaları + libmbim için geliştirme dosyaları - libid3tag + libmbim + libgudev-devel + + + /usr/lib/pkgconfig + /usr/include/libmbim-glib/ + + + + + 2016-06-09 + 1.12.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-25 + 1.12.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + openssl + libgcc + + + /usr/bin + /usr/include + /usr/lib/node_modules + /usr/share/doc + /usr/share/man + /usr/share/systemtap + + + + + 2016-06-09 + 4.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-10 + 4.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libqmi + http://www.freedesktop.org/wiki/Software/libqmi/ + + Alihan Öztürk + alihan@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.12.6.tar.xz + + glib2-devel + gobject-introspection-devel + + network/library/libqmi/pspec.xml + + + libqmi + + glib2 + gobject-introspection + + + /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 + /usr/lib/pkgconfig/qmi-glib.pc + + + + 2016-06-09 + 1.12.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-25 + 1.12.6 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + wget + http://www.gnu.org/software/wget/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:console + network.download + Command-line utility to retrieve files from remote systems + Http ve ftp gibi internet protokollerini kullanarak dosya indirebilen bir yazılım + GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. + GNU Wget, HTTP, HTTPS ve FTP gibi en çok kullanılan Internet protokollerini kullanarak dosyalara ulaşmak icin kullanılan bir özgür yazılım paketidir. Etkileşimsiz bir komutsatırı aracıdır, böylece X-Windows desteği olmadan, betikler, işlemler, terminal kullanımı gerçekleştirilebilir. + http://ftp.gnu.org/gnu/wget/wget-1.17.1.tar.xz + + openssl-devel + zlib-devel + + network/download/wget/pspec.xml + + + wget + + zlib + openssl + + + /etc + /usr/bin + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/locale + + + + + 2016-06-09 + 1.17.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-25 + 1.17.1 + First release + Kamil Atlı + suvari@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. + https://www.samba.org/ftp/rsync/src/rsync-3.1.2.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 + - id3tag.pc + rsyncd.conf + rsyncd.conf.d 2016-06-09 - 0.15.1b + 3.1.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-20 - 0.15.1b + 2015-03-24 + 3.1.2 First release - Serdar Soytetir - kaptan@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - libcdr - http://www.freedesktop.org/wiki/Software/libcdr + librsync + http://librsync.sourceforge.net/ 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/libcdr-0.1.2.tar.xz + 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 - doxygen - zlib-devel - lcms2-devel - icu4c-devel - libwpd-devel - boost-devel - librevenge-devel - cppunit-devel + popt-devel - multimedia/misc/libcdr/pspec.xml + + librsync-0.9.7-largefiles.patch + librsync-link.patch + + network/share/librsync/pspec.xml - libcdr + librsync - lcms2 - icu4c - zlib - libgcc - librevenge - cppunit + popt - /usr/lib /usr/bin - /usr/share/doc/libcdr + /usr/lib + /usr/share/man + /usr/share/doc/librsync - libcdr-devel - Development files for libcdr - libcdr için geliştirme dosyaları + librsync-devel + Development files for librsync + librsync için geliştirme dosyaları - icu4c-devel - zlib-devel - lcms2-devel - librevenge-devel - libcdr + librsync /usr/include - /usr/lib/pkgconfig + /usr/lib/librsync.so + /usr/share/man/man3 2016-06-09 - 0.1.2 + 0.9.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-01 + 0.9.7 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + freshplayerplugin + https://github.com/i-rinat/freshplayerplugin + + Osman Erkan + osman.erkan@pisilinux.org + + MIT + app:gui + network.plugin + ppapi2npapi compatibility layer + PPAPI-host NPAPI-plugin adapter. + https://github.com/i-rinat/freshplayerplugin/archive/v0.3.5.tar.gz + + cmake + ragel + gtk2-devel + libva-devel + libv4l-devel + ffmpeg-devel + openssl-devel + libvdpau-devel + alsa-lib-devel + libevent-devel + libXrandr-devel + libXcursor-devel + pulseaudio-libs-devel + + network/plugin/freshplayerplugin/pspec.xml + + + freshplayerplugin + + mesa + libva + ffmpeg + libv4l + alsa-lib + libevent + libvdpau + libXrandr + pepperflash + pulseaudio-libs + + + /usr/lib + /usr/share/doc + /usr/share/freshplayerplugin/ + + + + + 2016-06-14 + 0.3.5 Version Bump Pisi Linux Community admin@pisilinux.org - - 2015-01-02 - 0.1.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.13.1/libass-0.13.1.tar.xz - - fontconfig-devel - freetype-devel - fribidi-devel - - multimedia/misc/libass/pspec.xml - - - libass - - fontconfig - freetype - fribidi - harfbuzz - - - /usr/lib - /usr/share/doc/libass - - - - libass-devel - Development files for libass - libass için geliştirme dosyaları - - libass - fontconfig-devel - freetype-devel - fribidi-devel - harfbuzz-devel - - - /usr/include - /usr/lib/pkgconfig - - - 2016-06-09 - 0.13.1 + 0.3.4 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-06 - 0.13.1 + 2016-02-15 + 0.3.4 First release - Stefan Gronewold - groni@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - libopus - http://www.opus-codec.org/ + 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) + https://dl.dropboxusercontent.com/s/o5xtb8my3cswzwv/pepperflash-22.0.0.192.tar.gz + network/plugin/pepperflash/pspec.xml + + + pepperflash + + libgcc + + + /etc/chromium-browser + /usr/lib/chromium-browser/PepperFlash + + + pepperflash-plugin.conf + + + + + 2016-06-30 + 22.0.0.192 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-09 + 20.0.0.306 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-15 + 20.0.0.306 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + flashplugin + http://labs.adobe.com/technologies/flashplayer10 PisiLinux Community admins@pisilinux.org - BSD + Macromedia 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 + network.plugin + Adobe Flash Player + Adobe Flash Oynatıcı + Adobe (Macromedia) Flash Player is an application to present interactive (and possibly multimedia-containing) content created using Adobe Flash. + Adobe (Macromedia) Flash Oynatıcısı, Adobe Flash ile oluşturulmuş içerikleri görüntülemeye olanak sağlayan bir uygulama. + flash-player-properties + https://fpdownload.adobe.com/get/flashplayer/pdc/11.2.202.621/install_flash_player_11_linux.i386.tar.gz + https://fpdownload.adobe.com/get/flashplayer/pdc/11.2.202.621/install_flash_player_11_linux.x86_64.tar.gz + + nss + gtk2 + libXt + libX11 + libXext + libXpm + + network/plugin/flashplugin/pspec.xml - libopus + flashplugin + + noDelta + + + atk + nss + gtk2 + nspr + cairo + glib2 + libXt + pango + libX11 + libXext + freetype + fontconfig + gdk-pixbuf + libXcursor + libXrender + - /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/ + /usr/lib + /usr/bin + + 2016-06-14 + 11.2.202.621 + Version Bump + Pisi Linux Community + admin@pisilinux.org + 2016-06-09 - 1.1 + 11.2.202.569 Release Bump Pisi Linux Community admin@pisilinux.org - - 2014-05-22 - 1.1 + + 2016-02-15 + 11.2.202.569 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Osman Erkan + osman.erkan@pisilinux.org - libkate - http://code.google.com/p/libkate + telepathy-farstream + http://telepathy.freedesktop.org/wiki PisiLinux Community admins@pisilinux.org - BSD + LGPLv2+ 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 + 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 - libogg-devel - libpng-devel - doxygen + gobject-introspection-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + farstream-devel + gstreamer-next-devel - multimedia/misc/libkate/pspec.xml + network/chat/telepathy-farstream/pspec.xml - libkate + telepathy-farstream + library - libogg - libpng + dbus + glib2 + dbus-glib + farstream + gstreamer-next + telepathy-glib - /usr/bin /usr/lib - /usr/share/man /usr/share/doc + /usr/share/gir-1.0 - libkate-devel - Development files for libkate - libkate için geliştirme dosyaları + 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 - libkate - libogg-devel - libpng-devel + telepathy-farstream + + + /usr/share/gtk-doc + + + + telepathy-farstream-devel + Development files for telepathy-farstream + telepathy-farstream için geliştirme dosyaları + + telepathy-farstream + glib2-devel + dbus-glib-devel + farstream-devel + gstreamer-next-devel + telepathy-glib-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 - - 2016-06-09 - 0.4.1 + 0.6.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-24 - 0.4.1 + 2016-03-30 + 0.6.2 First release Alihan Öztürk alihan@pisilinux.org @@ -6924,43 +2053,47 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - sdl-mixer - http://www.libsdl.org/projects/SDL_mixer/ + telepathy-qt5 + http://telepathy.freedesktop.org PisiLinux Community admins@pisilinux.org LGPLv2.1 library - multimedia.misc - Librairie du mixer SDL. - SDL mixer library - SDL ses yükleme kitaplığı - SDL_mixer is a SDL library for loading sound files. - SDL_mixer, SDL için bir ses yükleme kitaplığıdır. - http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12.tar.gz + 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 - libsdl-devel - libmikmod-devel - libvorbis-devel - libogg-devel - smpeg-devel - timidity + cmake + qt5-doc + qt5-base-devel + qt5-assistant-devel + gobject-introspection-devel + dbus-glib-devel + libxml2-devel + farstream-devel + telepathy-farstream-devel + doxygen - ldflags.patch + gstreamer-1.6.patch + glibc-2.20.patch - multimedia/misc/sdl-mixer/pspec.xml + network/chat/telepathy-qt5/pspec.xml - sdl-mixer + telepathy-qt5 - libsdl - libmikmod - libvorbis - libogg - smpeg - timidity + glib2 + libgcc + qt5-base + telepathy-glib + telepathy-farstream + doxygen /usr/lib @@ -6968,260 +2101,301 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - sdl-mixer-devel - Development files for sdl-mixer - sdl-mixer için geliştirme dosyaları + telepathy-qt5-devel + Development files for telepathy-qt5 + telepathy-qt5 için geliştirme dosyaları - sdl-mixer - libsdl-devel + telepathy-qt5 + qt5-base-devel + telepathy-glib-devel + telepathy-farstream-devel /usr/include /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sdl-mixer-32bit - 32-bit shared libraries for sdl-mixer - sdl-mixer için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libsdl-32bit - libmikmod-32bit - libvorbis-32bit - libogg-32bit - smpeg-32bit - - - sdl-mixer - libsdl-32bit - libmikmod-32bit - libvorbis-32bit - libogg-32bit - smpeg-32bit - - - /usr/lib32/ 2016-06-09 - 1.2.12 + 0.9.6 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-02-21 - 1.2.12 + 2016-03-30 + 0.9.6 First release - Kamil Atlı - suvarice@gmail.com + Alihan Öztürk + alihan@pisilinux.org - libdvdnav - http://www.mplayerhq.hu/ + 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 + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 0.8.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 0.8.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libotr + http://www.cypherpunks.ca/otr/ 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 + 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 - libdvdread-devel + libgcrypt-devel - multimedia/misc/libdvdnav/pspec.xml + network/chat/libotr/pspec.xml - libdvdnav + libotr - libdvdread - - - /usr/lib - /usr/share/doc/libdvdnav - - - - libdvdnav-devel - Development files for libdvdnav - libdvdnav için geliştirme dosyaları - - libdvdnav - libdvdread-devel + 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 2016-06-09 - 5.0.3 + 4.1.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-01-31 - 5.0.3 + 2015-11-22 + 4.1.0 First release - Hakan Yıldız - hknyldz93@gmail.com + Alihan Öztürk + alihan@pisilinux.org - exiv2 - http://www.exiv2.org + telepathy-butterfly + http://telepathy.freedesktop.org/wiki PisiLinux Community admins@pisilinux.org - GPLv2 + 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 - + 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 - exiv2-0.18-deps.patch + dont-compile-py.patch - multimedia/misc/exiv2/pspec.xml + network/chat/telepathy-butterfly/pspec.xml - exiv2 - - exiv2-libs - + telepathy-butterfly - /usr/bin - /usr/share/locale + /usr/libexec + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy /usr/share/doc - /usr/share/man + + + 2016-06-09 + 0.5.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 0.5.15 + First release + Alihan Öztürk + alihan@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 + qt5-assistant-devel + qt5-doc + doxygen + telepathy-qt5-devel + glib2-devel + dbus-devel + dbus-glib-devel + libxml2-devel + telepathy-logger-devel + + network/chat/telepathy-logger-qt/pspec.xml + - exiv2-libs + telepathy-logger-qt + Qt bindings for telepathy logger - zlib - expat + glib2 libgcc + qt5-base + telepathy-qt5 + telepathy-glib + telepathy-logger - /usr/lib - - - - exiv2-devel - Development files for exiv2 - exiv2 için geliştirme dosyaları - - exiv2-libs - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-02 - 0.25 - First release - Yusuf Aydemir - yusuf.aydemir@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/lib/libtelepathy-logger-qt.* /usr/share/doc - fribidi-devel - Development files for fribidi - fribidi için geliştirme dosyaları + telepathy-logger-qt-devel + Development files for telepathy-logger-qt - fribidi + telepathy-logger-qt + telepathy-glib-devel + qt5-base-devel /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig + /usr/lib/cmake/TelepathyLoggerQt 2016-06-09 - 0.19.6 + 15.04.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-02-23 - 0.19.6 + 2016-03-30 + 15.04.0 First release Alihan Öztürk alihan@pisilinux.org @@ -7230,699 +2404,74 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - sdl2-ttf - http://www.libsdl.org/projects/SDL_ttf/ - - Mathias Freire - mathiasfreire45@gmail.com - - LGPLv2.1 - library - multimedia.misc - TrueType font support for SDL2 - SDL2 TTF kitaplığı - SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu'elle. - SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. - SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır. - SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable. - http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz - - libsdl2-devel - freetype-devel - - multimedia/misc/sdl2-ttf/pspec.xml - - - sdl2-ttf - - libsdl2 - harfbuzz - freetype - - - /usr/lib - /usr/share/doc - - - - sdl2-ttf-devel - Development files for sdl2-ttf - sdl2-ttf için geliştirme dosyaları - - libsdl2-devel - sdl2-ttf - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sdl2-ttf-32bit - 32-bit shared libraries for sdl2-ttf - sdl2-ttf için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libsdl2-32bit - freetype-32bit - - - libpng-32bit - libsdl2-32bit - harfbuzz-32bit - freetype-32bit - sdl2-ttf - - - /usr/lib32/ - - - - - 2016-06-09 - 2.0.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-11 - 2.0.14 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - liboil - http://www.schleef.org/liboil/ + telepathy-salut + http://telepathy.freedesktop.org/wiki PisiLinux Community admins@pisilinux.org - LGPLv2.1 + LGPLv2+ 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 - - - - - 2016-06-09 - 0.3.17 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 0.3.17 - First release - Alihan Öztürk - alihan@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 + 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 - 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 - - - - - 2016-06-09 - 2.9.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-11-10 - 2.9.19 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 + 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 - Makefile.patch + fix_bork_in_tr_locale.patch - multimedia/misc/libspnav/pspec.xml + network/chat/telepathy-salut/pspec.xml - libspnav + telepathy-salut - 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 - - - - - 2016-06-09 - 0.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-09-16 - 0.2.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 + 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 - - - - taglib-extras-devel - Development files for taglib-extras - taglib-extras için geliştirme dosyaları - - taglib-extras - - - /usr/include/taglib-extras - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.0.1 - First release - Alihan Öztürk - alihan@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.3/libdvdread-5.0.3.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/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 5.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-05 - 5.0.3 - First release - Stefan Gronewold - groni@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 - - - - - 2016-06-09 - 1.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 1.13 - First release - Alihan Öztürk - alihan@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 - cmake - - 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 - - - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-18 - 1.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libcue - http://sourceforge.net/projects/libcue/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Cue sheet parser library - Cue sayfası ayrıştırma kitaplığı - libcue is intended for parsing a so-called cue sheet from a char string or a file pointer. - libcue, cue sayfalarındaki metinleri ayrıştırmak için kullanılan bir kitaplıktır. - https://github.com/lipnitsk/libcue/releases/download/v1.4.0/libcue-1.4.0.tar.bz2 - multimedia/sound/libcue/pspec.xml - - - libcue - - /usr/lib - /usr/share/doc - - - - libcue-devel - Development files for libcue - libcue için geliştirme dosyaları - - libcue - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-08 - 1.4.0 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 4.75.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-20 - 4.75.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 2016-06-09 - 1.4.0 + 0.8.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-01-28 - 1.4.0 + 2015-11-22 + 0.8.1 First release Alihan Öztürk alihan@pisilinux.org @@ -7931,130 +2480,267 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - lame - http://lame.sourceforge.net/ + pidgin + http://www.pidgin.im 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 + 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 - multimedia/sound/lame/pspec.xml + + 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 - lame + pidgin + app:gui - ncurses + atk + dbus + gtk2 + cairo + glib2 + libSM + pango + libICE + sqlite + freetype + gtkspell + dbus-glib + gstreamer + fontconfig + gdk-pixbuf + libXScrnSaver + libpurple - /usr/bin - /usr/lib /usr/share/man - - - - lame-docs - /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 - lame-devel - Development files for lame - lame için geliştirme dosyaları + pidgin-devel + Development files of pidgin + pidgin paketine ait geliştirme dosyaları + library - lame + pidgin + libpurple-devel + gtk2-devel - /usr/include - /usr/share/man/man3 + /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 - 2016-06-09 - 3.99.5 + 2016-06-15 + 2.10.11 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-12-14 - 3.99.5 + 2015-11-20 + 2.10.11 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - portaudio - http://www.portaudio.com + telepathy-haze + http://developer.pidgin.im/wiki/Telepathy PisiLinux Community admins@pisilinux.org - as-is + GPLv2+ 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 + 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 - alsa-lib-devel - jack-audio-connection-kit-devel + glib2-devel + dbus-devel + dbus-glib-devel + libpurple-devel + telepathy-glib-devel + libxslt-devel - multimedia/sound/portaudio/pspec.xml + network/chat/telepathy-haze/pspec.xml - portaudio + telepathy-haze - alsa-lib - jack-audio-connection-kit + dbus + glib2 + dbus-glib + libpurple + telepathy-glib - /usr/lib + /usr/libexec + /usr/share /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 + /usr/share/man 2016-06-09 - 19.20140130 + 0.8.0 Release Bump Pisi Linux Community admin@pisilinux.org 2015-11-21 - 19.20140130 + 0.8.0 First release Alihan Öztürk alihan@pisilinux.org @@ -8063,1734 +2749,70 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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 - - - - - 2016-06-09 - 1.8.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-07-05 - 1.8.0 - First release - Alihan Öztürk - alihan@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 - - libvisual - - - /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 - - - - - 2016-06-09 - 0.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 0.4.0 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 0.4.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - timidity-shompatches - http://www.i.h.kyoto-u.ac.jp - - PisiLinux Community - admins@pisilinux.org - - as-is - data - multimedia.sound - Sound patches for Timidity (Shom) - Timidity ses bilgisi dosyaları - Containts Matsumoto Shoji's patch collection for TiMidity (Roland SC-55 style) - Matsumoto Shoji'nin TiMidity (Roland SC-55 stili) ses bilgisi dosyaları - https://sourceforge.net/projects/pisilinux/files/source/shominst-0409.zip - multimedia/sound/timidity-shompatches/pspec.xml - - - timidity-shompatches - - /usr/share/timidity - - - - - 2016-06-10 - 0.409 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-04 - 0.409 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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-gtk - libcanberra-devel - gtk2-devel - - - /usr/include/canberra-gtk.h - /usr/lib/pkgconfig/libcanberra-gtk.pc - /usr/share/vala/vapi/libcanberra-gtk.vapi - - - - 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 - - - - libcanberra-gtk3-devel - Development files for libcanberra-gt3k - - libcanberra - libcanberra-devel - libcanberra-gtk3 - gtk3-devel - - - /usr/lib/pkgconfig/libcanberra-gtk3.pc - - - - - 2016-06-09 - 0.30 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 0.30 - Fix - Varol Maksutoğlu - waroi@pisilinux.org - - - 2016-05-08 - 0.30 - First release - Varol Maksutoğlu - waroi@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 - - flac-32bit - alsa-lib-32bit - libogg-32bit - libvorbis-32bit - - - flac-32bit - alsa-lib-32bit - libogg-32bit - libvorbis-32bit - libsndfile - - - /usr/lib32 - - - - - 2016-06-09 - 1.0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.0.25 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-25 - 1.0.25 - First release - Alihan Öztürk - alihan@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 - - - /usr/lib32 - - - - - 2016-06-09 - 1.22.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-13 - 1.22.4 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 0.11.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-15 - 0.11.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 0.3.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.3.13 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.0.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.0.5 - First release - Serdar Soytetir - kaptan@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 - dbus-devel - libxml2-devel - python-devel - libutil-linux-devel - - - makefile.patch - docs-Makefile.patch - - multimedia/sound/lash/pspec.xml - - - lash - - gtk2 - dbus - glib2 - dmapi - libgcc - libxml2 - readline - alsa-lib - libutil-linux - jack-audio-connection-kit - - - /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 - - - - - 2016-06-09 - 0.6.0_rc2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-01 - 0.6.0_rc2 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - - - libogg-32bit - libgcc - flac - - - /usr/lib32 - - - - - 2016-06-09 - 1.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.3.1 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-03 - 1.3.1 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - fluidsynth - http://fluidsynth.resonance.org/trac + telepathy-gabble + http://telepathy.freedesktop.org/wiki PisiLinux Community admins@pisilinux.org LGPLv2+ + BSD 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 + 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 - lash-devel - alsa-lib-devel - ladspa-sdk-devel - libsndfile-devel - pulseaudio-libs-devel - jack-audio-connection-kit-devel - cmake - - 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 - - - - - 2016-06-09 - 1.1.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-26 - 1.1.6 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - sayonara - http://sayonara-player.com - - 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-0.9.0-git1-20160516.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 + libnice-devel + gobject-introspection-devel glib2-devel - zlib-devel - libmtp-devel - gstreamer-next-devel - gst-plugins-base-next-devel - cmake - - 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 - zlib - libmtp - 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 - - - - - 2016-06-09 - 0.9.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 0.9.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-04-02 - 0.8.2 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 0.1.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.1.8 - First release - Alihan Öztürk - alihan@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.7.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 - jansson-devel - mpg123-devel - intltool - - 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 - jansson - mpg123 - 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 - - - - - 2016-06-09 - 0.7.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-17 - 0.7.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-12-25 - 0.6.2 - First release - Stefan Gronewold - groni@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 - - - - - 2016-06-09 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-26 - 1.2.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - drumstick - http://drumstick.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - app:gui - multimedia.sound - Qt4/C++ wrapper for ALSA Sequencer - ALSA ardıştırıcısı için Qt4/C++ kitaplığı - Drumstick library is a C++ wrapper around the ALSA library sequencer interface, using Qt4 objects, idioms and style. - Drumstick, ALSA ardıştırıcı arayüzü için Qt4 nesnelerini, deyimlerini ve tarzını kullanan bir C++ ara kitaplığıdır. - drumstick - mirrors://sourceforge/drumstick/1.0.2/drumstick-1.0.2.tar.bz2 - - cmake - qt5-base-devel - qt5-svg-devel - alsa-lib-devel - fluidsynth-devel - libxslt - doxygen - docbook-xsl - shared-mime-info - - multimedia/sound/drumstick/pspec.xml - - - drumstick - - drumstick-libs - libgcc - qt5-svg - qt5-base - alsa-lib - - - /usr/bin - /usr/share/mime - /usr/share/applications - /usr/share/icons - /usr/share/doc - /usr/share/man - - - - drumstick-libs - Libraries for Drumstick - Drumstick kitaplıkları - drumstick-libs provides libraries for Drumstick based applications. - drumstick-libs, Drumstick temelli uygulamalar için kitaplık dosyaları sunar. - library - - libgcc - alsa-lib - qt5-base - fluidsynth - - - /usr/lib/drumstick - /usr/lib/libdrum* - - - - drumstick-devel - Development files for Drumstick - Drumstick kitaplığı için geliştirme dosyaları - drumstick-devel provides development files for Drumstick libraries. - drumstick-devel, Drumstick kitaplığı için geliştirme dosyaları sunar. - data - - qt5-base-devel - alsa-lib-devel - drumstick-libs - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-17 - 1.0.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - nightingale - http://getnightingale.com/ - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - app:gui - multimedia - Nightingale Media Player - Özgür ve güçlü bir müzik çalar - Nightingale is a community based fork of the Songbird Media player distributed under the GNU GPL and portions (XULRunner and Mozilla libs) licensed under the Mozilla MPL/BSD license.. - Nightingale, özgür ve güçlü , açık kaynak kodlu, özelleştirilebilir bir müzik çalardır. - nightingale - http://github.com/nightingale-media-player/nightingale-hacking/tarball/nightingale-1.12.1 - - atk-devel - gtk2-devel - libXt-devel - cairo-devel - pango-devel - libIDL-devel - taglib-devel - libXext-devel - alsa-lib-devel - gstreamer-devel - fontconfig-devel - gdk-pixbuf-devel - libXrender-devel - gst-plugins-base-devel - dbus-devel - zlib-devel - glib2-devel - libX11-devel - freetype-devel - libnotify-devel - zip - unzip - sqlite-devel dbus-glib-devel + telepathy-glib-devel + libxslt-devel + gnutls-devel + sqlite-devel + libsoup-devel + libnice-devel + cyrus-sasl-devel - multimedia/sound/nightingale/pspec.xml + network/chat/telepathy-gabble/pspec.xml - nightingale + telepathy-gabble - atk - gtk2 - libXt - cairo - pango - libIDL - taglib - libXext - alsa-lib - gstreamer - fontconfig - gdk-pixbuf - libXrender - gst-plugins-base dbus - zlib glib2 - libX11 - libgcc - freetype + gnutls + sqlite + libnice + libsoup + libxml2 + dbus-glib + telepathy-glib /usr/bin - /usr/share/applications - /usr/share/nightingale - /usr/share/pixmaps - /usr/share/doc - - - nightingale.desktop - nightingale.xpm - - - - - 2016-06-19 - 1.12.1 - First Release. - Stefan Gronewold - groni@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. - https://freedesktop.org/software/pulseaudio/releases/pulseaudio-8.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/pulseaudio/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/lib /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 - - - pulseaudio-libs - dbus-32bit - glib2-32bit - libsndfile-32bit - json-c-32bit - - - /usr/lib32 + /usr/share/doc + /usr/share/man - + 2016-06-09 - 8.0 + 0.18.3 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-27 - 8.0 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-24 - 8.0 + + 2015-11-21 + 0.18.3 First release Alihan Öztürk alihan@pisilinux.org @@ -9799,1774 +2821,32 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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 - - - - - 2016-06-09 - 0.99.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-26 - 0.99.12 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 1.28 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-14 - 1.28 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 14.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-17 - 14.4.2 - First release - Alihan Öztürk - alihan@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 - - - alsa-lib-32bit - flac-32bit - audiofile - - - /usr/lib32 - - - - - 2016-06-09 - 0.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.3.4 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 2.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 2.7 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - timidity - http://timidity.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - multimedia.sound - Software synthesizer and MIDI converter - MIDI WAV dönüştürücüsü - Timidity is a software synthesizer, MIDI player and MIDI to other sound formats converter which can also emulate a midi port. - OSS ve ALSA ses çıkışı üretebilen MIDI'den WAV oluşturabilen ve midi aygıt emulasyonu yapabilen sunucu - mirrors://sourceforge/timidity/TiMidity++-2.14.0.tar.bz2 - - alsa-lib-devel - libao-devel - libXaw-devel - flac-devel - libvorbis-devel - speex-devel - libXext-devel - libogg-devel - jack-audio-connection-kit-devel - gtk2-devel - Xaw3d-devel - glib2-devel - libX11-devel - ncurses-devel - libpng-devel - - - timidity++-2.14.0-revert-for-required-ctl_speana_data-function.patch - - multimedia/sound/timidity/pspec.xml - - - timidity - - alsa-lib - libao - libXaw - flac - libvorbis - speex - libXext - libogg - jack-audio-connection-kit - gtk2 - timidity-shompatches - Xaw3d - glib2 - libX11 - libpng - ncurses - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/timidity - - - System.Service - - - timidity.conf.d - timidity.cfg - timidity-update - - - - - 2016-06-09 - 2.14.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-21 - 2.14.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - alsa-lib-32bit - pulseaudio-libs-32bit - - - libmikmod - audiofile-32bit - alsa-lib-32bit - pulseaudio-libs-32bit - - - /usr/lib32 - - - - - 2016-06-09 - 3.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-19 - 3.3.7 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - speech-dispatcher - http://www.freebsoft.org/speechd - - 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 - - glib2-devel - libsndfile-devel - dotconf-devel - espeak-devel - python3-devel - intltool - gettext-devel - texinfo - pkgconfig - libtool-ltdl - libao-devel - alsa-lib-devel - pulseaudio-libs-devel - - multimedia/sound/speech-dispatcher/pspec.xml - - - speech-dispatcher - - glib2 - libao - espeak - dotconf - alsa-lib - libsndfile - libtool-ltdl - pulseaudio-libs - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /etc/speech-dispatcher - /var/log/speech-dispatcher - /usr/share/speech-dispatcher - - - - python3-speech-dispatcher - Python3 bindings for speech-dispatcher - - speech-dispatcher - python3 - - - /usr/lib/python3.* - - - python-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/ - - - - - 2016-06-09 - 0.8.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 0.8.3 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 0.8.8.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.8.8.5 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 1.9.10 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-24 - 1.9.10 - First release - Vedat Demir - vedat@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 - - openal - - - /usr/lib32 - - - - - 2016-06-09 - 1.15.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.15.1 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-25 - 1.15.1 - First release - Alihan Öztürk - alihan@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 - - gsm - - - /usr/lib32 - - - - - 2016-06-09 - 1.0.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-14 - 1.0.13 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 0.7.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.7.4 - First release - Serdar Soytetir - kaptan@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.2.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 - - libogg - - - /usr/lib32 - - - - - 2016-06-09 - 1.3.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-02 - 1.3.2 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.3.1 - First release - Serdar Soytetir - kaptan@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 - - libogg-32bit - - - libvorbis - libogg-32bit - - - /usr/lib32 - - - - - 2016-06-09 - 1.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.3.4 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.3.4 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 1.2.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 1.2.6 - First release - Serdar Soytetir - kaptan@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 - - speex - - - /usr/lib32 - - - - - 2016-06-09 - 1.2_rc1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.2_rc1 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.2_rc1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - espeak - http://espeak.freedesktop.org + telepathy-sunshine + http://telepathy.freedesktop.org/wiki PisiLinux Community admins@pisilinux.org GPLv3+ library - app:console - multimedia.sound - Software speech synthesizer (text-to-speech) - Yazılımsal konuşma sentezleyici (text-to-speech) - espeak produces good quality English speech. It uses a different synthesis method from other open source TTS engines and sounds quite different. - espeak iyi kalitede İngilizce konuşma sentezler. Diğer açık kaynaklı TTS motorlarından farklı bir sentezleme yöntemi kullandığından üretilen sesler biraz farklıdır. - http://sourceforge.net/projects/espeak/files/espeak/espeak-1.48/espeak-1.48.04-source.zip/download - - compile-voices.sh - - - coreutils - portaudio-devel - pulseaudio-libs-devel - + 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 - espeak-1.23-makefile_nostaticlibs.patch + dont-compile-py.patch - multimedia/sound/espeak/pspec.xml + network/chat/telepathy-sunshine/pspec.xml - espeak - - portaudio - + telepathy-sunshine - /usr/bin + /usr/libexec /usr/lib - /usr/share/espeak-data - /usr/share/man - /usr/share/doc - - - espeak.1 - - - - espeak-devel - Development headers for espeak - espeak için geliştirme başlıkları - - espeak - - - /usr/include - - - - - 2016-06-09 - 1.48.04 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-01 - 1.48.04 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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.10.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 - libcddb - libcdio - libcdio-paranoia - 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/ - - - - - 2016-06-20 - 1.0.10 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-09 - 1.0.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 1.0.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-11-19 - 1.0.1 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 0.15.1b - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.15.1b - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 2.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-11 - 2.3.0 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 0.0_661 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-22 - 0.0_661 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - unoconv - http://dag.wieers.com/home-made/unoconv - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.converter - A document converter - Bir belge dönüştürücü - unoconv converts between any document format that OpenOffice / OpenOffice understands. - unoconv, her belge biçimini OpenOffice ve OpenOffice'in anlayacağı biçime dönüştüren bir terminal uygulamasıdır. - http://dag.wieers.com/home-made/unoconv/unoconv-0.7.tar.gz - - asciidoc - xmlto - - multimedia/converter/unoconv/pspec.xml - - - unoconv - - asciidoc - xmlto - - - /usr/bin + /usr/share/dbus-1 + /usr/share/telepathy /usr/share/man /usr/share/doc @@ -11574,713 +2854,14 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 0.7 + 2.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-23 - 0.7 - First release - Stefan Gronewold - groni@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 - - - - - 2016-06-09 - 8.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-08 - 8.5.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ccd2iso - http://sourceforge.net/projects/ccd2iso - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.converter - CloneCD image files to ISO converter - CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir uygulama - ccd2iso converts CloneCD image files to ISO image files. - CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir komut satırı uygulaması. - mirrors://sourceforge/ccd2iso/ccd2iso-0.3.tar.gz - multimedia/converter/ccd2iso/pspec.xml - - - ccd2iso - - /usr/bin - /usr/share/doc/ccd2iso - - - - - 2016-06-09 - 0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-18 - 0.3 - 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 - - - - - 2016-06-09 - 0.7.24 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.7.24 - First release - Serdar Soytetir - kaptan@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 - - - libtheora - libogg-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 - - - - - 2016-06-09 - 1.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.1.1 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.1.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - gstreamermm-next - http://gstreamer.freedesktop.org/bindings/cplusplus.html - - Kamil Atlı - suvari@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/1.4/gstreamermm-1.4.3.tar.xz - - libgcc - glib2-devel - glibmm-devel - libsigc++-devel - gstreamer-next-devel - gst-plugins-base-next-devel - - multimedia/video/gstreamermm-next/pspec.xml - - - gstreamermm-next - - glib2 - glibmm - libgcc - libsigc++ - gstreamer-next - gst-plugins-base-next - - - /usr/lib - /usr/share/devhelp/books/gstreamermm-1.0/gstreamermm-1.0.devhelp2 - /usr/share/doc - - - - gstreamermm-next-devel - gstreamermm için geliştirme dosyaları - gstreamermm-next için geliştirme dosyaları - - glibmm-devel - gstreamer-next-devel - gst-plugins-base-next-devel - gstreamermm-next - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.4.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-07 - 1.4.3 - First release - Kamil Atlı - suvari@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. - https://linuxtv.org/downloads/v4l-utils/v4l-utils-1.10.0.tar.bz2 - - qt5-base-devel - libjpeg-turbo-devel - glibc-devel - mesa-devel - mesa-glu-devel - alsa-lib-devel - libgcc - - multimedia/video/libv4l/pspec.xml - - - libv4l - - libjpeg-turbo - - - /lib/udev/rules.d - /lib/udev/rc_keymaps - /usr/lib/lib* - /usr/lib/v4l* - /usr/share/doc - - - - v4l-utils - Utilities for libv4l - Zbiór narzędzi do urządzeń Video4Linux - - mesa - libgcc - alsa-lib - qt5-base - libv4l - - - /etc - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/applications - /usr/share/icons - /usr/share/locale - - - - libv4l-devel - Development files for libv4l - libv4l için geliştirme dosyaları - Pliki nagłówkowe bibliotek libv4l - - mesa - libX11 - mesa-glu - libv4l - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - 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 - libX11-32bit - mesa-32bit - mesa-glu-32bit - alsa-lib-32bit - qt5-base-32bit - - - libjpeg-turbo-32bit - libv4l - - - /usr/lib32/lib* - /usr/lib32/v4l* - - - - - 2016-06-09 - 1.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-28 - 1.10.0 - update - Serdar Soytetir - kaptan@pisilinux.org - - - 2015-05-25 - 1.0.1 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.0.1 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 20100703 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 20100703 - 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 - 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 - curl-devel - zvbi-devel - openal-devel - opencv-devel - libopus-devel - orc-devel - libcdaudio-devel - libkate-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 - curl - zvbi - openal - libkate - libopus - openssl - rtmpdump - libcdaudio - 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 - - - - - 2016-06-10 - 0.10.23 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-14 - 0.10.23 - rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-31 - 0.10.23 + 2015-11-22 + 2.0 First release Alihan Öztürk alihan@pisilinux.org @@ -12289,1105 +2870,79 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - schroedinger - http://www.diracvideo.org/ + telepathy-mission-control + http://telepathy.freedesktop.org/wiki/Mission_Control 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 - - - - - 2016-06-10 - 1.0.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 1.0.11 - 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 - - - - - 2016-06-09 - 1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-18 - 1.3 - 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 - 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. - https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.8.1.tar.xz - - gstreamermm-next-devel - gstreamer-next-devel - gst-plugins-base-devel - gst-plugins-base-next-devel - libdvdread-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 - libgcrypt-devel - x265-devel - nettle-devel - soundtouch-devel - libtheora-devel - libmodplug-devel - xvid-devel - libvdpau-devel - rtmpdump-devel - schroedinger-devel - gdk-pixbuf-devel - libvo-aacenc-devel - libvo-amrwbenc-devel - git - wayland-cursor - mesa-glu-devel - - 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 - x265 - nettle - openssl - rtmpdump - 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 için geliştirme dosyaları - - gst-plugins-bad-next - gstreamer-next-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2016-06-13 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-12 - 1.8.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-03-31 - 1.6.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - libquicktime-ffmpeg3.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 - - - - - 2016-06-13 - 1.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-13 - 1.2.4 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - l-smash - https://github.com/l-smash/l-smash - - Alihan Öztürk - alihan@pisilinux.org - - custom + LGPLv2 app:console - multimedia.video - MP4 muxer and other tools. - Loyal to Spec of MPEG4, and Ad-hock Simple Hackwork library. - https://github.com/l-smash/l-smash/archive/v2.9.1.tar.gz - multimedia/video/l-smash/pspec.xml - - - l-smash - MP4 muxer and other tools. - - glibc - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - l-smash-devel - Development files for l-smash. - - l-smash - - - /usr/lib/pkgconfig - /usr/include - - - - - 2016-06-12 - 2.9.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gstreamer-vaapi-next - http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2.1 library - multimedia.video - GStreamer Multimedia Framework VA Plugins - gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. - https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.8.1.tar.xz + 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 - gtk-doc - mesa-devel - libva-devel - docbook-xsl - libdrm-devel - wayland-devel libxslt-devel - wayland-cursor - libXrandr-devel - libXrender-devel - gstreamer-next-devel - gst-plugins-bad-next-devel - gst-plugins-base-next-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + gtk-doc + NetworkManager-devel + docbook-xsl + libaccounts-glib-devel - multimedia/video/gstreamer-vaapi-next/pspec.xml + network/chat/telepathy-mission-control/pspec.xml - gstreamer-vaapi-next - GStreamer-next Multimedia Framework VA Plugins. + telepathy-mission-control - mesa - eudev + dbus glib2 - libva - libX11 - libdrm - libXrandr - libXrender - gstreamer-next - wayland-client - gst-plugins-bad-next - gst-plugins-base-next - - - /usr/lib - /usr/share/gtk-doc/ - /usr/share/doc - - - gstreamer-vaapi-next - gstreamer-vaapi-next-devel - - - gstreamer-vaapi-next - gstreamer-vaapi-next-devel - - - - - 2016-06-09 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-14 - 1.8.1 - First release. - Kamil Atlı - suvari@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 + dbus-glib + NetworkManager + telepathy-glib + libaccounts-glib /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/lib/libmission-control-plugins.so.0* + /usr/lib/telepathy/mission-control-5 /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 - 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 - - - - - 2016-06-10 - 0.10.36 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 0.10.36 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-20 - 0.10.36 - First release - Alihan Öztürk - alihan@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.19-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 - libXrandr-devel - - - 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 + /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 2016-06-09 - 2.4.19 + 5.16.3 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-04-14 - 2.4.19 - Version bump. - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 1.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-20 - 1.4.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-27 - 1.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - qmplay2 - http://zaps166.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPL - app:gui - multimedia.video - QMPlay2 is a video and audio player which can play most formats and codecs - It can play all formats supported by FFmpeg, libmodplug (including J2B and SFX). It also supports Audio CD, raw files, Rayman 2 music and chiptunes. It contains YouTube and Prostopleer browser. - https://sourceforge.net/projects/zaps166/files/QMPlay2/QMPlay2-src-16.06.01.tar.xz - - qt5-base-devel - qt5-qdbusviewer - qt5-x11extras-devel - qt5-assistant-devel - qt5-designer-devel - qt5-linguist - pkgconfig - cmake - ffmpeg-devel - libva-devel - libvdpau-devel - taglib-devel - portaudio-devel - openal-devel - libcdio-devel - libcddb-devel - libass-devel - libX11-devel - gst-libav-next - pulseaudio-libs-devel - libXv-devel - mesa-devel - mesa-glu-devel - alsa-lib-devel - libva-devel - - multimedia/video/qmplay2/pspec.xml - - - qmplay2 - - qt5-base - qt5-x11extras - alsa-lib - mesa - libXv - libva - ffmpeg - libX11 - libcdio - libass - libgcc - taglib - libcddb - libvdpau - pulseaudio-libs - - - /usr/bin - /usr/share/qmplay2 - /usr/share/icons - /usr/share/applications - /usr/lib - /usr/share/doc - - - QMPlay2.png - QMPlay2.desktop - QMPlay2_enqueue.desktop - - - - - 2016-06-19 - 16.06.01 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-12 - 16.05.06 - First release - Stefan Gronewold - groni@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 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. - https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.8.1.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/bash-completion - /usr/share/doc - /usr/share/gtk-doc - /usr/share/locale - /usr/share/man - - - - gstreamer-next-32bit - 32-bit shared libraries for gstreamer - gstreamer için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glib2-32bit - - - glib2-32bit - gstreamer-next - - - /usr/lib32 - - - - gstreamer-next-devel - Development files for gstreamer - gstreamer için geliştirme dosyaları - - gstreamer-next - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - - 2016-06-09 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-02 - 1.8.1 - rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-02 - 1.8.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - 2016-03-30 - 1.6.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-10 - 0.10.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-10 - 0.10.19 + 5.16.3 First release Alihan Öztürk alihan@pisilinux.org @@ -13396,362 +2951,141 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - gstreamer-vaapi - http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ + telepathy-glib + http://telepathy.freedesktop.org - Osman Erkan - osman.erkan@pisilinux.org + PisiLinux Community + admins@pisilinux.org LGPLv2.1 library - multimedia.video - GStreamer Multimedia Framework VA Plugins - gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. - https://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/gstreamer-vaapi-0.7.0.tar.bz2 + 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 - gtk-doc - yasm-devel - mesa-devel - libva-devel - docbook-xsl - libdrm-devel + gobject-introspection-devel + dbus-devel + dbus-glib-devel libxslt-devel - wayland-devel - wayland-cursor - gstreamer-devel - libXrandr-devel - libXrender-devel - gstreamer-next-devel - gst-plugins-bad-devel - gst-plugins-base-devel - gst-plugins-base-next-devel + vala-devel - multimedia/video/gstreamer-vaapi/pspec.xml + network/chat/telepathy-glib/pspec.xml - gstreamer-vaapi + telepathy-glib + GLib bindings for the Telepathy D-Bus protocol + library - yasm - mesa - libva - eudev + dbus glib2 - libX11 - libdrm - gstreamer - libXrandr - libXrender - wayland-client - gst-plugins-bad - gst-plugins-base + 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 - /usr/lib - gstreamer-vaapi-devel - Development files for gstreamer-vaapi - gstreamer için geliştirme dosyaları + telepathy-glib-devel + Development files for telepathy-glib + telepathy-glib için geliştirme dosyaları - libva-devel - gstreamer-vaapi + telepathy-glib + dbus-devel + glib2-devel + dbus-glib-devel /usr/include /usr/lib/pkgconfig + /usr/share/vala/vapi - + 2016-06-09 - 0.7.0 + 0.24.1 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-15 - 0.7.0 - Rebuild for new gstreamer-vaapi-next - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-02 - 0.7.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - 2015-07-23 - 0.6.0 + 2016-03-30 + 0.24.1 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - kaffeine - http://www.kde.org/applications/multimedia/kaffeine/ + telepathy-idle + http://telepathy.freedesktop.org/wiki PisiLinux Community admins@pisilinux.org - GPLv1 - app:gui - multimedia.video - Kaffeine Media Player for KDE5 - KDE4 için Kaffeine Ortam Oynatıcı - Awesome media player and vcr for KDE5. - KDE4 için harika bir video oynatıcı - https://github.com/KDE/kaffeine/archive/2.0.1.tar.gz - - qt5-base-devel - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-mysql - qt5-assistant-devel - qt5-designer-devel - libXScrnSaver-devel - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - kio-devel - solid-devel - knotifications-devel - kidletime-devel - kdbusaddons-devel - libX11-devel - libXext-devel - gettext-devel - qt5-x11extras-devel - libv4l-devel - vlc-devel - kconfig-devel - kcoreaddons-devel - kconfigwidgets-devel - pkgconfig - extra-cmake-modules - - multimedia/video/kaffeine/pspec.xml - - - kaffeine - - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-mysql - qt5-base - libXScrnSaver - ki18n - kwidgetsaddons - kxmlgui - kio - solid - knotifications - kidletime - kdbusaddons - libX11 - qt5-x11extras - vlc-libs - libgcc - libv4l - kconfig - kcoreaddons - kconfigwidgets - - - /usr/share - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/icons - - - - - 2016-06-09 - 2.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-04 - 2.0.1 - First Release. - Stefan Gronewold - groni@pisilinux.org - - - - - - smtube - http://smplayer.sourceforge.net/en/info - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.video - Play and download Youtube videos - Youtube video indirme yöneticisi - SMTube allows to search, play and download Youtube videos. - SMTube, youtube videolarını oynatmak indirmek ve videolar içerisinde arama yapmak için bir uygulamadır. - http://sourceforge.net/projects/smplayer/files/SMTube/15.11.0/smtube-15.11.0.tar.bz2 - - qt5-base-devel - qt5-script-devel - qt5-location-devel - qt5-webkit-devel - qt5-linguist - - multimedia/video/smtube/pspec.xml - - - smtube - - qt5-base - qt5-script - qt5-webkit - qt5-location - libgcc - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2016-06-09 - 15.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-06 - 15.11 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - gst-plugins-good - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 + LGPLv2+ 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 + 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 - 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 + telepathy-glib-devel + libxslt-devel + gobject-introspection-devel + glib2-devel + dbus-devel + dbus-glib-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 + network/chat/telepathy-idle/pspec.xml - gst-plugins-good + telepathy-idle - 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 + dbus-glib + telepathy-glib - /etc/gconf - /usr/bin - /usr/lib - /usr/share/gstreamer-0.10/presets + /usr/lib + /usr/share/dbus-1 /usr/share/doc /usr/share/man - /usr/share/locale + /usr/share/telepathy - 2016-06-10 - 0.10.31 + 2016-06-09 + 0.2.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-28 - 0.10.31 + 2015-11-22 + 0.2.0 First release Alihan Öztürk alihan@pisilinux.org @@ -13760,2984 +3094,403 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libmp4v2 - http://code.google.com/p/mp4v2 + mobile-broadband-provider-info + http://live.gnome.org/NetworkManager/MobileBroadband/ServiceProviders 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 + 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 - libmp4v2 - - libgcc - + mobile-broadband-provider-info - /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 + /usr/share 2016-06-09 - 2.0.0 + 20120614 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-20 - 2.0.0 + 2012-08-28 + 20120614 First release - Serdar Soytetir - kaptan@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/downloads/x265_1.9.tar.gz - - yasm-devel - cmake - - - x265-1.9-enable_static-1.patch - - 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 - - - - - 2016-06-12 - 1.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-23 - 1.7 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - x264 - http://developers.videolan.org/x264.html + NetworkManager + http://projects.gnome.org/NetworkManager - 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 - https://sourceforge.net/projects/pisilinux/files/source/last_stable_x264.tar.bz2 - - yasm-devel - l-smash-devel - - multimedia/video/x264/pspec.xml - - - x264 - - l-smash - - - /usr/bin - /usr/lib - - - - x264-devel - Development files for x264 - x264 için geliştirme dosyaları - - x264 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-13 - 2245.12062016 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-06-09 - 2245 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-02 - 2245 - First release - Stefan Gronewold(groni) - groni@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-3.0.2.tar.xz - - 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 - yasm-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 - - - - - 2016-06-13 - 3.0.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-06-09 - 2.8.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-16 - 2.8.6 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 1.3.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-14 - 1.3.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 1.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 1.0.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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.3.0/libdvbpsi-1.3.0.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 - - - - - 2016-06-09 - 1.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.3.0 - First release - Alihan Öztürk - alihan@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. - https://github.com/webmproject/libvpx/archive/v1.5.0.tar.gz - - libgcc - yasm-devel - - - 0001-Fix-for-issue-1114-compile-error.patch - - multimedia/video/libvpx/pspec.xml - - - libvpx - - libgcc - - - /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 - - - - - 2016-06-12 - 1.5.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-07-15 - 1.4.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - mpv-player - http://www.mplayerhq.hu/ - - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org GPLv2+ - app:gui - multimedia.video - mpv is based on mplayer2 - mpv has Wayland support, Improved OpenGL output, Support for libavfilter (for video->video and audio->audio). This allows using most of FFmpeg's filters, which improve greatly on the old MPlayer filters in features, performance, and correctness.is a movie player that can run on many platforms. Improved OpenGL output. More correct color reproduction (color matrix generation), including support for BT.2020 (Ultra HD) and linear XYZ (Digital Cinema) inputs. - https://github.com/mpv-player/mpv/archive/v0.17.0.tar.gz - - ffmpeg-devel - mesa-devel - pkgconfig - perl - samba-devel - libX11-devel - zlib-devel - libass-devel - lua-devel - yasm - libjpeg-turbo-devel - libvdpau-devel - mesa-glu-devel - libbluray-devel - libdvdread-devel - libdvdnav-devel - enca-devel - libcdio-devel - lcms2-devel - libXinerama-devel - libxkbcommon-devel - libXScrnSaver-devel - libXv-devel - libffado-devel - libva-devel - libdrm-devel - libv4l-devel - libXext-devel - libcaca-devel - alsa-lib-devel - libvdpau-devel - libXrandr-devel - wayland-cursor - wayland-client - pulseaudio-libs-devel - libcdio-paranoia-devel - jack-audio-connection-kit-devel - - multimedia/video/mpv-player/pspec.xml - - - mpv-player - - lua - enca - mesa - zlib - lcms2 - libXv - libva - samba - ffmpeg - libX11 - libass - libdrm - libv4l - libXext - libcaca - libcdio - alsa-lib - libvdpau - libXrandr - libbluray - libdvdnav - libdvdread - libXinerama - libxkbcommon - libXScrnSaver - libjpeg-turbo - wayland-client - wayland-cursor - pulseaudio-libs - libcdio-paranoia - jack-audio-connection-kit - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/applications - /usr/share/icons - /usr/share/zsh - - - - mpv-player-devel - - mpv-player - - - /usr/lib/pkgconfig - /usr/include - - - - - 2016-06-15 - 0.17.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.16.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-28 - 0.16.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-03-27 - 0.14 - First release - Stefan Gronewold - groni@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. - https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.8.1.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 - - - - - 2016-06-10 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 1.8.1 - Version Bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-03-29 - 1.6.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 0.5.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.5.1 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - libxml2-32bit - - - gstreamer - glib2-32bit - libxml2-32bit - - - /usr/lib32 - - - - - 2016-06-09 - 0.10.36 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 0.10.36 - Release bump - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-06-26 - 0.10.36 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.10.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-29 - 0.10.11 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gst-plugins-ugly-next - 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. - https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.8.1.tar.xz - - orc-devel - lame-devel - glib2-devel - a52dec-devel - libmad-devel - libmpeg2-devel - libdvdread-devel - opencore-amr-devel - gstreamer-next-devel - gstreamermm-next-devel - gst-plugins-base-next-devel - x264-devel - libcdio-devel - - multimedia/video/gst-plugins-ugly-next/pspec.xml - - - gst-plugins-ugly-next - - orc - lame - glib2 - a52dec - libmad - libmpeg2 - libdvdread - opencore-amr - gstreamer-next - gst-plugins-base-next - x264 - libcdio - - - /usr/lib/gstreamer-1.0 - /usr/share/doc/gst-plugins-ugly-next - /usr/share/gtk-doc - /usr/share/gstreamer-1.0 - /usr/share/locale - - - - - 2016-06-10 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-12 - 1.8.1 - Version bumpe - Kamil Atlı - suvari@pisilinux.org - - - 2016-03-29 - 1.6.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 + 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.10.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 - - - xine-lib-ffmpeg3.patch - 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 - - - - - 2016-06-14 - 1.2.6 - Release bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.2.6 - First release - Kamil Atlı - suvari@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 - - - - - 2016-06-09 - 0.1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.1.3 - First release - Serdar Soytetir - kaptan@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. - https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.8.1.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 - - - - - 2016-06-10 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-02 - 1.8.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-03-29 - 1.6.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 0.4.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-01 - 0.4.5 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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://mirrors.netix.net/vlc/vlc/2.2.4/vlc-2.2.4.tar.xz - - libcdio-devel - eudev-devel - lua-devel - libgcrypt-devel - xcb-proto - zlib-devel - gtk2-devel - zvbi-devel - faac-devel - flac-devel - lirc-devel - mesa-devel - x265-devel - x264-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 - ncurses-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 - zvbi-devel - - - ffmpeg3.patch - lua53_compat.patch - qt4-select.patch - vlc-2.1.1-desktop.patch - - multimedia/video/vlc/pspec.xml - - - vlc - - qt5-base - qt5-x11extras - ncurses - 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 - x264 - 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 - - - - - 2016-06-20 - 2.2.4 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-06-09 - 2.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.2.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - smplayer - http://smplayer.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.video - A complete front-end for MPlayer - Gelişmiş bir mplayer önyüzü - SMPlayer es un frontend de Mplayer - smplayer is Qt application which intends to be a complete front-end for MPlayer, from basic features like playing videos, DVDs, and VCDs to more advanced features like support for MPlayer filters and more. - smplayer Qt ile yazılmış, gelişmiş bir mplayer önyüzüdür. Basit özelliklerinin yanı sıra, TV, DVD, VCD oynatma, mplayer filtrelerini kullanabilme gibi yetenekleri de bulunmaktadır. - SMPlayer es un reproductor multimedia gratuito y para Windows y Linux con códecs incorporados, que puede reproducir prácticamente cualquier formato de vídeo y audio. No necesita ningún códec externo. Simplemente instala SMPlayer y podrás reproducir cualquier formato sin la molestia de tener que buscar e instalar paquetes de códecs. - smplayer - http://sourceforge.net/projects/smplayer/files/SMPlayer/15.11.0/smplayer-15.11.0.tar.bz2 - http://sourceforge.net/projects/smplayer/files/SMPlayer-themes/15.12.0/smplayer-themes-15.12.0.tar.bz2 - http://sourceforge.net/projects/smplayer/files/SMPlayer-skins/15.2.0/smplayer-skins-15.2.0.tar.bz2 - - qt5-base-devel - qt5-script-devel - libxkbcommon-devel - zlib-devel - qt5-linguist - - multimedia/video/smplayer/pspec.xml - - - smplayer - - qt5-base - qt5-script - smtube - zlib - libgcc - mpv-player - - - /usr/bin - /usr/share/smplayer - /usr/share/applications - /usr/share/icons - /usr/share/kde4 - /usr/share/man - /usr/share/doc/smplayer - - - - - 2016-06-09 - 15.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 15.11 - First release - Stefan Gronewold - groni@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. - https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.8.1.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 - - - - - 2016-06-10 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-02 - 1.8.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-03-29 - 1.6.3 - First release - Yusuf Aydemir - yusuf.aydemir@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. - https://sourceforge.net/projects/mlt/files/mlt/mlt-6.2.0.tar.gz - - alsa-lib-devel - swig - python-devel - glib2-devel - frei0r-plugins-devel - fftw3-devel - jack-audio-connection-kit-devel - pulseaudio-libs-devel - qt5-base-devel - qt5-svg-devel - perl - libxml2-devel - libsamplerate-devel - ladspa-sdk-devel - libvorbis-devel - sdl-image-devel - libexif-devel - libsdl-devel - ffmpeg-devel - libdv-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 - libsdl - libexif - libxml2 - qt5-svg - alsa-lib - qt5-base - libvorbis - sdl-image - libsamplerate - pulseaudio-libs - 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 - - - - - 2016-06-25 - 6.2.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-20 - 0.9.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-16 - 0.9.8 - First release - Alihan Öztürk - alihan@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 - doxygen - - - 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 - - - - - 2016-06-09 - 0.2.35 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-27 - 0.2.35 - First release - Alihan Öztürk - alihan@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 - libdv-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 - - - - - 2016-06-09 - 3.103 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 3.103 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - pgadmin3 - http://www.pgadmin.org - - PisiLinux Community - admins@pisilinux.org - - BSD - app:gui - util.admin - Graphical client for PostgreSQL - PostgreSQL grafik arabirimi - pgadmin3 is a powerful administration and development platform for the PostgreSQL database, free for any use. - wxGTK temelli PostgreSQL grafik arabirimi - https://ftp.postgresql.org/pub/pgadmin3/release/v1.22.0/src/pgadmin3-1.22.0.tar.gz - - postgresql-lib - libxslt-devel - openssl-devel - wxGTK2.8-devel - - util/admin/pgadmin3/pspec.xml - - - pgadmin3 - - postgresql-lib - libxslt - libgcc - zlib - libxml2 - openssl - wxGTK2.8 - wxBase - - - /usr/bin - /usr/share/pgadmin3 - /usr/share/applications - /usr/share/pixmaps - - - pgadmin3.desktop - - - - - 2016-06-08 - 1.22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-26 - 1.22 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - pisiyap - http://code.google.com/p/pisiyap - - Stefan Gronewold - groni@pisilinux.org - - GPLv3+ - CCPL-Attribution-NonCommercial-NoDerivs-3.0 - app:gui - util.admin - A Simple PiSi source file creator - Basit bir PiSi kaynak dosyası üreticisi - PisiYap is a simple graphical user interface for easily creating PiSi source files. - PisiYap, PiSi kaynak dosyaları üretmek için basit bir kullanıcı arayüzüdür. - pisiyap - https://github.com/mthnzbk/pisiyap/archive/pisiyap-beta2.tar.gz - - qt5-base-devel - python-qt5-devel - python-setuptools - qt5-linguist - - util/admin/pisiyap/pspec.xml - - - pisiyap - - python-qt5 - python-sip - xdg-utils - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/pisiyap - /usr/share/icons - /usr/share/pixmaps - /usr/share/doc - - - - kde-servicemenu-pisiyap - PiSi related service menus - Paketlemeyle ilgili servis menüleri - PiSiYap servicemenus provides some useful service menus for lazy packagers. - PiSiYap ile gelen servis menüleri, konsol açmaya erinen paketçiler için çeşitli servis menüleri sunar. - - pisiyap - plasma-workspace - - - /usr/share/kservices5/ServiceMenus - - - - - 2016-05-13 - 0.7b - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - phpldapadmin - http://phpldapadmin.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - util.admin - phpLDAPadmin (also known as PLA) is a web-based LDAP client - Phpldapadmin aynı zamanda PLA olarak bilinen web tabanlı bir LDAP istemcisidir. - phpLDAPadmin (also known as PLA) is a web-based LDAP client. It provides easy, anywhere-accessible, multi-language administration for your LDAP server. - Phpldapadmin aynı zamanda PLA olarak bilinen web tabanlı bir LDAP istemcisidir. LDAP sunucunuz için çoklu dil desteği yönetimi, herhangi bir yerden erişilebilirlik ve kolaylık sağlar. - mirrors://sourceforge/phpldapadmin/phpldapadmin-php5/1.2.3/phpldapadmin-1.2.3.tgz - util/admin/phpldapadmin/pspec.xml - - - phpldapadmin - - mod_php - openldap-server - openldap-client - apache - - - /usr/share/phpldapadmin - /usr/share/doc - /usr/share/phpldapadmin/config/config.php - /etc/apache2/conf.d/phpldapadmin.conf - - - - - 2016-06-10 - 1.2.3 - First release - Aydın Demirel - aydin@demirel.web.tr - - - - - - 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 - - - / - - - - - 2016-06-08 - 2.3.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-26 - 2.3.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - - - 2016-06-08 - 1.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-17 - 1.0.3 - First release - Kamil Atlı - burakerturk@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 - - - - - 2016-06-08 - 3.8.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-26 - 3.8.8 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-08 - 0.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-28 - 0.0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-08 - 1.1.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 1.1.6 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - - - - - 2016-06-08 - 0.39 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-09-10 - 0.39 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - isodumper - https://github.com/papoteur-mga/isodumper - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - util.admin - A tool for writing ISO images on a USB stick. It's a fork of usb-imagewriter. - IsoDumper, bir USB bellek üzerine ISO imaj dosyası yazma aracıdır. - A tool for writing ISO images on a USB stick. It's a fork of usb-imagewriter. - IsoDumper, bir USB bellek üzerine ISO imaj dosyası yazma aracıdır. - http://gitweb.mageia.org/software/isodumper/snapshot/isodumper-0.45.tar.gz - - isodumper.svg - isodumper.png - header.png - header.svg - isodumper.desktop.in - tr.po + tr.po intltool - imagemagick-devel + 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 + libgudev-devel + libutil-linux-devel + ConsoleKit-devel - util/admin/isodumper/pspec.xml + + 0001-core-fix-failure-to-configure-routes-due-to-wrong-de.patch + disable_set_hostname.patch + + network/connection/NetworkManager/pspec.xml - isodumper + NetworkManager - coreutils - pango + dbus + nspr + glib2 polkit - procps - imagemagick - python-gtk - python-cairo - python-pygobject - libglade - python - dbus-python - pyparted - udisks2 - xterm + readline + dbus-glib + libutil-linux + nss + newt + ppp + libnl + libsoup + libgudev + bluez-libs + iproute2 + iptables + libmm-glib + ModemManager + wpa_supplicant + libndp + ConsoleKit + mobile-broadband-provider-info - /usr/bin - /usr/lib - /usr/libexec + /etc /usr/share - /usr/share/applications - /usr/share/icons - /usr/share/pixmaps - /usr/share/isodumper - /usr/share/polkit-1 - /usr/share/locale + /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/ - - 2016-06-08 - 0.45 + + 2016-06-15 + 1.0.10 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-22 - 0.45 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - 2016-04-04 - 0.45 - First Release - Alihan Öztürk - alihan@pisilinux.org + 2016-01-25 + 1.0.10 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + systemRestart + - inxi - http://code.google.com/p/inxi/ + ppp + http://samba.org/ppp - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + PisiLinux Community + admins@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 - https://sources.archlinux.org/other/community/inxi/inxi-2.3.0.tar.gz - util/admin/inxi/pspec.xml + 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://mirror.meleeweb.net/pub/linux/gentoo/distfiles/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 - inxi + ppp + + libpcap + pam + openssl + - /usr/bin - /usr/share/kde4/apps/konversation/scripts/inxi - /usr/share/man + /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 - 2016-06-10 - 2.3.0 - Version Bump + 2016-06-09 + 2.4.6 + Release Bump Pisi Linux Community admin@pisilinux.org - 2015-07-23 - 2.2.19 + 2016-03-26 + 2.4.6 + First release + Marcin Bojara + marcin@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.4.12.tar.xz + + glib2-devel + libgudev-devel + libxslt-devel + gobject-introspection-devel + polkit-devel + ppp-devel + libqmi-devel + libmbim-devel + intltool + gtk-doc + docbook-xsl + vala-devel + + network/connection/ModemManager/pspec.xml + + + ModemManager + + glib2 + libqmi + polkit + libmbim + libgudev + 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 + /usr/share/gtk-doc + /usr/share/polkit-1 + + + + 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 + + + + + 2016-06-09 + 1.4.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-25 + 1.4.12 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -16746,233 +3499,142 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - phpmyadmin - http://www.phpmyadmin.net/ + wpa_supplicant + http://hostap.epitest.fi/wpa_supplicant/ PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - util.admin - Browser based MySQL Admin Tool - Tarayıcı tabanlı MySQL Yönetim Aracı - A populer application for managing MySQL Server; add/update data etc. with PHP5 support. - MySQL Sunucusunu yönetmek için PHP5 desteği ile birlikte gelen popüler bir uygulama. - https://files.phpmyadmin.net/phpMyAdmin/4.6.2/phpMyAdmin-4.6.2-all-languages.tar.xz - util/admin/phpmyadmin/pspec.xml - - - phpmyadmin - - mod_php - mariadb-lib - mariadb-client - mariadb-server - - - /usr/share/doc - /usr/share/phpmyadmin - /usr/share/phpmyadmin/config.inc.php - /etc/apache2/conf.d/phpmyadmin.conf - - - System.Package - - - config.inc.php - phpmyadmin.conf - - - - - 2016-06-10 - 4.6.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - audit - http://people.redhat.com/sgrubb/audit/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - library + BSD service - util.admin - User space tools for kernel auditing - Linux çekirdeğinin 2.6 sürümü için inceleme/denetleme araçları - audit contains the user space utilities for storing and searching the audit records generated by the audit subsystem in the Linux 2.6 kernel. - audit Linux çekirdeğinin 2.6 sürümünün inceleme altyapısı tarafından üretilen inceleme kayıtlarını aramak ve saklamak için kullanılan araçları içerir. - http://people.redhat.com/sgrubb/audit/audit-2.3.7.tar.gz + 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 + - python-devel - kernel-headers - libcap-ng-devel - tcp-wrappers-devel - swig + libnl-devel + openssl-devel + dbus-devel + readline-devel - without_openldap.patch + 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 - util/admin/audit/pspec.xml + network/connection/wpa_supplicant/pspec.xml - audit + wpa_supplicant - libcap-ng + libnl + dbus + openssl + readline /etc - /usr/share/doc - /usr/lib + /etc/dbus-1 /usr/sbin /usr/bin + /usr/lib + /usr/share/doc /usr/share/man - /var/log/audit - /var/spool/audit + /usr/share/dbus-1/system-services + /run System.Service - System.Package - - - python-audit - Python bindings for audit - audit için Python bağlayıcısı - - audit - - - /usr/lib/python* - - - - audit-devel - Development files for audit - audit için geliştirme dosyaları - system.devel - - audit - - - /usr/include - /usr/share/man/man3 - + + wpa_supplicant.conf + wpa_supplicant.confd + wpa_supplicant.logrotate + wpa_supplicant.py + - 2016-06-08 - 2.3.7 + 2016-06-09 + 2.4 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-21 - 2.3.7 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org + 2015-07-15 + 2.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - sudo - http://www.sudo.ws/ + bridge-utils + http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge PisiLinux Community admins@pisilinux.org - Sudo + GPLv2 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.16.tar.gz - - nss-devel - audit-devel - pam-devel - zlib-devel - cyrus-sasl-devel - openldap-client - - util/admin/sudo/pspec.xml + 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 - sudo - - nss - audit - pam - zlib - cyrus-sasl - openldap-client - + bridge-utils - /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 + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man - - System.Package - - - sudoers - sudoers - sudo.pamd - sudo-i.pamd - sudo.tmpfiles.conf - - - 2016-06-15 - 1.8.16 + + 2016-06-09 + 1.5 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-16 - 1.8.16 - Version bump. Add sudoers.orig for live user privileges - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2016-01-10 - 1.8.13 + 2014-01-19 + 1.5 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - augeas - http://augeas.net + netcf + https://fedorahosted.org/netcf PisiLinux Community admins@pisilinux.org @@ -16980,40 +3642,51 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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 + 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 - util/misc/augeas/pspec.xml + network/connection/netcf/pspec.xml - augeas + netcf + zlib + libnl + augeas libxml2 + libxslt readline + libgcrypt + libgpg-error /usr/bin + /usr/libexec/ + /etc/rc.d/init.d /usr/lib - /usr/share/augeas - /usr/share/vim/vimfiles + /usr/share/netcf /usr/share/doc - /usr/share/man + /usr/share/man/man1/ncftool.1 - augeas-devel - Development files for augeas - augeas için geliştirme dosyaları + netcf-devel + Development files for netcf + netcf için geliştirme dosyaları - augeas - libxml2-devel + augeas-devel + libxslt-devel + netcf /usr/include @@ -17023,15 +3696,15 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2016-06-08 - 1.4.0 + 2016-06-09 + 0.2.8 Release Bump Pisi Linux Community admin@pisilinux.org 2015-12-31 - 1.4.0 + 0.2.8 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -17040,206 +3713,225 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - strace - http://sourceforge.net/projects/strace/ + network-manager-applet + http://projects.gnome.org/NetworkManager 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 + 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.10.tar.xz - libaio-devel - libunwind-devel - - util/misc/strace/pspec.xml - - - strace - - libunwind - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2016-06-08 - 4.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-25 - 4.9 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-08 - 1.7.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-25 - 1.7.0 - First release - Stefan Gronewold(groni) - groni@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 + 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 - doxygen - slang-devel - libpcre-devel - samba-devel - libICE-devel - libutil-linux-devel + dbus-glib-devel + atk-devel + libgudev-devel + intltool - util/misc/mc/pspec.xml + network/connection/network-manager-applet/pspec.xml - mc + network-manager-applet - gpm + gtk3 + atk + cairo + pango + libsecret + libnotify + libmm-glib + gdk-pixbuf + NetworkManager + dbus glib2 - slang - samba - libutil-linux + dbus-glib + libgudev - /etc/profile.d /usr/bin - /usr/lib - /usr/libexec + /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 - /usr/share/man - /usr/share/mc - /etc/mc - - mc.profile - u7z - mc.ini - + + + 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 + - 2016-06-08 - 4.8.15 + 2016-06-09 + 1.0.10 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-11-09 - 4.8.15 + 2016-01-26 + 1.0.10 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - tidy - http://tidy.sourceforge.net/ + 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 + + + + + 2016-06-09 + 7.06 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-15 + 7.06 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + linux-atm + http://linux-atm.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 + 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 - tidy + linux-atm + + flex + + /lib/firmware + /usr/sbin /usr/bin + /etc /usr/lib + /usr/share/man /usr/share/doc - tidy-devel - Development files for tidy - tidy için geliştirme dosyaları + linux-atm-devel + Development files for linux-atm + linux-atm için geliştirme dosyaları - tidy + linux-atm /usr/include @@ -17247,15 +3939,1997 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2016-06-08 - 20101110 + 2016-06-09 + 2.5.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2012-10-04 - 20101110 + 2015-04-13 + 2.5.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + iproute2 + http://linux-net.osdl.org/index.php/Iproute2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.filter + Kernel routing and traffic control utilities + Çekirdek içinde yer alan ağ trafiği yönlendirme ve trafik kontrol araçları. + Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux. + Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur. + https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.4.0.tar.xz + + iptables-devel + linux-atm-devel + db-devel + elfutils + + network/filter/iproute2/pspec.xml + + + iproute2 + + linux-atm + iptables + db + elfutils + + + /etc + /sbin + /usr/sbin + /lib + /usr/lib + /usr/share/man + /usr/share/doc + /var/lib + + + + + 2016-06-09 + 4.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-05 + 4.4.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + iptables + http://www.iptables.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.filter + Firewall, NAT and packet mangling tools + Güvenlik duvarı, ağ adres çevrimi ve paket çevrimi aracı + Contains iptables firewall, NAT and packet mangling tools. + Iptables kural tabanlı gelişmiş güvenlik duvarı uygulamasıdır. + ftp://ftp.netfilter.org/pub/iptables/iptables-1.6.0.tar.bz2 + + libnfnetlink-devel + + network/filter/iptables/pspec.xml + + + iptables + + libnfnetlink + + + /usr/bin + /sbin + /lib + /usr/lib + /usr/share/man + /etc + /var + /usr/share/xtables + + + System.Service + Network.Firewall + + + + iptables-devel + Development files for iptables + iptables için geliştirme dosyaları + + iptables + + + /usr/include + /usr/lib/*.a + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2016-06-09 + 1.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-20 + 1.6.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + lynx + http://lynx.isc.org/ + + PisiLinux Community + admins@pisilinux.org + + GPL + app:gui + network.web + Lynx is the text web browser. + This is the top level page for the Lynx software distribution site hosted by the Internet Software Consortium. + http://invisible-mirror.net/archives/lynx/tarballs/lynx2.8.8rel.2.tar.bz2 + + ncurses-devel + openssl-devel + gettext-devel + + + lynx2-8-6-don-t-accept-command-line-args-to-telnet.patch + lynx2-8-6-fix-ugly-color.patch + lynx2-8-7-adapt-to-modern-file-localizations.patch + lynx2-8-7-tmp_dir.patch + + network/web/lynx/pspec.xml + + + lynx + + ncurses + openssl + gettext + + + /usr/bin + /etc + /usr/share + /usr/share/man + + + + + 2016-06-09 + 2.8.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-29 + 2.8.8 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + firefox + http://www.mozilla.org/projects/firefox/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + NPL-1.1 + GPLv2 + app:gui + network.web + Firefox Web Browser + Firefox Web Browser + Firefox Web-Browser + Firefox Web Tarayıcı + Przeglądarka WWW Firefox + Firefox Navegador Web + It is more secure and faster to browse the web with Firefox web browser. You can personalize your web browser with many specifications that is not enough to explain in two sentences. + Met Firefox gaat het browsen van het web veiliger en sneller. Het kan met vele toevoegingen aan uw persoonlijke wensen aangepast worden en heeft te veel mogelijkheden om in twee zinnen te beschrijven. + Mit dem Firefox Web-Browser surfen sie sicherer und schneller im Web. Sie können Ihren Web-Browser mit vielen Spezifikationen personalisieren, diese kann man nicht in zwei Sätzen erklären. + Internette gezinmek daha güvenli ve hızlı. İki cümle ile anlatılamayacak ek ozellikler ile açık kaynak kodlu web tarayıcınızı kişiselleştirebilirsiniz. + Mozilla Firefox – otwarta przeglądarka internetowa oparta na silniku Gecko, stworzona i rozwijana przez Korporację Mozilla oraz ochotników. + Navegue por la web de forma rápida y segura. Navegador web de código abierto que se puede personalizar con características adicionales. + firefox + https://ftp.mozilla.org/pub/firefox/releases/47.0/source/firefox-47.0.source.tar.xz + + mozconfig + pisilinux/browserconfig.properties + + + wget + yasm + zlib-devel + gtk3-devel + gtk2-devel + libXt-devel + libSM-devel + libpng-devel + libffi-devel + gnutls-devel + hunspell-devel + sqlite-devel + autoconf213 + alsa-lib-devel + dbus-glib-devel + libXcomposite-devel + libXScrnSaver-devel + libjpeg-turbo-devel + pulseaudio-libs-devel + gconf-devel + startup-notification-devel + libvpx-devel + libevent-devel + pulseaudio-libs-devel + gst-plugins-base-next-devel + nss-devel + nspr-devel + + + firefox-install-dir.patch + gtk3.patch + + network/web/firefox/pspec.xml + + + firefox + + atk + nss + dbus + gtk3 + gtk2 + nspr + zlib + cairo + glib2 + libXt + pango + libX11 + libffi + libgcc + libpng + pixman + sqlite + iconcan + libXext + icu4c + libvpx + alsa-lib + gconf + libevent + freetype + hunspell + dbus-glib + libXfixes + fontconfig + gstreamer-next + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + startup-notification + + + /etc/ + /usr/share/doc + /usr/bin + /usr/share/mime + /usr/libexec + /usr/lib/pkgconfig + /usr/share/pixmaps + /usr/lib/firefox + /usr/share/applications + + + System.Package + + + pisilinux/mozillafirefox.desktop + pisilinux/firefox-l10n.js + pisilinux/default-prefs.js + pisilinux/pisilinux_bookmark-tr.html + pisilinux/pisilinux_bookmark-en.html + pisilinux/pisilinux_bookmark-nl.html + pisilinux/pisilinux_bookmark-de.html + + + + firefox-lang-az + Firefox üçün Türkçe dil faylı + Firefox üçün Türkçe dil faylı + locale:az + system.locale + lang-az + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-az@firefox.mozilla.org + + + + firefox-lang-be + Беларуская мова пакет для Firefox + Беларуская мова пакет для Firefox + locale:be + system.locale + lang-be + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-be@firefox.mozilla.org + + + + firefox-lang-bs + Engleskom jeziku paket za Firefox + Engleskom jeziku paket za Firefox + locale:bs + system.locale + lang-bs + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-bs@firefox.mozilla.org + + + + firefox-lang-ca + Arxiu d'idioma català del Firefox + Arxiu d'idioma català del Firefox + locale:ca + system.locale + lang-ca + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ca@firefox.mozilla.org + + + + firefox-lang-da + Dansk sprogpakke til Firefox + Dansk sprogpakke til Firefox + locale:da + system.locale + lang-da + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-da@firefox.mozilla.org + + + + firefox-lang-de + Deutsch Sprachdatei für Firefox + Deutsch Sprachdatei für Firefox + locale:de + system.locale + lang-de + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-de@firefox.mozilla.org + + + + firefox-lang-el + Ελληνική γλώσσα pack για τον Firefox + Ελληνική γλώσσα pack για τον Firefox + locale:el + system.locale + lang-el + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-el@firefox.mozilla.org + + + + firefox-lang-en-US + English language pack for Firefox + English language pack for Firefox + locale:en-US + system.locale + lang-en-US + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-US@firefox.mozilla.org + + + + firefox-lang-en-ZA + South African English language pack for Firefox + South African English language pack for Firefox + locale:en-ZA + system.locale + lang-en-ZA + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-ZA@firefox.mozilla.org + + + + firefox-lang-en-GB + British English language pack for Firefox + British English language pack for Firefox + locale:en-GB + system.locale + lang-en-GB + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-GB@firefox.mozilla.org + + + + firefox-lang-es-AR + Paquete de idioma español para Firefox + Paquete de idioma español para Firefox + locale:es-AR + system.locale + lang-es-AR + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-AR@firefox.mozilla.org + + + + firefox-lang-es-CL + Paquete de idioma español para Firefox + Paquete de idioma español para Firefox + locale:es-CL + system.locale + lang-es-CL + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-CL@firefox.mozilla.org + + + + firefox-lang-es-ES + Paquete de idioma español para Firefox + Paquete de idioma español para Firefox + locale:es-ES + system.locale + lang-es-ES + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-ES@firefox.mozilla.org + + + + firefox-lang-fi + Suomen kielen pack for Firefox + Suomen kielen pack for Firefox + locale:fi + system.locale + lang-fi + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-fi@firefox.mozilla.org + + + + firefox-lang-fr + Paquet de langue française pour Firefox + Paquet de langue française pour Firefox + locale:fr + system.locale + lang-fr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-fr@firefox.mozilla.org + + + + firefox-lang-hr + Hrvatski jezični paket za Firefox + Hrvatski jezični paket za Firefox + locale:hr + system.locale + lang-hr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-hr@firefox.mozilla.org + + + + firefox-lang-hu + Magyar nyelvű pack for Firefox + Magyar nyelvű pack for Firefox + locale:hu + system.locale + lang-hu + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-hu@firefox.mozilla.org + + + + firefox-lang-it + Language Pack italiano per Firefox + Language Pack italiano per Firefox + locale:it + system.locale + lang-it + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-it@firefox.mozilla.org + + + + firefox-lang-lt + Lietuvių kalbos paketas Firefox + Lietuvių kalbos paketas Firefox + locale:lt + system.locale + lang-lt + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-lt@firefox.mozilla.org + + + + firefox-lang-nl + Nederlands taalpakket voor Firefox + Nederlands taalpakket voor Firefox + locale:nl + system.locale + lang-nl + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-nl@firefox.mozilla.org + + + + firefox-lang-pl + Polski pakiet językowy dla programu Firefox + Polski pakiet językowy dla programu Firefox + locale:pl + system.locale + lang-pl + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pl@firefox.mozilla.org + + + + firefox-lang-pt-BR + Pacote de idioma português para o Firefox + Pacote de idioma português para o Firefox + locale:pt-BR + system.locale + lang-pt-BR + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pt-BR@firefox.mozilla.org + + + + firefox-lang-pt-PT + Pacote de idioma português para o Firefox + Pacote de idioma português para o Firefox + locale:pt-PT + system.locale + lang-pt-PT + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pt-PT@firefox.mozilla.org + + + + firefox-lang-ro + Pachet de limba română pentru Firefox + Pachet de limba română pentru Firefox + locale:ro + system.locale + lang-ro + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ro@firefox.mozilla.org + + + + firefox-lang-ru + Русский языковый пакет для Firefox + Русский языковый пакет для Firefox + locale:ru + system.locale + lang-ru + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ru@firefox.mozilla.org + + + + firefox-lang-sr + Паковање српски језик за Фирефок + Паковање српски језик за Фирефок + locale:sr + system.locale + lang-sr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-sr@firefox.mozilla.org + + + + firefox-lang-sv-SE + Svenska språkpaket för Firefox + Svenska språkpaket för Firefox + locale:sv-SE + system.locale + lang-sv-SE + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-sv-SE@firefox.mozilla.org + + + + firefox-lang-tr + Firefox için Türkçe dil dosyası + Firefox için Türkçe dil dosyası + locale:tr + system.locale + lang-tr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-tr@firefox.mozilla.org + + + + firefox-lang-uk + Український мовний пакет для Firefox + Український мовний пакет для Firefox + locale:uk + system.locale + lang-uk + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-uk@firefox.mozilla.org + + + + + 2016-06-16 + 47.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 44.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 44.0.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + qupzilla + http://www.qupzilla.com/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + network.web + A fast open source browser based on WebKit core, written in Qt Framework, wayland port + A fast open source browser based on WebKit core, written in Qt Framework, wayland port + https://github.com/QupZilla/qupzilla/releases/download/v2.0.1/QupZilla-2.0.1.tar.xz + + openssl-devel + glib2-devel + qt5-base-devel + qt5-webkit-devel + qt5-webengine-devel + qt5-x11extras-devel + qt5-svg-devel + qt5-sql-sqlite + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-phonon-devel + qt5-sensors-devel + qt5-script-devel + qt5-designer-devel + qt5-webchannel-devel + qt5-location-devel + qt5-imageformats + qt5-linguist + xcb-util-devel + libvpx-devel + libgnome-keyring-devel + kdelibs4-support-devel + kwallet-devel + hunspell-devel + gdb-devel + libmng-devel + lcms2-devel + tiff-devel + jbigkit-devel + nss-devel + + + speeddial.diff + preferences.diff + browserwindow.diff + defines.diff + bookmarks_json.diff + + network/web/qupzilla/pspec.xml + + + qupzilla + Cross-platform QtWebKit browser + + libgcc + libxcb + openssl + qt5-base + qt5-webengine + qt5-x11extras + qt5-webchannel + qt5-declarative + hunspell + kwallet + + + /usr/bin + /usr/lib + /usr/qupzilla + /usr/share + /usr/share/appdata + /usr/share/applications + /usr/share/bash-completion + /usr/share/icons + /usr/share/pixmaps + /usr/share/qupzilla + /usr/share/doc + + + + + 2016-06-18 + 2.0.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + chromium-browser + http://code.google.com/chromium + + Admin PisiLinux + admin@pisilinux.org + + GPLv2 + app:gui + network.web + A WebKit powered web browser + Webkit tabanlı ağ tarayıcı + Chromium-browser is an open-source web browser, powered by WebKit. + Chromium, açık kaynak kodlu Webkit tabanlı bir ağ tarayıcıdır. + chromium-browser + http://gsdview.appspot.com/chromium-browser-official/chromium-51.0.2704.106.tar.xz + + alsa-lib-devel + at-spi2-atk-devel + atk-devel + cairo-devel + cups-devel + desktop-file-utils + faac-devel + ffmpeg-devel + flac-devel + pciutils-devel + fontconfig-devel + dbus-devel + gperf + jack-audio-connection-kit-devel + libavc1394-devel + libgnome-keyring-devel + speech-dispatcher-devel + gdk-pixbuf-devel + gsm-devel + gtk2-devel + harfbuzz-devel + hunspell-devel + icu4c-devel + imlib2-devel + lame-devel + libdc1394-devel + libdrm-devel + libevent-devel + libexif-devel + libjpeg-turbo-devel + libmtp-devel + libogg-devel + libopus-devel + libsecret-devel + libtheora-devel + libvdpau-devel + libvorbis-devel + libvpx-devel + libXcomposite-devel + libXcursor-devel + libXdamage-devel + libXext-devel + libXfixes-devel + libXi-devel + libXrandr-devel + libXrender-devel + libXScrnSaver-devel + libXtst-devel + minizip-devel + mit-kerberos + nss-devel + opencore-amr-devel + pango-devel + pulseaudio-libs-devel + python-lxml + schroedinger-devel + snappy-devel + speex-devel + valgrind + webp-devel + x264-devel + xdg-utils + xvid-devel + ninja + libffi-devel + yasm-devel + usbutils + + + PNGImageDecoder.patch + chromium-widevine.patch + pisilinux/gfx_jpeg_codec.patch + pisilinux/fix_build_with_newer_gcc.patch + + network/web/chromium-browser/pspec.xml + + + chromium-browser + + alsa-lib + dbus + atk + cairo + cups + flac + fontconfig + gdk-pixbuf + gtk2 + libevent + libjpeg-turbo + libopus + libXcomposite + libXcursor + libXdamage + libXext + libXfixes + libXi + libXrandr + libXrender + libXScrnSaver + libXtst + minizip + mit-kerberos + nss + pango + pepperflash + pulseaudio-libs + speech-dispatcher + speex + webp + pciutils + nspr + zlib + expat + glib2 + libX11 + libgcc + libpng + snappy + freetype + harfbuzz + + + /etc + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/icons + /usr/share/pixmaps + /usr/share/applications + + + master_preferences + chromium-browser.desktop + + + + + 2016-07-05 + 51.0.2704.106 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-30 + 51.0.2704.84 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-09 + 48.0.2564.97 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + + + + farstream + http://www.freedesktop.org/wiki/Software/Farstream + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + library + network.voip + Farstream (formerly Farsight) - Audio/Video Communications Framework + Ses/Video İletişim Çatısı + Farstream (formerly Farsight) - Audio/Video Communications Framework + Farsight projesi, bilinen tüm ses/video konferans protokolleri ile uyum sağlayan bir çatı oluşturulması amacıyla yapılan bir çalışmadır. Bir taraftan, farklı akış protokolleri için eklentiler yazmayı mümkün kılan genel bir API sunarken, diğer taraftan da bu eklentileri kullanacak istemciler için bir API sunmaktadır. + http://freedesktop.org/software/farstream/releases/farstream/farstream-0.2.7.tar.gz + + libnice-devel + valgrind + gobject-introspection-devel + gstreamer-next-devel + gstreamer-devel + gst-plugins-base-next-devel + + network/voip/farstream/pspec.xml + + + farstream + + glib2 + libnice + gstreamer-next + gst-plugins-base-next + + + /usr/lib + /usr/lib/farstream-0.2 + /usr/lib/gstreamer-0.1 + /usr/lib/libfarstream-0.2* + /usr/share/doc + /usr/share/farstream + /usr/share/gir-1.0 + /usr/share + + + + farstream-devel + Development files for farstream + farstream için geliştirme dosyaları + + farstream + gstreamer-next-devel + gst-plugins-base-next-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 0.2.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 0.2.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + thunderbird + http://www.mozilla.org/projects/thunderbird/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + NPL-1.1 + GPLv2+ + app:gui + network.mail + The Stand-Alone Mozilla Mail Component + Thunderbird eposta istemcisi + Klient pocztowy Thunderbird + Thunderbird is a redesign of the Mozilla Mail Component. It is written using the XUL user interface language and designed to be cross-platform. + Thunderbird, Mozilla e-posta bileşeninin yeniden tasarlanmış halidir. Platform bağımsız olan Thunderbird, XUL kullanıcı arayüzü diliyle geliştirilmiştir. + Thunderbird to darmowy i rozszerzalny klient poczty z wieloma wspaniałymi funkcjami. + thunderbird + http://ftp.mozilla.org/pub/thunderbird/releases/45.1.1/source/thunderbird-45.1.1.source.tar.xz + + pisilinux/mozconfig + + + wget + yasm + nss-devel + gtk2-devel + zlib-devel + libXt-devel + libSM-devel + libpng-devel + sqlite-devel + libffi-devel + libXcomposite-devel + alsa-lib-devel + libjpeg-turbo-devel + dbus-devel + pixman-devel + dbus-glib-devel + hunspell-devel + libevent-devel + gconf-devel + libvpx-devel + pulseaudio-libs-devel + startup-notification-devel + + + thunderbird-install-dir.patch + + network/mail/thunderbird/pspec.xml + + + thunderbird + + atk + nss + gtk2 + nspr + zlib + cairo + glib2 + libXt + pango + libX11 + pixman + libgcc + gconf + icu4c + hunspell + libvpx + libpng + sqlite + iconcan + libXext + alsa-lib + libevent + freetype + libXfixes + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + startup-notification + + + /usr/share/doc + /usr/bin + /usr/share/pixmaps + /usr/lib/thunderbird + /usr/share/applications + /usr/share/icons/hicolor + + + vendor.js + thunderbird.desktop + pisilinux/sound.wav + + + + thunderbird-lang-be + Беларуская мова пакет для Thunderbird + Беларуская мова пакет для Thunderbird + locale:be + system.locale + lang-be + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-be@thunderbird.mozilla.org + + + + thunderbird-lang-ca + Arxiu d'idioma català del Thunderbird + Arxiu d'idioma català del Thunderbird + locale:ca + system.locale + lang-ca + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-ca@thunderbird.mozilla.org + + + + thunderbird-lang-da + Dansk sprogpakke til Thunderbird + Dansk sprogpakke til Thunderbird + locale:da + system.locale + lang-da + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-da@thunderbird.mozilla.org + + + + thunderbird-lang-de + Deutsch Sprachdatei für Thunderbird + Deutsch Sprachdatei für Thunderbird + locale:de + system.locale + lang-de + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-de@thunderbird.mozilla.org + + + + thunderbird-lang-el + Ελληνική γλώσσα pack για τον Thunderbird + Ελληνική γλώσσα pack για τον Thunderbird + locale:el + system.locale + lang-el + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-el@thunderbird.mozilla.org + + + + thunderbird-lang-en-US + English language pack for Thunderbird + English language pack for Thunderbird + locale:en_US + system.locale + lang-en-US + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-en-US@thunderbird.mozilla.org + + + + thunderbird-lang-es-AR + Paquete de idioma español para Thunderbird + Paquete de idioma español para Thunderbird + locale:es_AR + system.locale + lang-es-AR + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-es-AR@thunderbird.mozilla.org + + + + thunderbird-lang-es-ES + Paquete de idioma español para Thunderbird + Paquete de idioma español para Thunderbird + locale:es + system.locale + lang-es-ES + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-es-ES@thunderbird.mozilla.org + + + + thunderbird-lang-fi + Suomen kielen pack for Thunderbird + Suomen kielen pack for Thunderbird + locale:fi + system.locale + lang-fi + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-fi@thunderbird.mozilla.org + + + + thunderbird-lang-fr + Paquet de langue française pour Thunderbird + Paquet de langue française pour Thunderbird + locale:fr + system.locale + lang-fr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-fr@thunderbird.mozilla.org + + + + thunderbird-lang-hr + Hrvatski jezični paket za Thunderbird + Hrvatski jezični paket za Thunderbird + locale:hr + system.locale + lang-hr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-hr@thunderbird.mozilla.org + + + + thunderbird-lang-hu + Magyar nyelvű pack for Thunderbird + Magyar nyelvű pack for Thunderbird + locale:hu + system.locale + lang-hu + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-hu@thunderbird.mozilla.org + + + + thunderbird-lang-it + Language Pack italiano per Thunderbird + Language Pack italiano per Thunderbird + locale:it + system.locale + lang-it + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-it@thunderbird.mozilla.org + + + + thunderbird-lang-lt + Lietuvių kalbos paketas Thunderbird + Lietuvių kalbos paketas Thunderbird + locale:lt + system.locale + lang-lt + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-lt@thunderbird.mozilla.org + + + + thunderbird-lang-nl + Nederlands taalpakket voor Thunderbird + Nederlands taalpakket voor Thunderbird + locale:nl + system.locale + lang-nl + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-nl@thunderbird.mozilla.org + + + + thunderbird-lang-pl + Polski pakiet językowy dla programu Thunderbird + Polski pakiet językowy dla programu Thunderbird + locale:pl + system.locale + lang-pl + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-pl@thunderbird.mozilla.org + + + + thunderbird-lang-pt-BR + Pacote de idioma português para o Thunderbird + Pacote de idioma português para o Thunderbird + locale:pt_BR + system.locale + lang-pt-BR + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-pt-BR@thunderbird.mozilla.org + + + + thunderbird-lang-pt-PT + Pacote de idioma português para o Thunderbird + Pacote de idioma português para o Thunderbird + locale:pt + system.locale + lang-pt-PT + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-pt-PT@thunderbird.mozilla.org + + + + thunderbird-lang-ro + Pachet de limba română pentru Thunderbird + Pachet de limba română pentru Thunderbird + locale:ro + system.locale + lang-ro + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-ro@thunderbird.mozilla.org + + + + thunderbird-lang-ru + Русский языковый пакет для Thunderbird + Русский языковый пакет для Thunderbird + locale:ru + system.locale + lang-ru + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-ru@thunderbird.mozilla.org + + + + thunderbird-lang-sr + Паковање српски језик за Фирефок + Паковање српски језик за Фирефок + locale:sr + system.locale + lang-sr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-sr@thunderbird.mozilla.org + + + + thunderbird-lang-sv-SE + Svenska språkpaket för Thunderbird + Svenska språkpaket för Thunderbird + locale:sv_SE + system.locale + lang-sv-SE + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-sv-SE@thunderbird.mozilla.org + + + + thunderbird-lang-tr + Thunderbird için Türkçe dil dosyası + Thunderbird için Türkçe dil dosyası + locale:tr + system.locale + lang-tr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-tr@thunderbird.mozilla.org + + + + thunderbird-lang-uk + Український мовний пакет для Thunderbird + Український мовний пакет для Thunderbird + lang-uk + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-uk@thunderbird.mozilla.org + + + + + 2016-06-15 + 45.1.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-29 + 38.5.1 + 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 + + + + + 2016-06-09 + 5.7.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-02 + 5.7.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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://pkgs.fedoraproject.org/repo/pkgs/libconfig/libconfig-1.5.tar.gz/a939c4990d74e6fc1ee62be05716f633/libconfig-1.5.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 + + + + + 2016-06-09 + 1.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-03-04 + 1.4.9 + First release + Marcin Bojara + marcin@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 + + + + + 2016-06-09 + 3.2.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-15 + 3.2.25 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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.11.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 + gst-libav-next + gobject-introspection-devel + gst-plugins-base-next-devel + gst-plugins-bad-next-devel + gst-plugins-good-next + which + icon-theme-hicolor + gperf + libSM-devel + + + install-minibrowser.patch + + 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-libav-next + gst-plugins-bad-next + gst-plugins-base-next + gst-plugins-good-next + gobject-introspection + + + /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 + + + + + 2016-06-18 + 2.4.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-9 + 2.4.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-05 + 2.4.9 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + protobuf + http://code.google.com/p/protobuf + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + network.misc + Google's data interchange format + Google'ın veri alış veriş biçimi + Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats. + Protokol Arabellekleri(protobuf) yapılandırılmış veriyi kodlamak için verimli bir biçimdir. Google kendi içindeki bütün RPC protokolleri ve dosya biçimleri için Protokol Arabelleklerini kullanmaktadır. + http://source.pisilinux.org/1.0/protobuf-3.0.0-pre.tar.gz + + python-setuptools + + network/misc/protobuf/pspec.xml + + + protobuf + + libgcc + + + /usr/bin + /usr/lib/libproto* + /usr/lib/python2.7/site-packages + /usr/share/doc + /usr/share/vim + /usr/share/emacs + + + + protobuf-devel + Development files for protobuf + protobuf için geliştirme dosyaları + + protobuf + + + /usr/include/google/protobuf + /usr/lib/pkgconfig + + + + + 2016-06-12 + 2.6.1 First release PisiLinux Community admins@pisilinux.org @@ -17264,94 +5938,267 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - ibus - http://code.google.com/p/ibus/ + 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. + https://github.com/FreeRDP/FreeRDP/archive/aa15327a3ac30710fbf23547ebcf6593e5e1701b/FreeRDP-aa15327a3ac30710fbf23547ebcf6593e5e1701b.tar.gz + + cups-devel + ffmpeg-devel + alsa-lib-devel + libXinerama-devel + xmlto + libX11-devel + libXi-devel + libXcursor-devel + libxkbcommon-devel + libxkbfile-devel + libXv-devel + libXrandr-devel + gstreamer-next-devel + gst-plugins-base-next-devel + glib2-devel + openssl-devel + zlib-devel + cmake + libxslt + util-linux + + network/misc/freerdp/pspec.xml + + + freerdp + + glib2 + libXi + libXv + ffmpeg + libX11 + libXext + openssl + alsa-lib + libXfixes + libXcursor + libXrender + libxkbfile + libXinerama + gstreamer-next + gst-plugins-base-next + + + /usr/bin + /usr/lib + /usr/share/freerdp + /usr/share/doc + /usr/share/man + + + + freerdp-devel + + freerdp + openssl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-14 + 2.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-01 + 1.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libasyncns + http://0pointer.de/lennart/projects/libasyncns PisiLinux Community admins@pisilinux.org LGPLv2.1 - app - util.misc - Intelligent Input Bus for Linux / Unix OS - IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. - https://github.com/ibus/ibus/releases/download/1.5.10/ibus-1.5.10.tar.gz - - gtk2-devel - gtk3-devel - glib2-devel - dconf-devel - vala-devel - libnotify-devel - libxkbcommon-devel - intltool - iso-codes - libxslt - gtk-doc - gobject-introspection-devel - docbook-xsl - - util/misc/ibus/pspec.xml + 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 - ibus + libasyncns + + /usr/lib + /usr/share/doc + + + + libasyncns-devel + Development files for libasyncns + libasyncns için geliştirme dosyaları - glib2 - libX11 - atk - gtk2 - gtk3 - cairo - libXi - pango - dconf - libnotify - gdk-pixbuf - libxkbcommon - gobject-introspection - wayland-client + libasyncns + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2016-06-09 + 0.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-29 + 0.8 + First release + Stefan Gronewold(groni) + groni@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 - /etc/bash_completion.d/ - /etc/gconf/schemas/ibus.schemas - /etc/dconf/ /usr/bin /usr/lib - /usr/share + /usr/share/locale + /usr/share/doc + /usr/share/man - ibus-gtk2 - ibus için gtk2 desteği + neon-devel + Development files for neon + neon için geliştirme dosyaları - ibus - glib2 - gtk2 - pango + neon - /usr/lib/gtk-2.0/2.10.0/immodules/ + /usr/include + /usr/lib/pkgconfig + + + 2016-06-09 + 0.30.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 0.30.0 + First release + Alihan Öztürk + alihan@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 + - ibus-gtk3 - ibus için gtk3 desteği - - ibus - glib2 - gtk3 - pango - + libcddb - /usr/lib/gtk-3.0/3.0.0/immodules/ + /usr/bin + /usr/lib + /usr/share/doc - ibus-devel - ibus için geliştirme dosyaları - ibus için geliştirme dosyaları + libcddb-devel + Development files for libcddb + libcddb için geliştirme dosyaları - ibus + libcddb /usr/include @@ -17360,121 +6207,15 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2016-06-08 - 1.5.10 + 2016-06-09 + 1.3.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-06-16 - 1.5.10 - First release - Vedat Demir - vedat@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 - - - - - 2016-06-08 - 4.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-07 - 4.3.1 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-08 - 4.84 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 - 4.84 + 2014-05-20 + 1.3.2 First release Kamil Atlı suvarice@gmail.com @@ -17483,113 +6224,393 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - krusader - http://krusader.sourceforge.net/ + iputils + https://github.com/iputils/iputils PisiLinux Community admins@pisilinux.org - GPLv2 - app:gui - util.misc - Advanced KDE twin-panel(commander-style) file-manager - Krusader is an advanced twin panel (commander style) file manager for KDE and other desktops in the *nix world, similar to Midnight or Total Commander.. - krusader - https://sourceforge.net/projects/pisilinux/files/source/krusader-15.08.tar.gz + 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 - qt5-base-devel - qt5-qdbusviewer - qt5-xmlpatterns-devel - kparts-devel - kwallet-devel - kxmlgui-devel - kguiaddons-devel - zlib-devel - plasma-framework-devel - kdoctools-devel - extra-cmake-modules - karchive-devel - kbookmarks-devel - kcodecs-devel - kcompletion-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - kio-devel - knotifications-devel - solid-devel - ktextwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - kservice-devel - kjobwidgets-devel - kconfigwidgets-devel - cmake + openssl-devel + libidn-devel + libcap-devel - util/misc/krusader/pspec.xml + network/misc/iputils/pspec.xml - krusader + iputils - qt5-base - kparts - kwallet - kguiaddons - kxmlgui - zlib - plasma-framework - kdoctools - karchive - kbookmarks - kcodecs - kcompletion - kcoreaddons - kconfig - ki18n - kiconthemes - kitemviews - kio - knotifications - solid - ktextwidgets - kwidgetsaddons - kwindowsystem - acl - libgcc - kservice - kjobwidgets - kconfigwidgets - p7zip - rar + libcap + libidn - /etc/xdg + /etc /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share + /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 + - 2016-06-08 - 15.08 + 2016-06-09 + 20150815 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-10 - 15.08 + 2015-10-01 + 20150815 First release - Stefan Gronewold + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.7.3.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 + + + + + 2016-06-09 + 0.7.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-25 + 0.7.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libc-client + http://www.washington.edu/imap/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + service + network.misc + C-client mail access routines for IMAP and POP protocols + İmap protokolü için kitaplık + The c-client library is a common API for accessing mailboxes developed at the University of Washington. It is used mainly by php + Washington üniversitesi tarafından, POP ve IMAP protokolleri için geliştirilmiş genel kitaplıklar. Temel olarak php tarafından kullanılır. + ftp://ftp.cac.washington.edu/imap/imap-2007f.tar.gz + + pam-devel + openssl-devel + e2fsprogs-devel + mit-kerberos + + + imap-2007a-linux.diff + imap-2006c1-glibc-2.2.2.diff + imap-2006c1-krbpath.diff + imap-2001a-disable-mbox.patch + imap-2001a-overflow.patch + imap-2004a-doc.patch + imap-2007e-authmd5.patch + imap-2007e-shared.patch + uw-imap-2004c-amd64-so-fix.patch + + network/misc/libc-client/pspec.xml + + + libc-client + + mit-kerberos + + + /usr/include + /usr/lib + + + + + 2016-06-09 + 2007f + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-27 + 2007f + First release + Stefan Gronewold(groni) groni@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 + + + + + 2016-06-09 + 0.12.99 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 0.12.99 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-13 + 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/ + + + + + 2016-06-09 + 1.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-07 + 1.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + bash-completion @@ -17730,268 +6751,63 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - areca - http://www.areca-backup.org/ - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 - app:gui - util.archive - Easy to use and reliable backup solution for Linux. - Easy to use and reliable backup solution for Linux. - Areca Backup is very versatile and as simple as possible. - Areca Backup is very versatile and as simple as possible. - areca - http://sourceforge.net/projects/areca/files/areca-stable/areca-7.5/areca-7.5-linux-gtk-64.tar.gz - util/archive/areca/pspec.xml - - - areca - - acl - - - /usr/bin/ - /usr/share/applications - /usr/share/pixmaps - /opt/areca/ - /usr - - - areca - areca.desktop - areca.png - - - - - 2016-06-08 - 7.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-23 - 7.5 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libzip - http://www.nih.at/libzip/ + libtar + http://www.feep.net/libtar/ PisiLinux Community admins@pisilinux.org - BSD + as-is library util.archive - A C library for reading, creating, and modifying zip archives - Zip arşivleri yaratmak, okumak ve değiştirmek için C kitaplığı - libzip is a C library for reading, creating and modifying zip archives. Files can be added from data buffers, files or compressed data copied directly from other zip archives. - libzip, zip arşivleri yaratma, okumak ve değiştirmek için kullanılabilecek bir C kitaplığıdır. - http://www.nih.at/libzip/libzip-1.0.1.tar.gz + 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 zlib-devel - util/archive/libzip/pspec.xml + util/archive/libtar/pspec.xml - libzip + libtar zlib /usr/bin /usr/lib - /usr/share/man /usr/share/doc + /usr/share/man - libzip-devel - Development files for libzip - libzip için geliştirme dosyaları + libtar-devel + Development files for libtar + libtar için geliştirme dosyaları - zlib-devel - libzip + libtar /usr/include - /usr/lib/pkgconfig /usr/share/man/man3 2016-06-08 - 1.0.1 + 1.2.20 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-07-28 - 1.0.1 + 2014-06-20 + 1.2.20 First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - unrar - http://www.rarsoft.com/rar_add.htm - - PisiLinux Community - admins@pisilinux.org - - unRAR - app:console - util.archive - RAR decompressor - RAR açma uygulaması - unrar is a program to decompress RAR archives. - Unrar, RAR biçimli sıkıştırılmış dosyaları açar. - http://www.rarlab.com/rar/unrarsrc-5.3.4.tar.gz - - unrar-5.3.4-soname.patch - - util/archive/unrar/pspec.xml - - - unrar - - /usr/bin - /usr/share/doc - - - - - 2016-06-08 - 5.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-25 - 5.3.4 - First release - yusuf Aydemir - yuısuf.aydemir@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 - - yasm-devel - - util/archive/p7zip/pspec.xml - - - p7zip - - libgcc - - - /usr/bin - /usr/lib/p7zip - /usr/lib/p7zip/Codecs - /usr/share/doc - /usr/share/man - - - 7z - 7za - - - - - 2016-06-08 - 15.09 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-01 - 15.09 - First release - Stefan Gronewold(groni) - groni@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-06-08 - 5.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-01 - 5.3.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org + Kamil Atlı + suvari@pisilinux.org @@ -18110,110 +6926,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - - - 2016-06-08 - 1.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-23 - 1.6 - First release - Stefan Gronewold(groni) - groni@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 - - zlib-devel - - util/archive/libtar/pspec.xml - - - libtar - - zlib - - - /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 - - - - - 2016-06-08 - 1.2.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-20 - 1.2.20 - First release - Kamil Atlı - suvari@pisilinux.org - - - upx @@ -18269,70 +6981,104 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - gpgme - http://www.gnupg.org/gpgme.html + cabextract + http://www.cabextract.org.uk/ PisiLinux Community admins@pisilinux.org GPLv2 - LGPLv2 - library - util.crypt - GnuPG Made Easy is a library for making GnuPG easier to use - GnuPG Made Easy, GnuPG kullanmayı kolaylaştıran bir kütüphanedir - GPGME est une librairie conçue pour donner aux applications un accès plus facile à GnuPG. Elle fournit une interface de programmation d'application (API) de haut niveau pour la cryptographie permettant de crypter, décrypter, signer, vérifier les signatures et la gestion de clefs. - GPGME is a library designed to make access to GnuPG easier for applications. It provides a high-Level Crypto application programming interface (API) for encryption, decryption, signing, signature verification and key management. - GPGME daha kolay uygulanması amacıyla GnuPG ye erişimi sağlamak için tasarlanmış bir kütüphanedir. Şifreleme, şifre çözme, imzalama, imza kontrolü ve anahtar yönetimi için yüksek düzeyde gizli uygulama programlama arayüzü sağlar. - GPGME es una librería diseñada para simplificar el acceso a GnuPG para aplicaciones. Facilita una interfaz de programación de aplicación (API) de alto nivel para encriptación, decriptación, firmas, verificación de firmas y administración de llaves. - ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.5.5.tar.bz2 - - gnupg - libgpg-error-devel - libassuan-devel - - util/crypt/gpgme/pspec.xml + 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 - gpgme - - gnupg - libgpg-error - libassuan - + cabextract /usr/bin - /usr/lib - /usr/share/common-lisp - /usr/share/doc - /usr/share/info - - - - gpgme-devel - Development files for gpgme - gpgme için geliştirme dosyaları - - gpgme - libgpg-error-devel - libassuan-devel - - - /usr/include - /usr/share/aclocal + /usr/share/man 2016-06-08 - 1.5.5 + 1.6 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-21 - 1.5.5 + 2015-11-23 + 1.6 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libzip + http://www.nih.at/libzip/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + util.archive + A C library for reading, creating, and modifying zip archives + Zip arşivleri yaratmak, okumak ve değiştirmek için C kitaplığı + libzip is a C library for reading, creating and modifying zip archives. Files can be added from data buffers, files or compressed data copied directly from other zip archives. + libzip, zip arşivleri yaratma, okumak ve değiştirmek için kullanılabilecek bir C kitaplığıdır. + http://www.nih.at/libzip/libzip-1.0.1.tar.gz + + zlib-devel + + util/archive/libzip/pspec.xml + + + libzip + + zlib + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libzip-devel + Development files for libzip + libzip için geliştirme dosyaları + + zlib-devel + libzip + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2016-06-08 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-28 + 1.0.1 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -18341,49 +7087,511 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - keyutils - http://people.redhat.com/~dhowells/keyutils/ + unrar + http://www.rarsoft.com/rar_add.htm PisiLinux Community admins@pisilinux.org - GPLv2+ - LGPLv2+ - library + unRAR 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 + util.archive + RAR decompressor + RAR açma uygulaması + unrar is a program to decompress RAR archives. + Unrar, RAR biçimli sıkıştırılmış dosyaları açar. + http://www.rarlab.com/rar/unrarsrc-5.3.4.tar.gz + + unrar-5.3.4-soname.patch + + util/archive/unrar/pspec.xml - keyutils + unrar - /etc - /bin - /sbin - /usr/include - /usr/lib - /lib - /usr/share/man + /usr/bin /usr/share/doc - /usr/share/keyutils 2016-06-08 - 1.5.9 + 5.3.4 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-22 - 1.5.9 + 2015-01-25 + 5.3.4 + First release + yusuf Aydemir + yuısuf.aydemir@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-06-08 + 5.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-01 + 5.3.0 + First release + Stefan Gronewold(groni) + groni@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 + + yasm-devel + + util/archive/p7zip/pspec.xml + + + p7zip + + libgcc + + + /usr/bin + /usr/lib/p7zip + /usr/lib/p7zip/Codecs + /usr/share/doc + /usr/share/man + + + 7z + 7za + + + + + 2016-06-08 + 15.09 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-01 + 15.09 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + areca + http://www.areca-backup.org/ + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.archive + Easy to use and reliable backup solution for Linux. + Easy to use and reliable backup solution for Linux. + Areca Backup is very versatile and as simple as possible. + Areca Backup is very versatile and as simple as possible. + areca + http://sourceforge.net/projects/areca/files/areca-stable/areca-7.5/areca-7.5-linux-gtk-64.tar.gz + util/archive/areca/pspec.xml + + + areca + + acl + + + /usr/bin/ + /usr/share/applications + /usr/share/pixmaps + /opt/areca/ + /usr + + + areca + areca.desktop + areca.png + + + + + 2016-06-08 + 7.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-23 + 7.5 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + isodumper + https://github.com/papoteur-mga/isodumper + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + util.admin + A tool for writing ISO images on a USB stick. It's a fork of usb-imagewriter. + IsoDumper, bir USB bellek üzerine ISO imaj dosyası yazma aracıdır. + A tool for writing ISO images on a USB stick. It's a fork of usb-imagewriter. + IsoDumper, bir USB bellek üzerine ISO imaj dosyası yazma aracıdır. + http://gitweb.mageia.org/software/isodumper/snapshot/isodumper-0.45.tar.gz + + isodumper.svg + isodumper.png + header.png + header.svg + isodumper.desktop.in + tr.po + + + intltool + imagemagick-devel + + util/admin/isodumper/pspec.xml + + + isodumper + + coreutils + pango + polkit + procps + imagemagick + python-gtk + python-cairo + python-pygobject + libglade + python + dbus-python + pyparted + udisks2 + xterm + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share + /usr/share/applications + /usr/share/icons + /usr/share/pixmaps + /usr/share/isodumper + /usr/share/polkit-1 + /usr/share/locale + /usr/share/doc + + + + + 2016-06-08 + 0.45 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-22 + 0.45 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-04 + 0.45 + First Release + Alihan Öztürk + alihan@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 + + + + + 2016-06-08 + 0.39 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-09-10 + 0.39 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + phpldapadmin + http://phpldapadmin.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.admin + phpLDAPadmin (also known as PLA) is a web-based LDAP client + Phpldapadmin aynı zamanda PLA olarak bilinen web tabanlı bir LDAP istemcisidir. + phpLDAPadmin (also known as PLA) is a web-based LDAP client. It provides easy, anywhere-accessible, multi-language administration for your LDAP server. + Phpldapadmin aynı zamanda PLA olarak bilinen web tabanlı bir LDAP istemcisidir. LDAP sunucunuz için çoklu dil desteği yönetimi, herhangi bir yerden erişilebilirlik ve kolaylık sağlar. + mirrors://sourceforge/phpldapadmin/phpldapadmin-php5/1.2.3/phpldapadmin-1.2.3.tgz + util/admin/phpldapadmin/pspec.xml + + + phpldapadmin + + mod_php + openldap-server + openldap-client + apache + + + /usr/share/phpldapadmin + /usr/share/doc + /usr/share/phpldapadmin/config/config.php + /etc/apache2/conf.d/phpldapadmin.conf + + + + + 2016-06-10 + 1.2.3 + First release + Aydın Demirel + aydin@demirel.web.tr + + + + + + phpmyadmin + http://www.phpmyadmin.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.admin + Browser based MySQL Admin Tool + Tarayıcı tabanlı MySQL Yönetim Aracı + A populer application for managing MySQL Server; add/update data etc. with PHP5 support. + MySQL Sunucusunu yönetmek için PHP5 desteği ile birlikte gelen popüler bir uygulama. + https://files.phpmyadmin.net/phpMyAdmin/4.6.2/phpMyAdmin-4.6.2-all-languages.tar.xz + util/admin/phpmyadmin/pspec.xml + + + phpmyadmin + + mod_php + mariadb-lib + mariadb-client + mariadb-server + + + /usr/share/doc + /usr/share/phpmyadmin + /usr/share/phpmyadmin/config.inc.php + /etc/apache2/conf.d/phpmyadmin.conf + + + System.Package + + + config.inc.php + phpmyadmin.conf + + + + + 2016-06-10 + 4.6.2 + First release + Pisi Linux Admins + admins@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 + + + + + 2016-06-08 + 1.1.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.1.6 First release Kamil Atlı suvarice@gmail.com @@ -18392,98 +7600,162 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - gnupg - http://www.gnupg.org/ + pisiyap + http://code.google.com/p/pisiyap - PisiLinux Community - admins@pisilinux.org + Stefan Gronewold + groni@pisilinux.org GPLv3+ - app:console - util.crypt - The GNU Privacy Guard, a PGP replacement - GNU Gizlilik Koruması - GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories. - GnuPG verilerinizin ve iletişimlerinizin şifrelenmesi ve imzalanmmasını sağlar, her tür genel anahtar dizinleri için modullere erişiminde olduğu gibi çok yönlü anahtar yönetim sistemi avantajı vardır. - ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.1.7.tar.bz2 + CCPL-Attribution-NonCommercial-NoDerivs-3.0 + app:gui + util.admin + A Simple PiSi source file creator + Basit bir PiSi kaynak dosyası üreticisi + PisiYap is a simple graphical user interface for easily creating PiSi source files. + PisiYap, PiSi kaynak dosyaları üretmek için basit bir kullanıcı arayüzüdür. + pisiyap + https://github.com/mthnzbk/pisiyap/archive/pisiyap-beta2.tar.gz - openldap-client - pinentry - npth-devel - libassuan-devel - libksba-devel - zlib-devel - bzip2 - texinfo - gnutls-devel - readline-devel - libgcrypt-devel - libgpg-error-devel - libusb-compat-devel + qt5-base-devel + python-qt5-devel + python-setuptools + qt5-linguist - util/crypt/gnupg/pspec.xml + util/admin/pisiyap/pspec.xml - gnupg + pisiyap - openldap-client - npth - libassuan - pinentry - libksba - zlib - bzip2 - gnutls - readline - libgcrypt - libgpg-error - libusb-compat + python-qt5 + python-sip + xdg-utils /usr/bin - /usr/sbin - /usr/libexec + /usr/lib + /usr/share/applications + /usr/share/pisiyap + /usr/share/icons + /usr/share/pixmaps /usr/share/doc - /usr/share/doc/html - /usr/share/gnupg - /usr/share/info - /usr/share/locale - /usr/share/man - - dirmngr - - - dirmngr - - - System.Package - - gnupg-docs - Documentation files for GnuPG - GnuPG paketine ait API dokümantasyonu + kde-servicemenu-pisiyap + PiSi related service menus + Paketlemeyle ilgili servis menüleri + PiSiYap servicemenus provides some useful service menus for lazy packagers. + PiSiYap ile gelen servis menüleri, konsol açmaya erinen paketçiler için çeşitli servis menüleri sunar. - gnupg + pisiyap + plasma-workspace - /usr/share/doc/gnupg/html - /usr/share/gnupg/help.* - /usr/share/doc/gnupg/faq.html + /usr/share/kservices5/ServiceMenus + + + + + 2016-05-13 + 0.7b + First release + Stefan Gronewold + groni@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 + https://sources.archlinux.org/other/community/inxi/inxi-2.3.0.tar.gz + util/admin/inxi/pspec.xml + + + inxi + + /usr/bin + /usr/share/kde4/apps/konversation/scripts/inxi + /usr/share/man + /usr/share/doc + + + + + 2016-06-10 + 2.3.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-23 + 2.2.19 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 2016-06-08 - 2.1.7 + 0.0.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-21 - 2.1.7 + 2015-06-28 + 0.0.2 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -18492,95 +7764,1023 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - nss - http://www.mozilla.org/projects/security/pki/nss/ + pisido + http://www.pisilinux.org - Erdinç Gültekin - admins@pisilinux.org + Harun Gültekin + hrngultekin@gmail.com - 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_23_RTM/src/nss-3.23.tar.gz - - nss.pc.in - nss-config.in - generate-pc-config.sh - + 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 - zlib-devel - sqlite-devel - nspr-devel + qscintilla2-devel + qtermwidget5-devel - - add_spi+cacert_ca_certs.patch - fedora/add-relro-linker-option.patch - - util/crypt/nss/pspec.xml + util/admin/pisido/pspec.xml - nss + pisido + A pisi packager from GUI - zlib - sqlite - nspr + libgcc + qt5-base + qscintilla2 + qtermwidget5 - /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 + / - - 2016-06-15 - 3.23 - Version Bump - Pisi Linux Community - admin@pisilinux.org - 2016-06-08 - 3.22 + 2.3.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-02-14 - 3.22 + 2015-10-26 + 2.3.3 First release - Osman Erkan - osman.erkan@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@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.16.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 + sudoers + sudo.pamd + sudo-i.pamd + sudo.tmpfiles.conf + + + + + 2016-06-15 + 1.8.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 1.8.16 + Version bump. Add sudoers.orig for live user privileges + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-01-10 + 1.8.13 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + pgadmin3 + http://www.pgadmin.org + + PisiLinux Community + admins@pisilinux.org + + BSD + app:gui + util.admin + Graphical client for PostgreSQL + PostgreSQL grafik arabirimi + pgadmin3 is a powerful administration and development platform for the PostgreSQL database, free for any use. + wxGTK temelli PostgreSQL grafik arabirimi + https://ftp.postgresql.org/pub/pgadmin3/release/v1.22.0/src/pgadmin3-1.22.0.tar.gz + + postgresql-lib + libxslt-devel + openssl-devel + wxGTK2.8-devel + + util/admin/pgadmin3/pspec.xml + + + pgadmin3 + + postgresql-lib + libxslt + libgcc + zlib + libxml2 + openssl + wxGTK2.8 + wxBase + + + /usr/bin + /usr/share/pgadmin3 + /usr/share/applications + /usr/share/pixmaps + + + pgadmin3.desktop + + + + + 2016-06-08 + 1.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-26 + 1.22 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + audit + http://people.redhat.com/sgrubb/audit/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + library + service + util.admin + User space tools for kernel auditing + Linux çekirdeğinin 2.6 sürümü için inceleme/denetleme araçları + audit contains the user space utilities for storing and searching the audit records generated by the audit subsystem in the Linux 2.6 kernel. + audit Linux çekirdeğinin 2.6 sürümünün inceleme altyapısı tarafından üretilen inceleme kayıtlarını aramak ve saklamak için kullanılan araçları içerir. + http://people.redhat.com/sgrubb/audit/audit-2.3.7.tar.gz + + python-devel + kernel-headers + libcap-ng-devel + tcp-wrappers-devel + swig + + + without_openldap.patch + + util/admin/audit/pspec.xml + + + audit + + libcap-ng + + + /etc + /usr/share/doc + /usr/lib + /usr/sbin + /usr/bin + /usr/share/man + /var/log/audit + /var/spool/audit + + + System.Service + System.Package + + + + python-audit + Python bindings for audit + audit için Python bağlayıcısı + + audit + + + /usr/lib/python* + + + + audit-devel + Development files for audit + audit için geliştirme dosyaları + system.devel + + audit + + + /usr/include + /usr/share/man/man3 + + + + + 2016-06-08 + 2.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-21 + 2.3.7 + Version bump. + Serdar Soytetir + kaptan@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 + + + + + 2016-06-08 + 1.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-17 + 1.0.3 + First release + Kamil Atlı + burakerturk@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 + + + + + 2016-06-08 + 3.8.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-26 + 3.8.8 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-08 + 4.8.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-09 + 4.8.15 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + krusader + http://krusader.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.misc + Advanced KDE twin-panel(commander-style) file-manager + Krusader is an advanced twin panel (commander style) file manager for KDE and other desktops in the *nix world, similar to Midnight or Total Commander.. + krusader + https://sourceforge.net/projects/pisilinux/files/source/krusader-15.08.tar.gz + + qt5-base-devel + qt5-qdbusviewer + qt5-xmlpatterns-devel + kparts-devel + kwallet-devel + kxmlgui-devel + kguiaddons-devel + zlib-devel + plasma-framework-devel + kdoctools-devel + extra-cmake-modules + karchive-devel + kbookmarks-devel + kcodecs-devel + kcompletion-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + kio-devel + knotifications-devel + solid-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + kservice-devel + kjobwidgets-devel + kconfigwidgets-devel + cmake + + util/misc/krusader/pspec.xml + + + krusader + + qt5-base + kparts + kwallet + kguiaddons + kxmlgui + zlib + plasma-framework + kdoctools + karchive + kbookmarks + kcodecs + kcompletion + kcoreaddons + kconfig + ki18n + kiconthemes + kitemviews + kio + knotifications + solid + ktextwidgets + kwidgetsaddons + kwindowsystem + acl + libgcc + kservice + kjobwidgets + kconfigwidgets + p7zip + rar + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + + 2016-06-08 + 15.08 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-10 + 15.08 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-08 + 4.84 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 4.84 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + + + + + 2016-06-08 + 4.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-07 + 4.3.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ibus + http://code.google.com/p/ibus/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app + util.misc + Intelligent Input Bus for Linux / Unix OS + IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. + https://github.com/ibus/ibus/releases/download/1.5.10/ibus-1.5.10.tar.gz + + gtk2-devel + gtk3-devel + glib2-devel + dconf-devel + vala-devel + libnotify-devel + libxkbcommon-devel + intltool + iso-codes + libxslt + gtk-doc + gobject-introspection-devel + docbook-xsl + + util/misc/ibus/pspec.xml + + + ibus + + glib2 + libX11 + atk + gtk2 + gtk3 + cairo + libXi + pango + dconf + libnotify + gdk-pixbuf + libxkbcommon + gobject-introspection + wayland-client + + + /etc/bash_completion.d/ + /etc/gconf/schemas/ibus.schemas + /etc/dconf/ + /usr/bin + /usr/lib + /usr/share + + + + ibus-gtk2 + ibus için gtk2 desteği + + ibus + glib2 + gtk2 + pango + + + /usr/lib/gtk-2.0/2.10.0/immodules/ + + + + ibus-gtk3 + ibus için gtk3 desteği + + ibus + glib2 + gtk3 + pango + + + /usr/lib/gtk-3.0/3.0.0/immodules/ + + + + ibus-devel + ibus için geliştirme dosyaları + ibus için geliştirme dosyaları + + ibus + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-08 + 1.5.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-16 + 1.5.10 + First release + Vedat Demir + vedat@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 + + + + + 2016-06-08 + 20101110 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 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 + + + + + 2016-06-08 + 4.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-25 + 4.9 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-08 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-31 + 1.4.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-08 + 1.7.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-25 + 1.7.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org @@ -18650,66 +8850,153 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - qca2-qt5 - http://download.kde.org/stable/qca-qt5 + pinentry + http://www.gnupg.org/aegypten/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 - library + GPLv2+ + app:console 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 + 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 - qt5-base-devel - nss-devel - doxygen - cmake + libsecret-devel + libgpg-error-devel + libassuan-devel + gtk2-devel + pango-devel + libcap-devel + ncurses-devel + glib2-devel - util/crypt/qca2-qt5/pspec.xml + util/crypt/pinentry/pspec.xml - qca2-qt5 + pinentry - qt5-base - nss - libgcc + glib2 + libassuan + libsecret + libgpg-error + libcap + ncurses /usr/bin - /usr/qt/4/bin - /usr/lib + /usr/share/info /usr/share/doc - /usr/share/man - /usr/share/qca + + pinentry-wrapper + - qca2-qt5-devel - Development files for qca2 + pinentry-gtk + pinentry for GTK toolkit + GTK+ ile yazılmış pinentry arayüzü - qca2-qt5 - qt5-base-devel + pinentry + ncurses + libcap + libassuan + libsecret + libgpg-error + glib2 + gtk2 + pango - /usr/include/qt5/Qca-qt5/QtCrypto - /usr/lib/pkgconfig/qca2.pc - /usr/share/qt4/mkspecs/features + /usr/bin/pinentry-gtk* - 2016-06-15 - 2.1.1 + 2016-06-08 + 0.9.5 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-11-06 - 2.1.1 + 2015-08-21 + 0.9.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gpgme + http://www.gnupg.org/gpgme.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + util.crypt + GnuPG Made Easy is a library for making GnuPG easier to use + GnuPG Made Easy, GnuPG kullanmayı kolaylaştıran bir kütüphanedir + GPGME est une librairie conçue pour donner aux applications un accès plus facile à GnuPG. Elle fournit une interface de programmation d'application (API) de haut niveau pour la cryptographie permettant de crypter, décrypter, signer, vérifier les signatures et la gestion de clefs. + GPGME is a library designed to make access to GnuPG easier for applications. It provides a high-Level Crypto application programming interface (API) for encryption, decryption, signing, signature verification and key management. + GPGME daha kolay uygulanması amacıyla GnuPG ye erişimi sağlamak için tasarlanmış bir kütüphanedir. Şifreleme, şifre çözme, imzalama, imza kontrolü ve anahtar yönetimi için yüksek düzeyde gizli uygulama programlama arayüzü sağlar. + GPGME es una librería diseñada para simplificar el acceso a GnuPG para aplicaciones. Facilita una interfaz de programación de aplicación (API) de alto nivel para encriptación, decriptación, firmas, verificación de firmas y administración de llaves. + ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.5.5.tar.bz2 + + gnupg + libgpg-error-devel + libassuan-devel + + util/crypt/gpgme/pspec.xml + + + gpgme + + gnupg + libgpg-error + libassuan + + + /usr/bin + /usr/lib + /usr/share/common-lisp + /usr/share/doc + /usr/share/info + + + + gpgme-devel + Development files for gpgme + gpgme için geliştirme dosyaları + + gpgme + libgpg-error-devel + libassuan-devel + + + /usr/include + /usr/share/aclocal + + + + + 2016-06-08 + 1.5.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-21 + 1.5.5 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -18844,80 +9131,52 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libtasn1 - http://www.gnutls.org/ + keyutils + http://people.redhat.com/~dhowells/keyutils/ PisiLinux Community admins@pisilinux.org - GPLv2 + GPLv2+ + LGPLv2+ library + app:console 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 + 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 - libtasn1 + keyutils - /usr/share + /etc + /bin + /sbin + /usr/include /usr/lib + /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 - - libtasn1 - - - /usr/lib32/ + /usr/share/keyutils - + 2016-06-08 - 4.5 + 1.5.9 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-27 - 4.5 - Release bump - Ertuğrul Erata - ertugrulerata@gmail.com - - 2015-07-13 - 4.5 + 2014-05-22 + 1.5.9 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Kamil Atlı + suvarice@gmail.com @@ -19014,89 +9273,6 @@ 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* - - - - - 2016-06-08 - 0.9.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-21 - 0.9.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - libmcrypt @@ -19160,9395 +9336,160 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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 - - - zlib-32bit - libX11-32bit - libXext-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 - - - - - 2016-04-30 - 340.96 - Rebuild for new kernel - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-03-06 - 340.96 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - module-nvidia304 - http://www.nvidia.com - - PisiLinux Community - admins@pisilinux.org - - NVIDIA - driver - kernel.drivers - NVIDIA drivers for GeForce 5-7 series GPUs - NVIDIA GeForce 6-7 serisi ekran kartları için grafik sürücüleri - Controladores nVIDIA de kernel y glx para tarjetas NV3 o mejor (Geforce FX o mejor) - NVIDIA graphics drivers provide optimized 2D/3D performance. - NVIDIA grafik sürücüleri daha iyi 2B/3B başarımı sağlar. - Controladores de kernel nVIDIA y glx para rendimiento optimizado 2d/3d en Linux (Para NV3X o mejor). - http://http.download.nvidia.com/XFree86/Linux-x86/304.131/NVIDIA-Linux-x86-304.131.run - http://http.download.nvidia.com/XFree86/Linux-x86_64/304.131/NVIDIA-Linux-x86_64-304.131.run - - kernel-module-headers - - kernel/drivers/module-nvidia304/pspec.xml - - - module-nvidia304 - Kernel module for NVIDIA driver 304.xx releases - NVIDIA sürücüsü 304.xx sürümleri için çekirdek modülü - - noDelta - - - kernel - - - /lib/modules - - - - xorg-video-nvidia304 - x11.driver - - noDelta - - - module-nvidia304 - libXext - xorg-server - zlib - libX11 - - - /etc/OpenCL - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - xorg-video-nvidia-current - - - System.Package - - - - - 2016-04-30 - 304.131 - Rebuild for new kernel - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-03-06 - 304.131 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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.201.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 - 4.4-manjaro-xstate.patch - - - kernel-module-headers - kernel - - 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 - - - xorg-video-fglrx - libXext-32bit - libX11-32bit - mesa-32bit - libgcc - - - /usr/lib32 - - - xorg-video-fglrx-legacy-32bit - - - System.Package - - - - - 2016-03-06 - 15.201 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - module-nvidia-current - http://www.nvidia.com - - Marcin Bojara - marcin@pisilinux.org - - NVIDIA - kernel.drivers - NVIDIA drivers for GeForce 6xxx and newer GPUs - GeForce 6xxx ve daha yeni NVIDIA ekran kartları için sürücüler - Controladores nVIDIA de kernel y glx para tarjetas NV3 o mejor (Geforce FX o mejor) - NVIDIA graphics drivers provide optimized 2D/3D performance. - NVIDIA grafik sürücüleri daha iyi 2B/3B başarımı sağlar. - Controladores de kernel nVIDIA y glx para rendimiento optimizado 2d/3d en Linux (Para NV3X o mejor). - ftp://download.nvidia.com/XFree86/Linux-x86/361.28/NVIDIA-Linux-x86-361.28.run - ftp://download.nvidia.com/XFree86/Linux-x86_64/361.28/NVIDIA-Linux-x86_64-361.28.run - - kernel-module-headers - libX11-devel - gtk2-devel - gtk3-devel - - kernel/drivers/module-nvidia-current/pspec.xml - - - module-nvidia-current - Kernel module for current NVIDIA graphics driver releases - Güncel NVIDIA grafik sürücüleri için çekirdek modülü - driver - - noDelta - - - kernel - - - /lib/modules - /etc/modprobe.d - - - modprobe.conf - - - - nvidia-settings - Settings for nvidia-current kernel driver - app:gui - hardware.graphics - - atk - gtk2 - gtk3 - cairo - glib2 - pango - libX11 - libXext - gdk-pixbuf - module-nvidia-current - - - /usr/bin/nvidia-settings - /usr/share/man/man1/nvidia-settings.1 - /usr/lib/libnvidia-gtk* - /usr/share/applications - /usr/share/pixmaps - /usr/share/nvidia - - - nvidia-settings.desktop - - - - nvidia-xconfig - Xconfig file for nvidia-current kernel driver - app:console - hardware.graphics - - module-nvidia-current - - - /usr/bin/nvidia-xconfig - /usr/share/man/man1/nvidia-xconfig.1 - - - - xorg-video-nvidia-current - Güncel NVIDIA userspace sürücüleri ve ikili dosyaları - driver - x11.driver - - noDelta - - - libXext - libX11 - mesa - xorg-server - module-nvidia-current - - - /etc/OpenCL - /usr/bin - /usr/lib - /usr/share/X11 - /usr/share/nvidia-current - /usr/share/doc - /usr/share/man - - - System.Package - - - - xorg-video-nvidia-current-32bit - 32-bit shared libraries for xorg-video-nvidia-current - xorg-video-nvidia-current için 32-bit paylaşımlı kitaplıklar - emul32 - - noDelta - - emul32 - - libvdpau-32bit - - - zlib-32bit - mesa-32bit - libX11-32bit - libXext-32bit - xorg-video-nvidia-current - - - /usr/lib32 - /usr/share/nvidia-current/32bit-ld.so.conf - - - System.Package - - - - - 2016-04-30 - 361.28 - Rebuild for new kernel - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-06 - 361.28 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perf - http://www.kernel.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - app:gui - kernel.tools - Performance analyser tool that makes full use of the Linux performance counter subsystem - perf is a new tool which is used to optimize, validate and measure applications, workloads or the full system through the Linux performance counter subsystem. - https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.gz - - libunwind-devel - audit-devel - xz-devel - gtk2-devel - unifdef - elfutils - diffutils - newt-devel - xmlto - asciidoc - pciutils-devel - numactl-devel - python-devel - slang-devel - glib2-devel - zlib-devel - perl - util-linux - libxslt - - - patches/linux/patch-4.4.8.xz - - kernel/tools/perf/pspec.xml - - - perf - - audit - xz - newt - elfutils - gtk2 - numactl - libunwind - python - slang - glib2 - zlib - perl - - - /etc - /usr/bin - /usr/lib - /usr/libexec - /usr/include - /usr/share/man/ - /usr/share/perf-core - - - - - 2016-05-02 - 4.4.8 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-03-06 - 4.4.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - alternatives - http://git.fedorahosted.org/git/?p=chkconfig.git;a=summary - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - x11.util - Alternative management system - Alternatif yönetim sistemi - alternatives creates, removes, maintains and displays information about the symbolic links comprising the alternatives system. Alternatives system determines the defaults when several programs fulfilling the same or similar functions to be installed on a single system at the same time. - alternatives, alternatives sisteminin parçası olan sembolik bağlantıları oluşturan, silen, yöneten ve bunlar hakkında bilgi gösteren araçtır. Alternatives sistemi, birbirine benzer ya da aynı işlevleri sunan programların aynı anda aynı sisteme kurulduğu zamanlarda öntanımlıları belirler. - https://git.fedorahosted.org/cgit/chkconfig.git/snapshot/chkconfig-chkconfig-1.3.63.tar.xz - - popt-devel - newt-devel - - x11/util/alternatives/pspec.xml - - - alternatives - - /etc - /usr/sbin - /usr/share/locale - /usr/share/man - /usr/share/doc - /var - - - - - 2016-05-02 - 1.3.63 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-03-05 - 1.3.63 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - - - 2016-05-02 - 1.3.1 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 1.3.1 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - bumblebee - http://bumblebee-project.org - - Idris Kalp - idriskalp@gmail.com - - GPLv3 - app:gui - kernel.default.drivers - a project aiming to support NVIDIA Optimus technology under Linux. - The Bumblebee Project proudly presents version 3.0 of Bumblebee, a project aiming to support NVIDIA Optimus technology under Linux. After two months of hard work this version has finally been considered stable enough for release. - http://www.bumblebee-project.org/bumblebee-3.2.1.tar.gz - - libbsd-devel - libX11-devel - glib2-devel - - - bb-hexadecimal.patch - nv-uvm-modeset.patch - - x11/misc/bumblebee/pspec.xml - - - bumblebee - - glib2 - module-bbswitch - libX11 - libbsd - primus - virtualgl - virtualgl-32bit - - - /etc - /usr/lib/tmpfiles.d/bumblebee.conf - /usr/bin - /usr/sbin - /lib/udev/rules.d - /usr/share/man - /usr/share/doc - - - System.Service - System.Package - - - tmpfiles.conf - - - - - 2016-05-02 - 3.2.1 - Rebuild - Idris Kalp - idriskalp@pgmail.com - - - 2016-04-08 - 3.2.1 - First Release - Idris Kalp - idriskalp@pgmail.com - - - - - - 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.17.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 - - - - - 2016-05-02 - 2.17 - Version bump - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-05-14 - 2.14 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - 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 - - - - - 2016-05-02 - 1.1.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-15 - 1.1.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - virtualgl - http://virtualgl.org - - Marcin Bojara - marcin@pisilinux.org - - LGPLv2.1 - library - app:console - x11.misc - A toolkit for displaying OpenGL applications to thin clients - OpenGL uygulamaları ince istemcilerde göstermek için bir kitaplık - Redirects 3D commands from an OpenGL application onto a server-side 3D graphics card. - Bir OpenGL uygulamadan gelen 3D komutlarını sunucu tarafındaki 3D grafik kartına yönlendirir. - https://sourceforge.net/projects/virtualgl/files/2.5/VirtualGL-2.5.tar.gz - - cmake - fltk-devel - libXv-devel - libXext-devel - mesa-devel - libX11-devel - mesa-glu-devel - libjpeg-turbo-devel - - x11/misc/virtualgl/pspec.xml - - - virtualgl - - fltk - libXv - libXext - mesa - libX11 - mesa-glu - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/lib/fakelib - /usr/share/doc - - - - virtualgl-32bit - 32 bit shared libraries of VirtualGL - emul32 - emul32 - - fltk-32bit - libX11-32bit - libXv-32bit - libXext-32bit - mesa-32bit - mesa-glu-32bit - libjpeg-turbo-32bit - - - fltk-32bit - libX11-32bit - libXv-32bit - libXext-32bit - mesa-32bit - mesa-glu-32bit - libjpeg-turbo-32bit - - - /usr/bin/glxspheres32 - /usr/lib32 - /usr/lib32/fakelib - - - - virtualgl-devel - Development files for virtualgl - - virtualgl - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2016-05-02 - 2.5 - Rebuild - Idris KALP - idriskalp@gmail.com - - - 2016-04-08 - 2.5 - Version bump - Idris KALP - idriskalp@gmail.com - - - - - - 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 - - - 0001-Makefile.am-Error-Fix.patch - - 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 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.3.4 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-11-30 - 1.3.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - primus - https://github.com/amonakov/primus - - Mathias Freire - mathiasfreire45@gmail.com - - ISC - library - x11.misc - Minimalistic and efficient OpenGL offloading for Bumblebee - Primus is a shared library that provides OpenGL and GLX APIs and implements low-overhead local-only client-side OpenGL offloading via GLX forking, similar to VirtualGL. - mirrors://sourceforge/pisilinux/source/primus-20160408.tar.gz - - libX11-devel - mesa-devel - - - primus-nvidia-libs.patch - - x11/misc/primus/pspec.xml - - - primus - - libX11 - mesa - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - primus-32bit - - libX11-32bit - mesa-32bit - - - libX11-32bit - mesa-32bit - - - /usr/lib32 - - - - - 2016-05-02 - 2016.05.02 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2016-04-09 - 2016.04.08 - First Release - Idris Kalp - idriskalp@gmail.com - - - - - - 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 - - - - - 2016-05-02 - 7.6 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-11-17 - 7.6 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - scim - http://www.scim-im.org + qca2-qt5 + http://download.kde.org/stable/qca-qt5 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.16.tar.gz - - scim-system-config - scim-system-global - + 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 - 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 - - - - - 2016-05-02 - 1.4.16 - Version bump - Burak Erturk - burakerturk@pisilinux.org - - - 2014-05-16 - 1.4.14 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-server - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - x11.server - X.Org X Server - Serveur X X.Org - X.Org X Server - X.Org X Sunucu - X.Org X Serwer - X server is the main application that allows a graphical interface. - X sunucu, grafiksel arayüz için gerekli ana uygulamadır. - X serwer to główna aplikacja, która umożliwia interfejs graficzny. - mirrors://xorg/individual/xserver/xorg-server-1.18.3.tar.bz2 - - font-util - libjpeg-turbo-devel - libdmx-devel - libdrm-devel - libgcrypt-devel - libpciaccess-devel - libX11-devel - libXaw-devel - libXext-devel - libXfixes-devel - libXfont-devel - libXi-devel - libxkbfile-devel - libXmu-devel - libXpm-devel - libXrender-devel - libXres-devel - libXt-devel - libXtst-devel - libXv-devel - mesa-devel - pixman-devel - xorg-app - nettle-devel - libepoxy-devel - xcb-util-devel - xcb-util-image-devel - xcb-util-wm-devel - xcb-util-keysyms-devel - xcb-util-renderutil-devel - util-macros - xtrans - eudev-devel - freetype-devel - libunwind-devel - libXau-devel - libICE-devel - libSM-devel - - x11/server/xorg-server/pspec.xml - - - xorg-server-common - Common files for X servers - X sunucuları için ortak dosyalar - data - - /etc/X11/fontpath.d - /etc/dbus-1 - /usr/lib/xorg/protocol.txt - /var/lib/xkb - /usr/share/doc - /usr/share/man/man1/Xserver.1 - - - - xorg-server - app:console - - libXau - eudev - libXdmcp - mesa - libdrm - pixman - libXfont - libunwind - libpciaccess - libxshmfence - libepoxy - - - /etc/X11/xorg.conf.d - /usr/bin/X - /usr/bin/Xorg - /usr/bin/cvt - /usr/bin/gtf - /usr/libexec - /usr/lib/xorg - /usr/share/X11/DriversDB - /usr/share/X11/pci - /usr/share/X11/xorg.conf.d - /usr/share/man/man1/Xorg.1 - /usr/share/man/man1/cvt.1 - /usr/share/man/man1/gtf.1 - /usr/share/man/man4/exa.4 - /usr/share/man/man4/modesetting.4 - /usr/share/man/man4/fbdevhw.4 - /usr/share/man/man5/xorg.conf.5 - /usr/share/man/man5/xorg.conf.d.5 - - - xorg-video-modesetting - glamor-egl - - - xorg-save-xkb-config.sh - DriversDB - fedora/10-quirks.conf - - - - xorg-server-xdmx - Distributed Multihead X Server - Dağıtık, çok başlı X sunucusu - app:console - - xorg-server-common - libX11 - libXau - libXdmcp - libXi - libXt - libXmu - libdmx - libXaw - pixman - libXext - libXfont - libXfixes - libXrender - libunwind - - - /usr/bin/*dmx* - /usr/share/man/man1/*dmx* - - - - xorg-server-xwayland - Run X clients under wayland - app:console - - libXau - libXdmcp - libunwind - mesa - pixman - libdrm - libXfont - libepoxy - libxshmfence - wayland-client - xorg-server-common - - - /usr/bin/Xwayland - - - - xorg-server-xephyr - Nested X Server - Başka bir X ekranında çalışabilen X sunucusu - app:console - - libX11 - libXau - libxcb - libXdmcp - xorg-server-common - mesa - xcb-util - libunwind - pixman - libXext - libXfont - libepoxy - xcb-util-wm - libxshmfence - xcb-util-image - xcb-util-keysyms - xcb-util-renderutil - - - /usr/bin/Xephyr - /usr/share/man/man1/Xephyr.1 - - - - xorg-server-xvfb - Virtual Framebuffer X Server - Sanal framebuffer X sunucusu - app:console - GPLv2 - - libXau - libXdmcp - xorg-server-common - libXfont - pixman - mesa - libunwind - - - /usr/bin/[Xx]vfb* - /usr/share/man/man1/Xvfb.1 - - - xvfb-run.sh - - - - xorg-server-xnest - A nested X server that runs as an X application - - libX11 - libXau - libXdmcp - libXfont - libXext - libunwind - pixman - - - /usr/bin/Xnest - /usr/share/man/man1/Xnest.1 - - - - xorg-server-devel - Headers and libraries for X server driver development - X sunucusu için sürücü geliştirmede kullanılan başlık ve kitaplık dosyaları - data - library - - xorg-server - libpciaccess-devel - pixman-devel - mesa-devel - - - /usr/include/xorg - /usr/lib/libxf86config.a - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2016-05-02 - 1.18.3 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-04-08 - 1.17.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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.4.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 - - - - - 2016-04-27 - 1.1.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-16 - 1.1.3 - First release - Marcin Bojara - marcin@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 - - libX11-32bit - libSM-32bit - - - libXt - libX11-32bit - libSM-32bit - libICE-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.1.5 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.1.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - libICE-32bit - libutil-linux-32bit - - - libICE-32bit - libutil-linux-32bit - libSM - - - /usr/lib32 - - - - - 2016-04-30 - 1.2.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.2.2 - 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 - - - - - 2016-04-30 - 1.1.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.4 - First release - Marcin Bojara - marcin@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 - - - libXinerama - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.1.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - mesa - http://www.mesa3d.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - app:console - x11.library - Mesa graphics libraries and utilities - Mesa grafik kitaplıkları ve yardımcı uygulamalar - Mesa biblioteki graficzne i narzędzia - Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. - Mesa, OpenGL belirtiminin (etkileşimli 3B grafiklerin gerçeklenmesi için bir sistem) açık kaynaklı bir uyarlamasıdır. - Mesa jest open-source'ową implementacją specyfikacji OpenGL do renderowania trójwymiarowej grafiki. - https://mesa.freedesktop.org/archive/11.2.1/mesa-11.2.1.tar.xz - - xorg-proto - openssl-devel - expat-devel - libdrm-devel - libXext-devel - wayland-devel - wayland-server - wayland-client - libvdpau-devel - libXfixes-devel - libtalloc-devel - libXdamage-devel - libomxil-bellagio-devel - libXxf86vm-devel - libXvMC-devel - libXv-devel - eudev-devel - python-mako - llvm - llvm-libs - llvm-clang-devel - libxshmfence-devel - - x11/library/mesa/pspec.xml - - - mesa - - elfutils - libdrm-amd - alternatives - libX11 - libgcc - libxcb - expat - libdrm - libXext - libXfixes - libXdamage - libXxf86vm - libXv - libXvMC - libdrm-intel - libdrm-radeon - libdrm-nouveau - wayland-client - wayland-server - libomxil-bellagio - libxshmfence - llvm - llvm-clang - llvm-libs - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - - - System.Package - - - drirc - - - - mesa-devel - Development files for mesa - mesa için geliştirme dosyaları - - eudev-devel - libX11-devel - libxcb-devel - libdrm-devel - libXext-devel - wayland-devel - libXfixes-devel - libXdamage-devel - libXxf86vm-devel - libxshmfence-devel - mesa - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - mesa-32bit - 32-bit shared libraries for mesa - mesa için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - elfutils-32bit - expat-32bit - libXt-devel - libXv-32bit - libX11-32bit - libcap-32bit - libdrm-32bit - libXext-32bit - libXvMC-32bit - eudev-32bit - openssl-32bit - wayland-32bit - libvdpau-32bit - libXfixes-32bit - libXdamage-32bit - libXxf86vm-32bit - libdrm-intel-32bit - libdrm-radeon-32bit - libdrm-amd-32bit - libdrm-nouveau-32bit - libxshmfence-32bit - llvm-32bit - - - elfutils-32bit - openssl-32bit - alternatives - libgcc - libxcb-32bit - expat-32bit - libX11-32bit - libdrm-32bit - libxcb-32bit - libXext-32bit - libXfixes-32bit - libXdamage-32bit - libXxf86vm-32bit - libXv-32bit - libXvMC-32bit - libdrm-intel-32bit - libxshmfence-32bit - libdrm-radeon-32bit - libdrm-amd-32bit - libdrm-nouveau-32bit - wayland-32bit - mesa - llvm-32bit - - - /usr/lib32 - - - System.Package - - - - - 2016-04-27 - 11.2.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-28 - 11.2.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - xcb-util-wm - 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-wm 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-wm modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2 - - util-macros - libxcb-devel - - x11/library/xcb-util-wm/pspec.xml - - - xcb-util-wm - - libxcb - - - /usr/lib - /usr/share/doc - - - - xcb-util-wm-devel - Development files for xcb-util-wm - xcb-util-wm için geliştirme dosyaları - - xcb-util-wm - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-wm-32bit - 32-bit shared libraries for xcb-util-wm - xcb-util-wm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxcb-32bit - - - xcb-util-wm - libxcb-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 0.4.1 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 0.4.1 - First release - Marcin Bojara - marcin@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 - - - - - 2016-04-30 - 1.0.7 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.0.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libxkbfile - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie xkbfile de X.Org - X.Org xkbfile library - X.Org xkbfile kitaplığı - X.Org xkbfile Bibliothek - Libxkbfile provides an interface to read and manipulate description files for XKB, the X11 keyboard configuration extension. - mirrors://xorg/individual/lib/libxkbfile-1.0.9.tar.bz2 - - util-macros - libX11-devel - xorg-proto - - x11/library/libxkbfile/pspec.xml - - - libxkbfile - - libX11 - - - /usr/lib - /usr/share/doc - - - - libxkbfile-devel - Development files for libxkbfile - libxkbfile için geliştirme dosyaları - - libxkbfile - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2016-04-30 - 1.0.9 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.0.9 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - libX11-32bit - - - libXrender - libX11-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 0.9.9 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 0.9.9 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - libX11-32bit - libXext-32bit - - - libXScrnSaver - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.2.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.2.2 - 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.13.0/glew-1.13.0.tgz - - mesa-glu-devel - - 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 - libX11-32bit - glew - - - /usr/lib32 - - - - - 2016-04-27 - 1.13.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-15 - 1.12.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libtxc-dxtn - http://dri.freedesktop.org/wiki/S3TC - - Marcin Bojara - marcin@pisilinux.org - - custom - BSD - x11.library - Texture compression library for Mesa - S2TC is a patent-free S3TC compatible implementation and provides texture compression to Mesa. - http://people.freedesktop.org/~cbrill/libtxc_dxtn/libtxc_dxtn-1.0.1.tar.bz2 - - mesa-devel - - x11/library/libtxc-dxtn/pspec.xml - - - libtxc-dxtn - - /usr/lib - /usr/share/doc - - - - libtxc-dxtn-devel - - libtxc-dxtn - - - /usr/include - - - - libtxc-dxtn-32bit - emul32 - - /usr/lib32 - - - - - 2016-06-20 - 1.0.1 - First release. - Marcin Bojara - marcin@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 - - - /usr/lib - /usr/share/doc - - - - libdmx-devel - Development files for libdmx - libdmx için geliştirme dosyaları - - libdmx - libXext-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man - - - - - 2016-04-30 - 1.1.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.3 - 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 - libX11-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 - - libX11-32bit - libXext-32bit - - - libXv - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.0.10 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.0.10 - First release - Marcin Bojara - marcin@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 - - - xcb-util-keysyms - libxcb-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 0.4.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-12-13 - 0.4.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libXdamage - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - 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 - - libXfixes-devel - util-macros - - x11/library/libXdamage/pspec.xml - - - libXdamage - - libXfixes - libX11 - - - /usr/lib - /usr/share/doc - - - - libXdamage-devel - Development files for libXdamage - libXdamage için geliştirme dosyaları - - 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 - - libX11-32bit - libXfixes-32bit - - - libXdamage - libXfixes-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.1.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.4 - 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 - - - - - 2016-04-30 - 1.0.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.0.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - 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 - https://www.freedesktop.org/software/libevdev/libevdev-1.4.6.tar.xz - x11/library/libevdev/pspec.xml - - - libevdev - - /usr/bin - /usr/lib - /usr/include - /usr/share - /usr/share/doc - - - - - 2016-05-02 - 1.4.6 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2015-01-25 - 1.3.2 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - 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 - mesa-32bit - libXi-32bit - libXxf86vm-32bit - libX11-32bit - libXrandr-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 3.0.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-04-27 - 3.0.0 - 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 - - - libXext - libX11-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.3.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-08-31 - 1.3.3 - First release - Marcin Bojara - marcin@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.3.1.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 - - libX11-32bit - mesa-32bit - - - /lib32 - /usr/lib32 - - - - - 2016-04-30 - 1.3.1 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-08 - 1.3.1 - First release - Stefan Gronewold(groni) - groni@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 - - - /usr/lib - /usr/share/doc - - - - libXdmcp-devel - Development files for libXdmcp - libXdmcp için geliştirme dosyaları - - xorg-proto - libXdmcp - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/*/*.xml - - - - libXdmcp-32bit - 32-bit shared libraries for libXdmcp - libXdmcp için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXdmcp - - - /usr/lib32 - - - - - 2016-04-30 - 1.1.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-06-06 - 1.1.2 - First release - Osman Erkan - osman.erkan@yandex.com - - - - - - 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.9.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 - - - - - 2016-04-27 - 1.0.9 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-16 - 1.0.8 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - wayland - http://wayland.freedesktop.org/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv2 - library - x11.library - Wayland Compositor Infrastructure - Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol. - https://wayland.freedesktop.org/releases/wayland-1.10.0.tar.xz - - libffi-devel - expat-devel - libxml2-devel - - x11/library/wayland/pspec.xml - - - wayland - - libxml2 - expat - - - /usr/bin - /usr/share/doc/ - /usr/share/aclocal - /usr/share/wayland - /usr/share/man - - - - wayland-client - Wayland client library - - libffi - wayland - - - /usr/lib/libwayland-client* - - - - wayland-cursor - Wayland cursor library - - wayland - wayland-client - - - /usr/lib/libwayland-cursor* - - - - wayland-server - Wayland server library - - libffi - wayland - - - /usr/lib/libwayland-server* - - - - wayland-devel - Development files for wayland - - expat-devel - wayland - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/pkgconfig - - - - wayland-32bit - 32-bit shared libraries for wayland - emul32 - emul32 - - libffi-32bit - expat-32bit - libxml2-32bit - - - wayland - expat-32bit - libffi-32bit - libxml2-32bit - - - /usr/lib32 - - - - - 2016-05-01 - 1.10.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-11-05 - 1.9.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - 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 - - - libXpm - libXext-32bit - libXt-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 3.5.11 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 3.5.11 - 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 - - - libX11 - libxcb-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.6.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 1.6.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libXtst - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xtst de X.Org - X.Org Xtst library - X.Org Xtst kitaplığı - X.Org Xtst Bibliothek - libXtst provides an X Window System client interface to the Record extension to the X protocol. The Record extension allows X clients to synthesise input events, which is useful for automated testing. - mirrors://xorg/individual/lib/libXtst-1.2.2.tar.bz2 - - libXext-devel - libXi-devel - util-macros - - x11/library/libXtst/pspec.xml - - - libXtst - - libXext - libX11 - - - /usr/lib - /usr/share/X11 - /usr/share/doc - - - - libXtst-32bit - 32-bit shared libraries for libXtst - libXtst için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libXi-32bit - libX11-32bit - - - libX11-32bit - libXext-32bit - libXtst - - - /usr/lib32 - - - - libXtst-devel - Development files for libXtst - libXtst için geliştirme dosyaları - - libXi-devel - libXext-devel - libXtst - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/doc/*/*.xml - /usr/share/man - - - - - 2016-04-30 - 1.2.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.2.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXfont - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xfont de X.Org - X.Org Xfont library - X.Org Xfont kitaplığı - X.Org Xfont Bibliothek - libXfont is the Xorg library that allows using various types of fonts. - mirrors://xorg/individual/lib/libXfont-1.5.1.tar.bz2 - - libfontenc-devel - util-macros - freetype-devel - xorg-proto - xtrans - zlib-devel - freetype-devel - - x11/library/libXfont/pspec.xml - - - libXfont - - libfontenc - zlib - freetype - - - /usr/lib - /usr/share/doc - - - - libXfont-devel - Development files for libXfont - libXfont için geliştirme dosyaları - - libXfont - libfontenc-devel - freetype-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2016-04-30 - 1.5.1 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.5.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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. - https://www.freedesktop.org/software/vaapi/releases/libva/libva-1.7.0.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 - - - libva - libdrm-32bit - wayland-32bit - libXext-32bit - libXfixes-32bit - libX11-32bit - mesa-32bit - - - /usr/lib32 - - - - - 2016-04-27 - 1.7.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2015-05-10 - 1.5.1 - First release - Burak Ertürk - burakerturk@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 - - libX11-32bit - libXext-32bit - libXrender-32bit - - - libXrandr - libX11-32bit - libXext-32bit - libXrender-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.5.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.5.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - /usr/lib32 - - - - - 2016-04-30 - 1.0.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-11-13 - 1.0.3 - First release - Stefan Gronewold (groni) - groni@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 - - - libXaw - libXext-32bit - libXmu-32bit - libXpm-32bit - libXt-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.0.13 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.0.13 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - libXft - freetype-32bit - fontconfig-32bit - libXrender-32bit - zlib-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 2.3.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-08-31 - 2.3.2 - 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.34.0.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 - - pixman - - - /usr/lib32 - - - - - 2016-05-02 - 0.34.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2014-08-31 - 0.32.6 - 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 - - - libXmu - libXt-32bit - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.1.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libdrm - http://dri.freedesktop.org/libdrm/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Userspace interface to kernel DRM services - Çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz - libdrm is a library providing the userspace interface to kernel DRM services. - libdrm, çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz sağlayan bir kitaplıktır. - http://dri.freedesktop.org/libdrm/libdrm-2.4.67.tar.bz2 - - libpciaccess-devel - util-macros - - x11/library/libdrm/pspec.xml - - - libdrm - - libpciaccess - - - /etc - /usr/lib/libdrm.* - /lib/udev/rules.d - /usr/share/doc - /usr/share/man - - - 91-drm-modeset.rules - - - - libdrm-intel - Userspace interface to kernel DRM services for intel - Çekirdekteki intel DRM servisleri için kullanıcı düzeyi arayüz - - libdrm - libpciaccess - - - /usr/lib/libdrm_intel.* - - - - libdrm-nouveau - Userspace interface to kernel DRM services for nouveau - Çekirdekteki nouveau DRM servisleri için kullanıcı düzeyi arayüz - - libdrm - - - /usr/lib/libdrm_nouveau.* - - - - libdrm-radeon - Userspace interface to kernel DRM services for radeon - Çekirdekteki radeon DRM servisleri için kullanıcı düzeyi arayüz - - libdrm - - - /usr/lib/libdrm_radeon.* - - - - libdrm-amd - Userspace interface to kernel DRM services for amdgpu - - libdrm - - - /usr/lib/libdrm_amdgpu.* - - - - libkms - Userspace library for kernel mode setting - Çekirdekteki ekran modu değiştirme servisleri için kullanıcı düzeyi arayüz - - libdrm - - - /usr/lib/libkms.* - - - - libdrm-devel - Development files for libdrm - libdrm için geliştirme dosyaları - - libdrm - libdrm-intel - libdrm-nouveau - libdrm-radeon - libdrm-amd - libkms - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libdrm-32bit - 32-bit shared libraries for libdrm - libdrm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libpciaccess-32bit - - - libdrm - libpciaccess-32bit - - - /usr/lib32/libdrm.* - - - - libdrm-intel-32bit - 32-bit shared libraries for libdrm-intel - libdrm-intel için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libdrm-intel - libdrm-32bit - libpciaccess-32bit - - - /usr/lib32/libdrm_intel.* - - - - libdrm-nouveau-32bit - 32-bit shared libraries for libdrm-nouveau - libdrm-nouveau için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libdrm-nouveau - libdrm-32bit - - - /usr/lib32/libdrm_nouveau.* - - - - libdrm-radeon-32bit - 32-bit shared libraries for libdrm-radeon - libdrm-radeon için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libdrm-radeon - libdrm-32bit - - - /usr/lib32/libdrm_radeon.* - - - - libdrm-amd-32bit - 32-bit shared libraries for libdrm-amdgpu - emul32 - emul32 - - libdrm-amd - libdrm-32bit - - - /usr/lib32/libdrm_amdgpu.* - - - - libkms-32bit - 32-bit shared libraries for libkms - libkms için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libkms - libdrm-32bit - - - /usr/lib32/libkms.* - - - - - 2016-04-30 - 2.4.67 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-27 - 2.4.67 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-04-30 - 0.9.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 0.9.3 - First release - Marcin Bojara - marcin@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 - - - mesa-glu - mesa-32bit - libgcc - - - /usr/lib32 - - - - - 2016-04-30 - 9.0.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-01-22 - 9.0.0 - First release - Ergün Salman - Poyraz76@pisilinux.org - - - - - - libXcursor - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - 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 - - util-macros - libX11-devel - xorg-proto - libXfixes-devel - libXrender-devel - - x11/library/libXcursor/pspec.xml - - - libXcursor - - libX11 - libXfixes - libXrender - - - /usr/lib - /usr/share/doc - - - - libXcursor-devel - Development files for libXcursor - libXcursor için geliştirme dosyaları - - libXcursor - libXfixes-devel - libX11-devel - libXrender-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXcursor-32bit - 32-bit shared libraries for libXcursor - libXcursor için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - libXfixes-32bit - libXrender-32bit - - - libXcursor - libX11-32bit - libXfixes-32bit - libXrender-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.1.14 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.14 - First release - Marcin Bojara - marcin@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 - - libpciaccess - - - /usr/lib32 - - - - - 2016-04-30 - 0.13.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-05-05 - 0.13.4 - First release - Marcin Bojara - marcin@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 - - - - - 2016-04-30 - 1.1.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.1.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - libICE - - - /usr/lib32 - - - - - 2016-04-30 - 1.0.9 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-08-31 - 1.0.9 - First release - Marcin Bojara - marcin@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 - - 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 - xcb-util-image-32bit - xcb-util-renderutil-32bit - - - libxcb-32bit - xcb-util-image-32bit - xcb-util-renderutil-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 0.1.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-26 - 0.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - xcb-util - libxcb-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 0.4.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-12-13 - 0.4.0 - First release - Kamil Atlı - suvari@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 - - - libXfixes - libX11-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 5.0.1 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 5.0.1 - First release - Marcin Bojara - marcin@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 - - - - - 2016-04-30 - 0.9.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-04-07 - 0.9.3 - 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.6.1.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 - - - libxkbcommon - libxcb-32bit - - - /usr/lib32 - - - - - 2016-04-27 - 0.6.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2015-03-04 - 0.5.0 - First release - Stefan Gronewold(groni) - groni@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 - - - libxcb - libXau-32bit - libXdmcp-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.11.1 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-08 - 1.11.1 - First release - Alihan Öztürk - alihan@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 - - /usr/lib32 - - - - - 2016-04-30 - 1.0.8 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-06-01 - 1.0.8 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - 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 - - - xcb-util-32bit - libxcb-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 0.4.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-12-13 - 0.4.0 - First release - Kamil Atlı - suvari@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 - ghostscript-devel - - x11/library/libexplain/pspec.xml - - - libexplain - - acl - libcap - ghostscript - - - /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ı - - acl-devel - libcap-devel - libexplain - - - /usr/lib/pkgconfig - /usr/include - - - - - 2016-04-30 - 1.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-01-09 - 1.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - Xaw3d - http://freshmeat.net/projects/xaw3d/ - - PisiLinux Community - admins@pisilinux.org - - X11 - library - x11.library - Replacement of the Xaw widget set that comes with X - XPM imajlarına 3D görüntüsü ve desteği ekleyen bir kütüphanedir - Xaw3d est globalement le remplaçant de la boîte à outils Athena. Il ajoute une apparence 3D ainsi que le support des images XMP. - Xaw3d is a general-purpose replacement for the Athena toolkit that adds a 3D appearance and support for XPM images. - Xaw3d, Athena araçlarının yerini alması amaçlanarak hazırlanmıştır. Ek olarak 3B görünüş sağlar ve XPM resimlerini destekler. - http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-1.6.2.tar.gz - - util-macros - libXt-devel - libXmu-devel - libXpm-devel - - - Xaw3d-1.6.1-3Dlabel.patch - Xaw3d-1.6.1-fontset.patch - Xaw3d-1.6.1-hsbar.patch - - x11/library/Xaw3d/pspec.xml - - - Xaw3d - - libXt - libX11 - libXmu - libXpm - libXext - - - /usr/lib - /usr/share/doc - - - - Xaw3d-devel - Development files for Xaw3d - Xaw3d için geliştirme dosyaları - - Xaw3d - libXt-devel - libX11-devel - libXmu-devel - libXext-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-04-30 - 1.6.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-21 - 1.6.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXres - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xres de X.Org - X.Org Xres library - X.Org Xres kitaplığı - X.Org Xres Bibliothek - X-Resource is an extension that allows a client to query the X server about its usage of various resources. - mirrors://xorg/individual/lib/libXres-1.0.7.tar.bz2 - - libX11-devel - libXext-devel - util-macros - - x11/library/libXres/pspec.xml - - - libXres - - libX11 - libXext - - - /usr/lib - /usr/share/doc - - - - libXres-devel - Development files for libXres - libXres için geliştirme dosyaları - - libXres - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/share/man - - - - - 2016-04-30 - 1.0.7 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.0.7 - First release - Marcin Bojara - marcin@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 - - libxcb-32bit - - - libxcb-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 0.3.9 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-09-01 - 0.3.9 - First release - Marcin Bojara - marcin@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 - - libX11-32bit - libXext-32bit - - - libxshmfence - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 1.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-05-05 - 1.2 - First release - Marcin Bojara - marcin@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 - - - libXcomposite - libX11-32bit - - - /usr/lib32 - - - - - 2016-04-30 - 0.4.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 0.4.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXi - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - 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.6.tar.bz2 - - libXext-devel - libXfixes-devel - util-macros - - x11/library/libXi/pspec.xml - - - libXi - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXi-devel - Development files for libXi - libXi için geliştirme dosyaları - - libXi - 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 - - libXext-32bit - libX11-32bit - - - libXi - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2016-04-27 - 1.7.6 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2014-08-31 - 1.7.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libvdpau - http://freedesktop.org/wiki/Software/VDPAU - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Wrapper library for the Video Decode and Presentation API - Video kodu çözme ve sunma API'si için ara kitaplık - VDPAU is the Video Decode and Presentation API for UNIX. It provides an interface to video decode acceleration and presentation hardware present in modern GPUs. - VDPAU (Video Decode and Presentation API for UNIX), modern grafik işlemcilerde yer alan video kod çözümü hızlandırma ve sunma donanımına bir arayüz sağlar. - https://people.freedesktop.org/~aplattner/vdpau/libvdpau-1.1.1.tar.gz - - libXext-devel - - x11/library/libvdpau/pspec.xml - - - libvdpau - - libXext - - - /etc - /usr/lib - /usr/share/doc - - - - libvdpau-devel - Development files for libvdpau - libvdpau için geliştirme dosyaları - - libvdpau - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libvdpau-32bit - 32-bit shared libraries for libvdpau - libvdpau için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libvdpau - libXext-32bit - - - /usr/lib32 - - - - - 2016-04-27 - 1.1.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2015-11-20 - 1.1 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - xorg-input-libinput - http://www.x.org - - PisiLinux Community - admin@pisilinux.org - - MIT - driver - x11.driver - Generic input driver for the X.Org server based on libinput - Xorg sunucusu için genel giriş sürücüsü. - Generic input driver for the X.Org server based on libinput - xorg-input-libinput, libinputa dayalı Xorg sunucusu için genel giriş sürücüsüdür. - mirrors://xorg/individual/driver/xf86-input-libinput-0.19.0.tar.bz2 - - libX11-devel - eudev-devel - xorg-server-devel - libinput-devel - util-macros - - x11/driver/xorg-input-libinput/pspec.xml - - - xorg-input-libinput - - libinput - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - /usr/share/X11/xorg.conf.d - - - - xorg-input-libinput-devel - Development files for xorg-input-libinput - - xorg-input-libinput - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-05-02 - 0.19.0 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 0.18.0 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 2.3.8 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 2.3.8 - First release - Burak Ertürk - burakerturk@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.10.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 - /usr/share/X11/xorg.conf.d/10-evdev.conf - - - - 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 - - - - - 2016-05-02 - 2.10.2 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 2.9.2 - First release - Burak Ertürk - burakerturk@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.1.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 - - - - - 2016-05-02 - 6.10.1 - Verson bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 6.10.0 - First release - Burak Ertürk - burakerturk@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.3.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 - - - - - 2016-05-02 - 1.8.3 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.8.2 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 0.3.7 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.3.7 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.2.5 - Release bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 1.2.5 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 0.4.4 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.4.4 - First release - Burak Ertürk - burakerturk@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 - util-macros - 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 - - - - - 2016-05-02 - 1.2.8 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.2.8 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.7.8 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 1.7.8 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.3.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.3.6 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.2.5 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.2.5 - First release - Burak Ertürk - burakerturk@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.4.0.tar.bz2 - - libdrm-devel - libXext-devel - libXv-devel - libXvMC-devel - xorg-server-devel - - 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 - - - - - 2016-05-02 - 0.4.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.3.3 - First release - Burak Ertürk - burakerturk@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.12.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 - - - - - 2016-05-02 - 1.0.12 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.0.12 - First release - Burak Ertürk - burakerturk@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.4.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-mga/pspec.xml - - - xorg-video-mga - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2016-05-02 - 1.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.6.3 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 0.7.4 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.7.4 - First release - Burak Ertürk - burakerturk@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. - http://anduin.linuxfromscratch.org/BLFS/xf86-video-intel/xf86-video-intel-0340718.tar.xz - - 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 - libXfont-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 - - - - - 2016-05-02 - 0340718 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 2.99.917 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.4.1 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.4.1 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.4.1 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.4.1 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 13.1.0 - Release bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 13.1.0 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.3.7 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.3.7 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.2.9 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 1.2.9 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 0.7.8 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.7.8 - First release - Burak Ertürk - burakerturk@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.7.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-s3virge/pspec.xml - - - xorg-video-s3virge - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2016-05-02 - 1.10.7 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.10.6 - First release - Burak Ertürk - burakerturk@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.7.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 - - - - - 2016-05-02 - 7.7.0 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 7.7.0 - First release - Burak Ertürk - burakerturk@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.5.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-i740/pspec.xml - - - xorg-video-i740 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2016-05-02 - 1.3.5 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.3.4 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.9.1 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.9.1 - First release - Burak Ertürk - burakerturk@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 - - util-macros - 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 - - - - - 2016-05-02 - 0.9.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.9.6 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 6.9.5 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 6.9.5 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.6.2 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.6.2 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.4.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 1.4.6 - First release - Burak Ertürk - burakerturk@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.4.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 - - - - - 2016-05-02 - 2.3.4 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 2.3.3 - First release - Burak Ertürk - burakerturk@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.6.tar.bz2 - - xorg-server-devel - - 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 - - - - - 2016-05-02 - 4.2.6 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 4.2.5 - First release - Burak Ertürk - burakerturk@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.1.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 - - - - - 2016-05-02 - 1.8.1 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.8.0 - First release - Burak Ertürk - burakerturk@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.7.0.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 - - - - - 2016-05-02 - 1.7.0 - Version Bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.5.1 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 0.2.0 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-05-15 - 0.2.0 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-05-02 - 1.5.0 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.5.0 - First release - Burak Ertürk - burakerturk@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.1.0.tar.bz2 - - xorg-server-devel - - 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.1.0 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 13.0.0 - First release - Burak Ertürk - burakerturk@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.33.0.tar.bz2 - - libXi-devel - libXrandr-devel - xorg-server-devel - libXinerama-devel - eudev-devel - libgudev-devel + qt5-base-devel + nss-devel doxygen - util-macros + cmake - x11/driver/xorg-input-wacom/pspec.xml + util/crypt/qca2-qt5/pspec.xml - xorg-input-wacom + qca2-qt5 - libX11 - libXi - libXrandr - libXinerama - xorg-server - eudev + qt5-base + nss + libgcc - /lib/udev /usr/bin - /usr/lib/xorg - /usr/share/X11 + /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 + + + + + 2016-06-15 + 2.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-06 + 2.1.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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_23_RTM/src/nss-3.23.tar.gz + + nss.pc.in + nss-config.in + generate-pc-config.sh + + + zlib-devel + sqlite-devel + nspr-devel + + + add_spi+cacert_ca_certs.patch + fedora/add-relro-linker-option.patch + + util/crypt/nss/pspec.xml + + + nss + + zlib + sqlite + nspr + + + /usr/lib + /usr/bin + /etc - 70-wacom.rules + ld.so.conf + nssdb/cert8.db + nssdb/key3.db + nssdb/secmod.db - xorg-input-wacom-devel - Development files for xorg-input-wacom - xorg-input-wacom için geliştirme dosyaları + nss-devel + Development files for nss + nss için geliştirme dosyaları - xorg-input-wacom + nspr-devel + nss - /usr/bin/isdv4-serial-debugger + /usr/bin/nss-config /usr/include /usr/lib/pkgconfig + /usr/lib/nss/*.a - 2016-05-16 - 0.33.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 2016-06-15 + 3.23 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2016-05-02 - 0.32.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-05-08 - 0.29.0 - First release - Ergün Salman - Poyraz76@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 - - - - - 2016-05-02 - 1.2.2 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.2.2 - First release - Burak Ertürk - burakerturk@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 - - - - - 2016-05-02 - 1.5.3 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.5.3 - First release - Burak Ertürk - burakerturk@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.8.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-sis/pspec.xml - - - xorg-video-sis - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2016-05-02 - 0.10.8 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.10.7 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - 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-324.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 - - - - - 2016-05-02 - 324 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-13 - 304 - First release - Alihan Öztürk - alihan@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 - intltool - harfbuzz-devel - graphite2-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 - - - - - 2016-05-02 - 0.28.2 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-16 - 0.28.2 - 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 - - - - - 2016-06-09 - 1.5.6 + 2016-06-08 + 3.22 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-25 - 1.5.6 + 2016-02-14 + 3.22 First release Osman Erkan osman.erkan@pisilinux.org @@ -28557,69 +9498,98 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - mdbtools - https://github.com/brianb/mdbtools + gnupg + http://www.gnupg.org/ PisiLinux Community admins@pisilinux.org - GPLv2 - LGPLv2 - library + GPLv3+ 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 + util.crypt + The GNU Privacy Guard, a PGP replacement + GNU Gizlilik Koruması + GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories. + GnuPG verilerinizin ve iletişimlerinizin şifrelenmesi ve imzalanmmasını sağlar, her tür genel anahtar dizinleri için modullere erişiminde olduğu gibi çok yönlü anahtar yönetim sistemi avantajı vardır. + ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.1.7.tar.bz2 - unixODBC-devel - glib2-devel + openldap-client + pinentry + npth-devel + libassuan-devel + libksba-devel + zlib-devel + bzip2 + texinfo + gnutls-devel readline-devel + libgcrypt-devel + libgpg-error-devel + libusb-compat-devel - office/misc/mdbtools/pspec.xml + util/crypt/gnupg/pspec.xml - mdbtools + gnupg - unixODBC - glib2 + openldap-client + npth + libassuan + pinentry + libksba + zlib + bzip2 + gnutls readline + libgcrypt + libgpg-error + libusb-compat /usr/bin - /usr/lib - /usr/share/man + /usr/sbin + /usr/libexec /usr/share/doc + /usr/share/doc/html + /usr/share/gnupg + /usr/share/info + /usr/share/locale + /usr/share/man - mdbtools-gui + dirmngr + + dirmngr + + + System.Package + - mdbtools-devel - Development files for mdbtools - mdbtools için geliştirme dosyaları + gnupg-docs + Documentation files for GnuPG + GnuPG paketine ait API dokümantasyonu - mdbtools + gnupg - /usr/include - /usr/lib/pkgconfig + /usr/share/doc/gnupg/html + /usr/share/gnupg/help.* + /usr/share/doc/gnupg/faq.html - 2016-06-09 - 0.7.1 + 2016-06-08 + 2.1.7 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-04-20 - 0.7.1 + 2015-08-21 + 2.1.7 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -28628,277 +9598,129 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - chmlib - http://www.jedrea.com/chmlib/ + libtasn1 + http://www.gnutls.org/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 + GPLv2 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 + 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 - chmlib + libtasn1 + /usr/share /usr/lib - /usr/bin - /usr/share/doc - - - - chmlib-devel - Development files for chmlib - chmlib için geliştirme dosyaları - - chmlib - - - /usr/include - - - - - 2016-06-09 - 0.40 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-20 - 0.40 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 0.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-26 - 0.11 - First release - Yusuf Aydemir - yusuf.aydemir@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 /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 + + libtasn1 + + + /usr/lib32/ - - 2016-06-09 - 7.3 + + 2016-06-08 + 4.5 Release Bump Pisi Linux Community admin@pisilinux.org + + 2016-05-27 + 4.5 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + - 2016-03-14 - 7.3 + 2015-07-13 + 4.5 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - ebook-tools - http://sourceforge.net/projects/ebook-tools/ + dev86 + http://homepage.ntlworld.com/robert.debath/ PisiLinux Community admins@pisilinux.org - MIT - library + GPLv2 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 - + 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 - ebook-tools-0.2.1-libzip_pkgconfig.patch + 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 - office/misc/ebook-tools/pspec.xml + programming/tool/dev86/pspec.xml - ebook-tools - - libzip - libxml2 - + dev86 /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 + /usr/share/man 2016-06-09 - 0.2.2 + 0.16.19 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-01-22 - 0.2.2 - First release - Stefan Gronewold(groni) - groni@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/ - - - - - 2016-06-09 - 1.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-17 - 1.2.4 + 2014-02-17 + 0.16.19 First release Serdar Soytetir kaptan@pisilinux.org @@ -28907,433 +9729,314 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - scribus - http://www.scribus.net/ + cppunit + http://www.freedesktop.org/wiki/Software/cppunit PisiLinux Community admins@pisilinux.org - GPLv2 - app:gui - office.misc - Desktop Publishing (DTP) and Layout program - Masaüstü yayıncılık uygulaması - Scribus is an opensource desktop publishing application with features like CMYK colorspace and PDF output. - Scribus, açık kaynak kodlu bir DTP (masaüstü yayıncılık) programıdır. Renk ayrımından PDF dönüşümlerine, PDF form elementleri yaratmadan Preflight Check gibi işlemlere kadar, profesyonel bir DTP paketinde bulabileceğiniz her fonksiyona sahiptir. - scribusicon - http://sourceforge.net/projects/scribus/files/scribus-devel/1.5.2/scribus-1.5.2.tar.xz - - cmake - cups-devel - desktop-file-utils - lcms2-devel - libart_lgpl-devel - libjpeg-turbo-devel - libpng-devel - tiff-devel - libxml2-devel - openssl-devel - python-devel - ghostscript-devel - gnutls-devel - poppler-devel - qt5-base-devel - qt5-webkit-devel - qt5-location-devel - qt5-linguist - zlib-devel - freetype-devel - gnutls-devel - cairo-devel - hunspell-devel - boost-devel - libwpg-devel - podofo-devel - libvisio-devel - libcdr-devel - GraphicsMagick-devel - libpagemaker-devel - - - scribus-standard-font-paths.patch - PisiLinux-default-font.patch - PisiLinux-correctly_link_to_libxml2.patch - - office/misc/scribus/pspec.xml - - - scribus - - cups - tiff - zlib - cairo - lcms2 - libgcc - podofo - python - libxml2 - poppler - freetype - hunspell - qt5-base - fontconfig - librevenge - qt5-webkit - libjpeg-turbo - qt5-declarative - libpagemaker - libcdr - GraphicsMagick - libvisio - libmspub - - - /usr/bin - /usr/lib - /usr/share - - - - scribus-docs - Documentation files for scribus - scribus için belgelendirme dosyaları - - /usr/share/doc/scribus - - - - - 2016-06-10 - 1.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-18 - 1.5.2 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - librevenge - http://dev-www.libreoffice.org/src/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.0 + LGPLv2.1 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.4.tar.bz2 + 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 - boost-devel - cppunit-devel - zlib-devel - doxygen + grep libtool - office/misc/librevenge/pspec.xml + programming/tool/cppunit/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 - - - - - 2016-06-11 - 0.0.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-06 - 0.0.1 - First release - PisiLinux Community - 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 - + cppunit /usr/lib /usr/share/doc - /usr/bin - /usr/share/gsoap - gsoap-devel - Development files for gsoap - gsoap için geliştirme dosyaları + cppunit-devel + Contains the headers and other files necessary for developing programs that use cppunit - gsoap - zlib-devel - openssl-devel + cppunit + libgcc + /usr/bin /usr/include + /usr/share/aclocal /usr/lib/pkgconfig - - - - - 2016-06-09 - 2.8.22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-12 - 2.8.22 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.4.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-04 - 0.4.14 - First release - Stefan Gronewold (groni) - groni@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 - gettext-devel - 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-06-09 - 1.16 + 1.13.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-01 - 1.16 + 2014-01-21 + 1.13.2 First release - Stefan Gronewold + Stefan Gronewold(groni) groni@pisilinux.org - qpdf - http://qpdf.sourceforge.net + ctags + http://ctags.sourceforge.net - Marcin Bojara - marcin@pisilinux.org + PisiLinux Community + admins@pisilinux.org - Artistic-2 + GPLv2 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-6.0.0.tar.gz - - libpcre-devel - zlib-devel - - office/misc/qpdf/pspec.xml + 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 - qpdf + ctags + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 5.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-21 + 5.8 + First release + Stefan Gronewold(groni) + groni@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/lib - /usr/share/man - /usr/share/doc /usr/bin + /usr/lib + /usr/share/swig + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 3.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-22 + 3.0.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libsignon-glib + https://gitlab.com/accounts-sso/libsignon-glib + + 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://sourceforge.net/projects/pisilinux/files/source/libsignon-glib-1.13.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 - qpdf-devel - qpdf için geliştirme dosyaları + 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. - libpcre-devel - zlib-devel - qpdf + 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 + + 2016-06-09 - 6.0.0 + 1.13 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-23 - 6.0.0 + 2016-03-29 + 1.13 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libgudev + https://wiki.gnome.org/Projects/libgudev + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPL2 + library + programming.library + GObject bindings for Udev (Eudev) + GObject bindings for Udev (Eudev) + eudev + https://download.gnome.org/sources/libgudev/230/libgudev-230.tar.xz + + gobject-introspection-devel + gtk-doc + libxslt + docbook-xsl + eudev-devel + glib2-devel + + programming/library/libgudev/pspec.xml + + + libgudev + + eudev + glib2 + + + /usr/lib + /usr/share/gir-1.0 + /usr/share/gtk-doc + + + + libgudev-devel + Development files for libgudev + system.devel + + libgudev + eudev-devel + glib2-devel + + + /usr/lib/pkgconfig + /usr/include/gudev-1.0 + + + + + 2016-06-09 + 230 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-24 + 230 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -29342,104 +10045,93 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - doxygen - http://www.doxygen.org/ + yaml-cpp + https://github.com/jbeder/yaml-cpp - PisiLinux Community - admins@pisilinux.org + Ergün Salman + Poyraz76@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.11.src.tar.gz + 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 - office/misc/doxygen/pspec.xml + programming/library/yaml-cpp/pspec.xml - doxygen - - libgcc - + yaml-cpp - /usr/share/doc - /usr/bin/doxygen - /usr/share/man/man1/doxygen.1 + /usr/lib/ + /usr/include/yaml-cpp/* + /usr/lib/pkgconfig/ + /usr/share/doc/ 2016-06-09 - 1.8.11 + 0.5.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-24 - 1.8.11 + 2015-09-01 + 0.5.2 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Ergün Salman + Poyraz76@pisilinux.org - recode - http://www.gnu.org/software/recode/ + libnih + https://launchpad.net/libnih - PisiLinux Community - admins@pisilinux.org + Aydın Demirel + aydin.demirel@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 + 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 - gettext - texinfo + dbus-devel + expat-devel - - 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 + programming/library/libnih/pspec.xml - recode + libnih + + dbus + expat + - /usr/lib /usr/bin - /usr/share/doc - /usr/share/info /usr/share/man - /usr/share/locale + /usr/share/aclocal + /usr/lib/* - recode-devel - Development files for recode - recode için geliştirme dosyaları + libnih-devel - recode + libnih + dbus-devel + expat-devel /usr/include @@ -29448,61 +10140,739 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 3.6 + 1.0.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-01 - 3.6 + 2014-06-27 + 1.0.3 First release - Stefan Gronewold - groni@pisilinux.org + Aydın Demirel + aydin.demirel@pisilinux.org - texi2html - http://savannah.nongnu.org/projects/texi2html/ + 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 + + + + + 2016-06-09 + 0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-03 + 0.2 + 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.8.2.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 + + + + + 2016-06-09 + 0.8.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 0.8.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + 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. + https://sourceforge.net/projects/pisilinux/files/source/libaccounts-glib-1.21.tar.xz + + 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 + /usr/share/gir-1.0/Accounts-1.0.gir + /usr/share/vala + + + + libaccounts-glib-devel + Development files for libaccounts-glib + + libaccounts-glib + glib2-devel + libxml2-devel + sqlite-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libaccounts-glib-docs + Help files and API documents for libaccounts-glib + data:doc + + libaccounts-glib + + + /usr/share/gtk-doc + /usr/share/doc + + + + + 2016-06-11 + 1.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 1.21 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 0.3.109 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-19 + 0.3.109 + First release + Alihan Öztürk + alihan@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://sourceforge.net/projects/pisilinux/files/source/signon-8.58.tar.xz + + 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 + + + + + 2016-06-10 + 8.58 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-14 + 8.58 + First release + Alihan Öztürk + alihan@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://sourceforge.net/projects/pisilinux/files/source/libaccounts-qt-1.14.tar.xz + + doxygen + qt5-base-devel + qt5-assistant-devel + glib2-devel + libaccounts-glib-devel + + programming/library/libaccounts-qt5/pspec.xml + + + libaccounts-qt5 + + glib2 + libgcc + qt5-base + libaccounts-glib + + + /usr/lib/libaccounts-qt5* + /usr/share/doc/libaccounts-qt5 + /usr/lib/cmake + + + + libaccounts-qt5-devel + Development files for libaccounts-qt5 + + libaccounts-qt5 + qt5-base-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + 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 + + + + + 2016-06-11 + 1.14 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-20 + 1.13 + Rebuild for qt5 + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-30 + 1.14 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + valgrind + http://www.valgrind.org 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 + 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.11.0.tar.bz2 + + glibc-devel + boost-devel + gdb-devel + + + fix_rlimit.patch + + programming/profiler/valgrind/pspec.xml - texi2html + valgrind + + glibc + perl + /usr/bin - /usr/share/info - /usr/share/doc/texi2html - /usr/share/man/man1 - /usr/share/texi2html - /usr/share/texinfo - /usr/share/locale + /usr/include/valgrind + /usr/lib + /usr/share/doc/valgrind + /usr/share/man 2016-06-09 - 5.0 + 3.11.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-20 - 5.0 + 2016-03-29 + 3.11.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + php + http://www.php.net + + Fatih Turgel + turgelfatih@gmail.com + + PHP + library + programming.language.php + PHP5 is an HTML-embedded scripting language. The goal of the language is to allow web developers to write dynamically generated pages quickly + Dinamik HTML sayfaları oluşturmak için kullanılan bir programlama dili + PHP5 is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly. + PHP5, dinamik HTML sayfaları oluşturmak için kullanılan bir programlama dilidir. Dil yapısının önemli bir kısmı C, Java ve Perl'den alınmıştır. Bu dilin amacı, web geliştiricilerinin kısa zamanda dinamik sayfalar oluşturmasına imkan vermektir. + PHP5 es un languaje interpretado que puede estar embebido en HTML. Muchas partes de su sintaxis fueron prestados de C, Java y Perl con algunas facilidades agregados únicas de PHP. El lenguaje permite a desarrolladores web escribir de manera sencilla páginas con contenido dinámico. + http://us2.php.net/distributions/php-5.6.20.tar.bz2 + + gd-devel + harfbuzz-devel + apr-devel + apr-util-devel + apache + postfix + libxslt-devel + db-devel + mariadb-lib + libmcrypt-devel + mit-kerberos + libc-client + postgresql-server + libjpeg-turbo-devel + zlib-devel + curl-devel + gdbm-devel + libpng-devel + freetype-devel + openssl-devel + + + int_overflow_in_mt_rand.patch + stack_buffer_overflow_in_imagepstext.patch + denial_of_service_in_getArchiveComment.patch + php-imap-myrights.diff + db6.patch + debian/052-phpinfo_no_configure.patch + + programming/php/php/pspec.xml + + + php-cli + + php-common + gd + libxslt + mariadb-lib + libmcrypt + mit-kerberos + postgresql-lib + openldap-client + libjpeg-turbo + + + /etc/php/cli + /usr/bin + /usr/share/man + + + go-pear + + + + php-common + Common config files for PHP + PHP için genel yapılandırma dosyaları + + mit-kerberos + db + + + /usr/lib/php/modules + /usr/share/php5 + /etc/php/ext + + + + php-devel + Development files for PHP + + php-common + + + /usr/bin/php-config + /usr/bin/phpize + /usr/include + /usr/lib/php/build + /usr/share/man/man1/php-config* + /usr/share/man/man1/phpize* + + + + mod_php + server.web + + apache + mariadb-lib + postgresql-lib + gd + libxslt + mit-kerberos + openldap-client + cyrus-sasl + harfbuzz + php-common + libmcrypt + libjpeg-turbo + + + /usr/lib/apache2/modules/libphp5.so + /etc/apache2 + /etc/php/apache2 + + + 70_mod_php5.conf + + + + php-zip + Zip extension for PHP + + php-common + mit-kerberos + + + /usr/lib/php/modules/zip.so + /etc/php/cli/ext/10-php-zip.ini + /etc/php/ext/10-php-zip.ini + + + 10-php-zip.ini + + + + php-imap + Module for PHP to enable IMAP support + + php-common + libc-client + mit-kerberos + + + /usr/lib/php/modules/imap.so + /etc/php/ext/11-php-imap.ini + /etc/php/cli/ext/11-php-imap.ini + /etc/php/apache2/ext/11-php-imap.ini + + + 11-php-imap.ini + + + + php-fpm + FPM for PHP + + php-common + libxslt + libxslt + libjpeg-turbo + postgresql-lib + openldap-client + libmcrypt + + + /usr/sbin/php-fpm + /usr/share/man/man8/php-fpm.8 + /etc/php/ext/php-fpm.conf + /usr/share/fpm + /run + /var/log + + + System.Service + + + php-fpm.conf + + + + + 2016-06-09 + 5.6.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-20 + 5.6.20 First release Serdar Soytetir kaptan@pisilinux.org @@ -29511,120 +10881,160 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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 - - - - - 2016-06-09 - 3.5.27 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-02 - 3.5.27 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - iso-codes - http://pkg-isocodes.alioth.debian.org/ + python-pygobject3 + http://www.pygtk.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 + 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.acc.umu.se/pub/GNOME/sources/pygobject/3.18/pygobject-3.18.2.tar.xz + + libffi-devel + python-devel + python3-devel + python-cairo-devel + python3-cairo-devel + gobject-introspection-devel + glib2-devel + + programming/language/python/python-pygobject3/pspec.xml - iso-codes + python-pygobject3 + python2 için pygobject3 + + cairo + glib2 + libffi + python-cairo + gobject-introspection + + + /usr/share/doc + /usr/lib/python2.7 + /usr/lib/libpyglib-gi-2.0-python2.7.so* + + + + python3-pygobject3 + python3 için pygobject3 + python3 için pygobject geliştirme dosyaları + + cairo + glib2 + libffi + python3-cairo + gobject-introspection + + + /usr/lib/python3.4 + /usr/lib/libpyglib-gi-2.0-python3.4.so* + + + + python-pygobject3-devel + pygobject development files + pygobject geliştirme dosyaları + + python-pygobject3 + gobject-introspection-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/pygobject + + + + + 2016-06-09 + 3.18.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 3.18.2 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-08 + 3.18.2 + First release + Alihan Öztürk + alihan@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/lib/pkgconfig - /usr/share/locale /usr/share/doc - /usr/share/xml - /usr/share/iso-codes 2016-06-09 - 3.53 + 3.3.5 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-21 - 3.53 + 2014-07-05 + 3.3.5 First release Vedat Demir vedat@pisilinux.org @@ -29633,75 +11043,2006 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libofx - http://libofx.sourceforge.net + notify-python + http://www.galago-project.com PisiLinux Community admins@pisilinux.org - GPLv2+ + 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 + programming.language.python + Python bindings for libnotify + libnotify'ın Python bağlayıcıları + Galago est un framework (cadre de développement) de présence bureautique, conçu pour transmettre des informations de présences entre programmes. Pour faire simple, il recense les présents et agrège les informations concernant leur état depuis un logiciel de messagerie instantannée (tel que gaim) ou de programmes similaires et permet à d'autre logiciels (tels que Evolution) d'avoir accès à cette information. + notify-python are Python bindings for the Galago project's notification library libnotify. +  Galago programlar arası duruş/görünüm bilgisini iletecek şekilde dizayn edilmiş bir masaüstü görüntü çerçevesidir. Daha basitçe açıklamak gerekirse, bir anlık ileti programından (gaim gibi) veya benzeri başka programlardan kimlerin çevrimiçi, boş/uzakta olduğu bilgisini alıp diğer programların (örn. Evolution) bu bilgiyi kullanmasını sağlar. + Galego es un entorno de presencia de escritorio, diseñado para transmitir informaciones entre programas. En términos sencillos: Puede tomar información sobre quien está en linea, y el estado ausente/inactivo de un programa de mensajería instantánea, como pidgin o similar, y pasar la información a otros programas (ejemplo Evolution) para hacer uso de ello. + http://galago-project.org/files/releases/source/notify-python/notify-python-0.1.1.tar.gz - opensp-devel + libnotify-devel + python-devel + python-gtk-devel + gtk2-devel - libofx-0.9.5-gcc47.patch + link-with-python.patch + notify-python-0.1.1-fix-GTK-symbols.patch + libnotify0.7.patch - office/misc/libofx/pspec.xml + programming/language/python/notify-python/pspec.xml - libofx + notify-python - opensp - libgcc + atk + gtk2 + cairo + glib2 + pango + python + freetype + libnotify + fontconfig + gdk-pixbuf + + + /usr/lib + /usr/lib/pkgconfig + /usr/share/pygtk/2.0/defs + + + + + 2016-06-09 + 0.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 0.1.1 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 1.6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-11-04 + 1.6.4 + 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 + python-cairo-devel + glib2-devel + gobject-introspection-devel + + + pygobject-2.16.1-fixdetection.patch + pygobject-2.28.6-fixes-1.patch + + programming/language/python/python-pygobject/pspec.xml + + + python-pygobject + + glib2 + gobject-introspection + python-cairo + libffi - /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ı + python-pygobject-devel + pygobject development files + pygobject geliştirme dosyaları - libofx + python-pygobject + gobject-introspection-devel + glib2-devel + libffi-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 + + + + + 2016-06-09 + 2.28.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-04 + 2.28.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python-docker-py + https://github.com/dotcloud/docker-py + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + programming.language.python + Python client for Docker. + A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. + https://github.com/docker/docker-py/archive/1.8.1.tar.gz + + python-devel + python-setuptools + python-websocket-client + python-six + python-requests + + programming/language/python/python-docker-py/pspec.xml + + + python-docker-py + Python client for Docker. + + python + python-websocket-client + python-six + python-requests + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.8.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-backports-ssl-match-hostname + https://pypi.python.org/pypi/backports.ssl_match_hostname + + Alihan Öztürk + alihan@pisilinux.org + + PSF-2.2 + app + programming.language.python + The ssl.match_hostname() function from Python 3.4 + The ssl.match_hostname() function from Python 3.4 + https://pypi.python.org/packages/3a/15/f9e48bfd2b971ade10ad0c03babab057791c260b05322cbd3f47e27be108/backports.ssl_match_hostname-3.4.0.2.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-backports-ssl-match-hostname/pspec.xml + + + python-backports-ssl-match-hostname + The ssl.match_hostname() function from Python 3.4 + + python + + + /usr/lib/python* + /usr/share/doc + + + + + 2016-06-15 + 3.4.0.2 + First release + Alihan Öztürk + alihan@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 - - libofx-docs - Documentation for libofx - libofx için belgelendirme - - /usr/share/doc/libofx/html - - 2016-06-09 - 0.9.10 + 1.10.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-02-06 - 0.9.10 + 2014-06-01 + 1.10.0 First release + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + + + + python-smbc + http://cyberelk.net/tim/software/pysmbc + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + Python interface to the libsmbclient library + libsmbclient kitaplığı için Python arayüzü + python-smbc is a Python binding for the libsmbclient library. + python-smbc, libsmbclient kitaplığı için bir Python bağlayıcısıdır. + http://cyberelk.net/tim/data/pysmbc/pysmbc-1.0.13.tar.bz2 + + samba-devel + python-devel + + programming/language/python/python-smbc/pspec.xml + + + python-smbc + + samba + python + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 1.0.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 1.0.13 + First release + Alihan Öztürk + alihan@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 + http://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 + + + + + 2016-06-09 + 0.53 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 0.53 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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* + + + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 1.2.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.23 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-29 + 0.23 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + python-websocket-client + https://github.com/liris/websocket-client + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + programming.language.python + WebSocket client library for Python + websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions. + https://github.com/liris/websocket-client/archive/v0.37.0.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-websocket-client/pspec.xml + + + python-websocket-client + WebSocket client library for Python + + python + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 0.37.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 0.37.0 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-29 + 1.8.1 + First release + Marcin Bojara + marcin@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 + + + + + 2016-06-09 + 2.7.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-27 + 2.7.2 + First release + Yusuf Aydemir + yusuf.aydemir@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 + python-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 + + + + + 2016-06-09 + 0.10.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-21 + 0.10.22 + First release + Stefan Gronewold (groni) + groni@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 + + + + + 2016-06-09 + 0.15.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 0.15.19 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-argparse + https://pypi.python.org/pypi/argparse + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + programming.language.python + Python command-line parsing library + The argparse module makes it easy to write user friendly command line interfaces. + https://pypi.python.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-argparse/pspec.xml + + + python-argparse + Python command-line parsing library + + python + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.4.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-imaging + http://www.pythonware.com/products/pil/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.python + Python Imaging Library (PIL) + Python Görüntü İşleme Kitaplığı + The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities. + La librería Python Imaging Library (PIL) facilita el procesamiento de imágenes desde Python. Esta librería soporta muchos formatos de archivos y provee potentes facilidades de procesamiento de gráficos. + http://effbot.org/media/downloads/Imaging-1.1.7.tar.gz + + sane-backends-devel + libjpeg-turbo-devel + python-devel + + + local_only_initial_value.patch + gentoo-imaging-sane.patch + anka-imaging-tiffendian.patch + gentoo-imaging-giftrans.patch + + programming/language/python/python-imaging/pspec.xml + + + python-imaging + + tcltk + tcl + lcms + libjpeg-turbo + sane-backends + xdg-utils + + + /usr/bin + /usr/lib + /usr/include + /usr/share/doc + + + + + 2016-06-09 + 1.1.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-08 + 1.1.7 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-09 + 1.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-12-07 + 1.6 + First release + Burak Fazıl Ertürk + burakerturk@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 + + + + + 2016-06-09 + 4.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-04 + 4.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.9.72 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-21 + 1.9.72 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 3.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-27 + 3.11 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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.18.tar.gz + + qt5-base-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 + /usr/lib + /usr/include + + + + + 2016-06-09 + 4.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 4.18 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-20 + 4.18 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 4.16.9 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + python-devel + + programming/language/python/python-nose/pspec.xml + + + python-nose + + python + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + + 2016-06-09 + 1.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-04 + 1.3.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + python-MarkupSafe + + + 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 + + + + + 2016-06-09 + 1.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-27 + 1.3.1 + 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-devel + + + fix-leaks-of-pango-objects.patch + python27.patch + + programming/language/python/python-gtk/pspec.xml + + + python-gtk + + atk + gtk2 + cairo + glib2 + pango + libglade + 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 + libglade-devel + + + /usr/bin/pygtk-codegen-2.0 + /usr/include + /usr/lib/pkgconfig + /usr/share/pygtk + + + + + 2016-06-09 + 2.24.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-04 + 2.24.0 + First release + Alihan Öztürk + alihan@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 + + python-devel + + programming/language/python/python-six/pspec.xml + + + python-six + + python + + + /usr/lib + /usr/share/doc + + + + + 2016-06-10 + 1.9.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.9.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-05-08 + 1.9.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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://github.com/pypa/pip/archive/8.1.2.tar.gz + + python-setuptools + python-devel + + programming/language/python/pip/pspec.xml + + + pip + + python-setuptools + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2016-06-18 + 8.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 8.1.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-30 + 8.1.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-04-28 + 8.1.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 + + + + + 2016-06-09 + 0.4.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-12-07 + 0.4.4 + First release + Burak Fazıl Ertürk + burakerturk@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.6/PyQt5_gpl-5.6.tar.gz + + dbus-devel + dbus-python-common + python-devel + 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 + + + PyQt5_gpl-5.6-dbus_ftbfs.patch + + 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 + python-sip + + + /usr/bin/py2uic5 + /usr/lib/python2.7/site-packages + /usr/lib/qt5/plugins/PyQt5/libpy2qt5qmlplugin.so + /usr/share/qt5/qsci/api/python/Py2Qt5.api + /usr/bin/py2rcc5 + /usr/bin/py2lupdate5 + + + + python-qt5-devel + Development files for python3-qt5 + + libgcc + qt5-base + python-qt5 + + + /usr/share/sip/Py2Qt5 + + + + + 2016-06-09 + 5.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-07 + 5.6 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-25 + 5.6 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 5.5.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 0.16.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-02 + 0.16.1 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 0.9.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-04-16 + 0.9.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.9.1.tar.gz + + python-devel + + programming/language/python/python-requests/pspec.xml + + + python-requests + + python-devel + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 2.9.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 2.9.1 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 2.9.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-28 + 0.1 + Rebuild + Harun Gültekin + hrngultekin@gmail.com + + + 2014-06-19 + 0.1 + First release + Harun Gültekin + hrngultekin@gmail.com + + + + + + python-pillow + http://python-pillow.org/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.python + PIL is the Python Imaging Library. + The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities. + https://github.com/python-pillow/Pillow/archive/3.1.0.tar.gz + + python3-tk + python-devel + lcms-devel + python-setuptools + python3-setuptools + python3-qt5-devel + python-qt5-devel + webp-devel + tcltk-devel + tcl-devel + tiff-devel + libjpeg-turbo-devel + sane-backends-devel + libjpeg-turbo-devel + + programming/language/python/python-pillow/pspec.xml + + + python-pillow + + python3-tk + python + lcms + python-setuptools + python3-setuptools + python3-qt5 + python-qt5 + webp + tcltk + tcl + sane-backends + libjpeg-turbo + xdg-utils + + + /usr/bin + /usr/lib + /usr/include + /usr/share/doc + + + + + 2016-06-18 + 3.1.0 + Version bump. Stefan Gronewold(groni) groni@pisilinux.org @@ -29709,72 +13050,659 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libvisio - http://www.ohloh.net/p/libvisio + python-colorama + https://pypi.python.org/pypi/colorama - PisiLinux Community - admins@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - GPLv2 - LGPLv2.1 + BSD 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.5.tar.xz + programming.language.python + Cross-platform colored terminal text. + Python API for cross-platform colored terminal text. + https://pypi.python.org/packages/f0/d0/21c6449df0ca9da74859edc40208b3a57df9aca7323118c913e58d442030/colorama-0.3.7.tar.gz - icu4c-devel - librevenge-devel - zlib-devel - libxml2-devel - boost-devel - gperf - cppunit-devel + python-devel - office/misc/libvisio/pspec.xml + programming/language/python/python-colorama/pspec.xml - libvisio + python-colorama + Cross-platform colored terminal text. - cppunit - icu4c - librevenge - libgcc - libxml2 + python /usr/lib - /usr/bin - /usr/share/doc/libvisio - - - - libvisio-devel - - icu4c-devel - librevenge-devel - zlib-devel - libxml2-devel - libvisio - - - /usr/include/ - /usr/lib/pkgconfig + /usr/share/doc 2016-06-09 - 0.1.5 - Version Bump + 0.3.7 + Release Bump Pisi Linux Community admin@pisilinux.org - 2015-01-03 - 0.1.0 + 2016-06-06 + 0.3.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-mutagen + http://code.google.com/p/mutagen + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + An audio tag editing library + Mutagen is an audio metadata tag reader and writer implemented in pure Python. + https://bitbucket.org/lazka/mutagen/downloads/mutagen-1.32.tar.gz + + python-devel + python3-devel + + programming/language/python/python-mutagen/pspec.xml + + + python-mutagen + + python + python3 + + + /usr/lib + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2016-06-18 + 1.32 + Version bump. + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 3.10.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-10 + 3.10.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python-Unidecode + http://pypi.python.org/pypi/Unidecode/ + + PisiLinux Community + admins@pisilinux.org + + Artistic + GPLv2 + library + programming.language.python + US-ASCII transliterations of Unicode text + Unicode karakterlerinin US-ASCII harf çevirileri + python-Unidecode provides ASCII transliterations of Unicode text. This is a Python port of Text::Unidecode Perl module. + python-Unidecode, Unicode karakterlerinin US-ASCII harf çevirilerini sağlar. Text::Unidecode Perl modülünün Python diliyle yazılmış halidir. + https://pypi.python.org/packages/source/U/Unidecode/Unidecode-0.04.18.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-Unidecode/pspec.xml + + + python-Unidecode + + python + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 0.04.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 0.04.18 + First release + Alihan Öztürk + alihan@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.3.3.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 + + + + + 2016-06-14 + 5.3.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-03 + 5.2.4 + First release + Vedat Demir + vedat@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 + + + + + 2016-06-09 + 8.6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-11 + 8.6.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 8.6.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-14 + 8.6.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/ + + + + + 2016-06-09 + 4.02.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-04 + 4.02.1 + First release + Yusuf Aydemir + yusuf.aydemir@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://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops4/R-4.4.2-201502041700/ecjsrc-4.4.2.jar + + ant + jdk7-openjdk + + + 01-ecj-include-props.patch + 02-buildxml-fix-manifest.patch + + programming/language/java/eclipse-ecj/pspec.xml + + + eclipse-ecj + + jdk7-openjdk + + + /usr/share/man + /usr/bin + /usr/share/java + + + ecj + + + + + 2016-06-10 + 4.4.2_201502041700 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-03 + 4.4.2_201502041700 + First release + Osman Erkan + osman.erkan@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_1_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 + jdk7-openjdk + + programming/language/java/rhino/pspec.xml + + + rhino + + jdk7-openjdk + + + /usr/share/man + /usr/bin + /usr/share/java/ + + + + + 2016-06-09 + 1.7.7.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.7.7.1 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 0.98 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-05 + 0.98 First release PisiLinux Community admins@pisilinux.org @@ -29783,62 +13711,5600 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libpagemaker - https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker + 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/ + + + + + 2016-06-09 + 7u_85.2.6.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-22 + 7u_85.2.6.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + python3-docker-py + https://github.com/dotcloud/docker-py + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + programming.language.python3 + Python client for Docker. + A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. + https://github.com/docker/docker-py/archive/1.8.1.tar.gz + + python3-devel + python3-setuptools + python3-websocket-client + python3-six + python3-requests + + programming/language/python3/python3-docker-py/pspec.xml + + + python3-docker-py + Python client for Docker. + + python3 + python3-websocket-client + python3-six + python3-requests + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.8.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python3-six + http://pypi.python.org/pypi/six/ + + Alihan Öztürk + alihan@pisilinux.org + + MIT + app:console + programming.language.python3 + 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. + python3-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/python3/python3-six/pspec.xml + + + python3-six + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 1.9.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.9.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-05-08 + 1.9.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python3-websocket-client + https://github.com/liris/websocket-client + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + programming.language.python3 + WebSocket client library for Python + websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions. + https://github.com/liris/websocket-client/archive/v0.37.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-websocket-client/pspec.xml + + + python3-websocket-client + WebSocket client library for Python + + python3 + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 0.37.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 0.37.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python3-sip + http://www.riverbankcomputing.co.uk/sip Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - MPL2 - library - office.misc - a library that parses the file format of Aldus/Adobe PageMaker documents - a library that parses the file format of Aldus/Adobe PageMaker documents - libpagemaker - http://dev-www.libreoffice.org/src/libpagemaker/libpagemaker-0.0.2.tar.gz + GPLv2 + app:console + programming.language.python3 + SIP is a tool for generating bindings for C++ classes so that they can be used by Python3 + C ve C++ kütüphaneleri için python bağlayıcıları oluşturan bir araç + Generator powiązań Pythona z bibliotekami klas C++ + SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python3. It takes any C or C++ libraries and converts them into Python extension modules. + SIP3 C ve C++ kütüphanelerini Python'da kullanabilmek için bağlayıcılar oluşturan bir araçtır. Herhangi bir C veya C++ kütüphanesini Python genişletme modülüne dönüştürür. + Generuje powiązania Pythona z bibliotekami klas C++ ze zbioru plików ze specyfikacjami klas. Obsługiwany jest Python 2 i 3. + mirrors://sourceforge/pyqt/sip-4.18.tar.gz - boost-devel - doxygen - help2man - librevenge-devel + qt5-base-devel + python3-devel - office/misc/libpagemaker/pspec.xml + programming/language/python3/python3-sip/pspec.xml - libpagemaker + python3-sip + Python 3.x SIP bindings for C and C++ libraries libgcc - librevenge + python3 /usr/bin - /usr/share - /usr/lib/libpagemaker-* + /usr/lib + /usr/include + /usr/share/licenses + + + + + 2016-06-18 + 4.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-11 + 4.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 4.18 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-20 + 4.18 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 4.16.9 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-psutil + https://github.com/giampaolo/psutil + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + A cross-platform process utilities module for Python + Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülü + python3-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat. + python3-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır. + https://github.com/giampaolo/psutil/archive/release-4.0.0.tar.gz + + python3-devel + + programming/language/python3/python3-psutil/pspec.xml + + + python3-psutil + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 4.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 4.0.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python3-requests + http://www.python-requests.org/ + + Ergün Salman + ergunsalman@hotmail.com + + MIT + programming.language.python3 + 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.9.1.tar.gz + + python3-devel + + programming/language/python3/python3-requests/pspec.xml + + + python3-requests + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 2.9.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 2.9.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 2.9.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-setuptools + http://pypi.python.org/pypi/setuptools + + PisiLinux Community + admins@pisilinux.org + + PSF-2.2 + library + programming.language.python3 + 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. + https://pypi.python.org/packages/source/s/setuptools/setuptools-19.6.1.tar.gz + + python3-devel + + programming/language/python3/python3-setuptools/pspec.xml + + + python3-setuptools + + /usr/bin + /usr/lib/python3* + + + + + 2016-06-09 + 19.6.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 19.6.1 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-26 + 19.6.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2016-05-26 + 19.6.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2016-05-26 + 19.6.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2016-05-26 + 19.6.1 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + python3-backports-ssl-match-hostname + https://pypi.python.org/pypi/backports.ssl_match_hostname + + Alihan Öztürk + alihan@pisilinux.org + + PSF-2.2 + app + programming.language.python3 + The ssl.match_hostname() function from Python 3.4 + The ssl.match_hostname() function from Python 3.4 + https://pypi.python.org/packages/3a/15/f9e48bfd2b971ade10ad0c03babab057791c260b05322cbd3f47e27be108/backports.ssl_match_hostname-3.4.0.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-backports-ssl-match-hostname/pspec.xml + + + python3-backports-ssl-match-hostname + The ssl.match_hostname() function from Python 3.4 + + python3 + + + /usr/lib/python* + /usr/share/doc + + + + + 2016-06-15 + 3.4.0.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gonullu + https://github.com/PisiLinuxNew/gonullu + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:console + programming.language.python3 + Volunteer application is developed to compile the packages for Pisi distributions + Gonullu uygulamasi, pisi linux dağıtımının paketlerini derlemek üzere hazırlanmıştır. + Application build the packages waiting at queue of build system as PISI packages using docker images and again, sent them to build system. + Uygulama docker imajlarını kullanarak, derleme sisteminin kuyruğundan bekleyen paketleri pisi paketi haline getirir ve derleme sistemine gönderir. + https://github.com/PisiLinuxNew/gonullu/archive/v1.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/gonullu/pspec.xml + + + gonullu + + python3 + python3-argparse + python3-colorama + python3-docker-py + python3-psutil + python3-requests + python3-six + python3-sip + python3-backports-ssl-match-hostname + docker + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2016-06-14 + 1.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python3-colorama + https://pypi.python.org/pypi/colorama + + Alihan Öztürk + alihan@pisilinux.org + + BSD + app:console + programming.language.python3 + Cross-platform colored terminal text. + Python API for cross-platform colored terminal text. + https://pypi.python.org/packages/f0/d0/21c6449df0ca9da74859edc40208b3a57df9aca7323118c913e58d442030/colorama-0.3.7.tar.gz + + python3-devel + + programming/language/python3/python3-colorama/pspec.xml + + + python3-colorama + Cross-platform colored terminal text. + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 0.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 0.3.7 + First release + Alihan Öztürk + alihan@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 + + + dont-make-libpython-readonly.patch + + programming/language/python3/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 + + + + + 2016-06-09 + 3.4.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 3.4.3 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-13 + 3.4.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + python3-argparse + https://pypi.python.org/pypi/argparse + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + programming.language.python3 + Python command-line parsing library + The argparse module makes it easy to write user friendly command line interfaces. + https://pypi.python.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-argparse/pspec.xml + + + python3-argparse + Python command-line parsing library + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.4.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + pip3 + https://pypi.python.org/pypi/pip + + Yusuf Aydemir + Yusuf.aydemir@istanbul.com + + MIT + programming.language.python3 + The PyPA recommended tool for installing Python packages + The PyPA recommended tool for installing Python packages + https://github.com/pypa/pip/archive/8.1.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/pip3/pspec.xml + + + pip3 + + python3 + python3-setuptools + + + /usr/bin/pip + /usr/bin/pip3* + /usr/lib/python3* + /usr/share/doc + + + + + 2016-06-18 + 8.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 8.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 8.1.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-30 + 8.1.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-04-28 + 8.1.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-qt5 + http://www.riverbankcomputing.co.uk/software/pyqt + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + GPLv3 + library + programming.language.python3 + A set of Python bindings for the Qt 5.x Toolkit + 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. + mirrors://sourceforge/pyqt/PyQt5/PyQt-5.6/PyQt5_gpl-5.6.tar.gz + + dbus-devel + dbus-python3 + dbus-python-common + python3-devel + python3-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 + qt5-quickcontrols2-devel + qt5-script-devel + qt5-designer-devel + + + PyQt5_gpl-5.6-dbus_ftbfs.patch + + programming/language/python3/python3-qt5/pspec.xml + + + 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 + python3-sip + + + /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 + /usr/bin/pyrcc5 + /usr/bin/pylupdate5 + + + + python3-qt5-devel + Development files for python3-qt5 + + libgcc + qt5-base + python3-qt5 + + + /usr/share/sip/PyQt5 + + + + + 2016-06-09 + 5.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-07 + 5.6 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-25 + 5.6 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 5.5.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-cairo + http://cairographics.org/pycairo + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python3 + wrapper (version enrobée) Python3 de la librairie de graphisme vectoriel cairo. + Python3 wrapper for cairo graphics library + Cairo vektörel grafik kitaplığı için Python3 bağlayıcıları + Pycairo is set of Python3 bindings for the cairo graphics library. + http://cairographics.org/releases/pycairo-1.10.0.tar.bz2 + + python3-devel + cairo-devel + + + pycairo-1.10.0-waf-python3.4.patch + + programming/language/python3/python3-cairo/pspec.xml + + + python3-cairo + + python3 + cairo + + + /usr/lib /usr/share/doc - libpagemaker-devel + python3-cairo-devel + Development files for python3-cairo + python3-cairo için geliştirme dosyaları - librevenge-devel - libpagemaker + python3-cairo + cairo-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 1.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 1.10.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python3-nose + http://somethingaboutorange.com/mrl/projects/nose/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + programming.language.python3 + 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. + python3-nose alternatif test tanıtma ve keşif kitaplığı. + https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz + + python3-devel + + programming/language/python3/python3-nose/pspec.xml + + + python3-nose + + python3 + + + /usr/lib + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 1.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.3.7 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-04 + 1.3.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.28.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-05-22 + 0.28.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 5.1.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-05-09 + 5.1.5 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + perl-Canary-Stability + https://metacpan.org/release/Canary-Stability + + Alihan Öztürk + alihan@pisilinux.org + + GPLv1 + library + programming.language.perl + CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules + CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules + https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Canary-Stability-2011.tar.gz + + perl + + programming/language/perl/perl-Canary-Stability/pspec.xml + + + perl-Canary-Stability + CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules + + perl + + + / + + + + + 2016-06-09 + 2011 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2011 + First Release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 3.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 3.20 + First release + Kamil Atlı + suvari@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 + + + + + 2016-06-09 + 3.30 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-26 + 3.30 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.28 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 0.28 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-JSON + http://search.cpan.org/dist/JSON/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + JSON (JavaScript Object Notation) encoder/decoder + JSON (JavaScript Nesne Gösterimi) kodlayıcı/çözücü + This module converts between JSON (JavaScript Object Notation) and Perl data structure into each other. For JSON, see http://www.crockford.com/JSON/. + http://search.cpan.org/CPAN/authors/id/M/MA/MAKAMAKA/JSON-2.90.tar.gz + + perl + perl-JSON-XS + perl-Test-Pod + + programming/language/perl/perl-JSON/pspec.xml + + + perl-JSON + + perl + perl-JSON-XS + perl-Test-Pod + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 2.90 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.90 + 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 + + + + + 2016-06-09 + 3.71 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 3.71 + First release + Marcin Bojara + marcin@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 + + + + + 2016-06-09 + 2.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 2.13 + First release + Kamil Atlı + suvari@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-Module-Build + perl + + programming/language/perl/perl-HTML-Scrubber/pspec.xml + + + perl-HTML-Scrubber + + perl-HTML-Parser + perl + + + /usr/lib + /usr/share/man + + + + + 2016-06-09 + 0.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 0.11 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-Capture-Tiny + http://search.cpan.org/dist/Capture-Tiny + + Pisi Linux Admins + admins@pisilinux.org + + Apache-2.0 + library + programming.language.perl + Perl module to capture stdout and stderr from Perl, XS or external programs + Standart çıktı ve hata akışlarının yakalamaya yarayan Perl modülü + perl-Capture-Tiny is a Perl module to capture stdout and stderr from Perl, XS or external programs. + perl-Capture-Tiny, Perl, XS veya harici programların standart çıktı ve hata akışlarının yakalanmasını sağlayan bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.36.tar.gz + + perl + + programming/language/perl/perl-Capture-Tiny/pspec.xml + + + perl-Capture-Tiny + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 0.36 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.36 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-CGI + http://search.cpan.org/dist/CGI/ + + Alihan Öztürk + alihan@pisilinux.org + + Artistic + GPLv1 + library + programming.language.perl + Handle Common Gateway Interface requests and responses. + Handle Common Gateway Interface requests and responses. + http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-4.28.tar.gz + + perl + perl-HTML-Parser + perl-Test-Deep + perl-Test-Warn + + programming/language/perl/perl-CGI/pspec.xml + + + perl-CGI + Handle Common Gateway Interface requests and responses. + + perl + perl-HTML-Parser + perl-Test-Deep + perl-Test-Warn + + + / + + + + + 2016-06-09 + 4.28 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 4.28 + First release. + Alihan Öztürk + alihan@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.17024.tar.gz + + perl + perl-Module-Build + perl-Test-Pod + perl-Test-Pod-Coverage + + programming/language/perl/perl-Error/pspec.xml + + + perl-Error + + perl + perl-Module-Build + perl-Test-Pod + perl-Test-Pod-Coverage + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 0.17024 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.17024 + First release + Alihan Öztürk + alihan@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. + https://cpan.metacpan.org/authors/id/M/MS/MSCHILLI/LWP-Protocol-https-6.06.tar.gz + + perl + perl-IO-Socket-SSL + perl-NET-HTTP + perl-Mozilla-CA + + + certs.patch + + programming/language/perl/perl-LWP-Protocol-https/pspec.xml + + + perl-LWP-Protocol-https + + perl + ca-certificates + perl-IO-Socket-SSL + perl-NET-HTTP + perl-Mozilla-CA + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 6.06 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 6.06 + 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 + perl-URI + + programming/language/perl/perl-WWW-Robotrules/pspec.xml + + + perl-WWW-Robotrules + + perl + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2016-06-09 + 6.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 6.02 + First release + Alihan Öztürk + alihan@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 + libpcre-devel + perl-JSON + + programming/language/perl/perl-HTML-Template-Pro/pspec.xml + + + perl-HTML-Template-Pro + + perl + libpcre + perl-JSON + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 0.9510 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 0.9510 + First release + Marcin Bojara + marcin@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 + + + + + 2016-06-09 + 6.06 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.06 + First release + Marcin Bojara + marcin@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 + + + + + 2016-06-09 + 6.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 6.02 + First release + Kamil Atlı + suvari@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 + + + + + 2016-06-09 + 1.49 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-15 + 1.49 + 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/E/EX/EXODIST/Test-Exception-0.43.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 + + + + + 2016-06-09 + 0.43 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 0.43 + First release + Kamil Atlı + suvari@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.72.tar.gz + + perl + perl-Test-Exception + openssl-devel + + programming/language/perl/perl-Net-SSLeay/pspec.xml + + + perl-Net-SSLeay + + perl + zlib + openssl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-Net-SSLeay + + + + + 2016-06-09 + 1.72 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.72 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Mozilla-CA + http://search.cpan.org/~abh/Mozilla-CA-20130114/lib/Mozilla/CA.pm + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Mozilla::CA - Mozilla's CA cert bundle in PEM format + Mozilla::CA provides a copy of Mozilla's bundle of Certificate Authority certificates in a form that can be consumed by modules and libraries based on OpenSSL. + https://cpan.metacpan.org/authors/id/A/AB/ABH/Mozilla-CA-20160104.tar.gz + + perl + + programming/language/perl/perl-Mozilla-CA/pspec.xml + + + perl-Mozilla-CA + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 20160104 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 20160104 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Test-Pod-Coverage + http://search.cpan.org/dist/Test-Pod-Coverage/ + + Pisi Linux Admins + admin@pisilinux.org + + as-is + library + programming.language.perl + Check for pod coverage in your distribution + Dağıtımınızın POD kapsamını kontrol eder + perl-Test-Pod-Coverage checks for pod coverage in your distribution. + perl-Test-Pod-Coverage dağıtımınızın POD kapsamını kontrol eden Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/Test-Pod-Coverage-1.10.tar.gz + + perl + perl-Pod-Coverage + + programming/language/perl/perl-Test-Pod-Coverage/pspec.xml + + + perl-Test-Pod-Coverage + + perl + perl-Pod-Coverage + + + /usr/lib + /usr/share/man + + + + + 2016-06-09 + 1.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.10 + 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 + perl-Module-Build + perl-Test-Fatal + + 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 + + + + + 2016-06-09 + 5.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 5.03 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 6.01 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.01 + First release + Marcin Bojara + marcin@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.25.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 + + + + + 2016-06-09 + 0.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 0.25 + First release + Kamil Atlı + suvari@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 + + + + + 2016-06-09 + 1.04 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.04 + First release + Kamil Atlı + suvari@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 + + + + + 2016-06-09 + 1.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.03 + First release + Kamil Atlı + suvari@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. + https://cpan.metacpan.org/authors/id/E/ET/ETHER/libwww-perl-6.15.tar.gz + + perl + perl-URI + perl-NET-HTTP + perl-HTTP-Date + perl-HTML-Parser + perl-HTML-Tagset + perl-HTTP-Cookies + perl-HTTP-Daemon + perl-File-Listing + perl-HTTP-Message + perl-Encode-Locale + perl-HTTP-Negotiate + perl-LWP-Mediatypes + perl-WWW-Robotrules + perl-LWP-Protocol-https + + 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 + perl-LWP-Protocol-https + perl-HTTP-Cookies + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/perl + + + + + 2016-06-09 + 6.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 6.15 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 6.01 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.01 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-Font-AFM + http://search.cpan.org/dist/Font-AFM/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + A Perl module that is a interface to Adobe Font Metrics files + Adobe Font Metrics dosyaları için bir Perl arayüz modülü + perl-Font-AFM is interface to Adobe Font Metrics files. It allows you to obtain information about the font and the metrics of the various glyphs in the font. + Adobe Font Metrics dosyaları için bir Perl arayüz mödülü. Bu modül ile yazı tipi ve biçimi hakkında bilgilere ulaşabilirsiniz. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Font-AFM-1.20.tar.gz + + perl + + programming/language/perl/perl-Font-AFM/pspec.xml + + + perl-Font-AFM + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 1.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.20 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Try-Tiny + http://search.cpan.org/dist/Try-Tiny + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Perl module to implement minimal try/catch + Perl için basit bir try/catch gerçeklemesi + perl-Try-Tiny is a Perl module which implements a minimal try/catch with proper localization of $@. + perl-Try-Tiny, Perl için $@ yerelleştirmesi sağlayan basit bir try/catch gerçeklemesidir. + http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Try-Tiny-0.24.tar.gz + + perl + perl-Capture-Tiny + + programming/language/perl/perl-Try-Tiny/pspec.xml + + + perl-Try-Tiny + + perl + perl-Capture-Tiny + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 0.24 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.24 + 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 + + + + + 2016-06-09 + 6.01 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.01 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-Types-Serialiser + http://search.cpan.org/~mlehmann/Types-Serialiser-1.0/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + app:console + programming.language.perl + This module provides some extra datatypes that are used by common serialisation formats such as JSON or CBOR. + This module provides some extra datatypes that are used by common serialisation formats such as JSON or CBOR. The idea is to have a repository of simple/small constants and containers that can be shared by different implementations so they become interoperable between each other. + http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Types-Serialiser-1.0.tar.gz + + perl + perl-common-sense + + programming/language/perl/perl-Types-Serialiser/pspec.xml + + + perl-Types-Serialiser + + perl + perl-common-sense + + + /usr/bin + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.0 + 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.12.tar.gz + + perl + perl-Module-Build + perl-HTML-Tree + perl-Font-AFM + + programming/language/perl/perl-HTML-Format/pspec.xml + + + perl-HTML-Format + + perl + perl-Module-Build + perl-HTML-Tree + perl-Font-AFM + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.12 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 6.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.02 + First release + Marcin Bojara + marcin@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-2.024.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 + + + + + 2016-06-09 + 2.024 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 2.024 + First release + Kamil Atlı + suvari@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. + https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Pod-1.51.tar.gz + + perl + + programming/language/perl/perl-Test-Pod/pspec.xml + + + perl-Test-Pod + + perl + + + /usr/lib + /usr/share/man + + + + + 2016-06-09 + 1.51 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.51 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Module-Build + http://search.cpan.org/~crenz/Module-Find + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Build and install Perl modules. + Build and install Perl modules. + perl-Module-Build Module::Build is a system for building, testing, and installing Perl modules. + perl-Module-Find, Module::Build is a system for building, testing, and installing Perl modules. + http://www.cpan.org/authors/id/L/LE/LEONT/Module-Build-0.4216.tar.gz + + perl + + programming/language/perl/perl-Module-Build/pspec.xml + + + perl-Module-Build + + perl + perl-docs + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 0.4216 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 0.4216 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 2.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 2.16 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Test-Deep + http://search.cpan.org/dist/Test-Deep/ + + Pisi Linux Admins + admin@pisilinux.org + + as-is + library + programming.language.perl + A Perl module that gives you lots of flexibility when testing deep structures + Derin yapıları test ederken çok fazla esneklik sağlayan bir Perl modülü + perl-Test-Deep is a Perl module that gives you lots of flexibility when testing deep structures. + perl-Test-Deep derin yapıları test ederken çok fazla esneklik sağlayan bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Deep-1.120.tar.gz + + perl + + programming/language/perl/perl-Test-Deep/pspec.xml + + + perl-Test-Deep + + perl + + + /usr/lib + /usr/share/man + + + + + 2016-06-09 + 1.120 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.120 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-Pod-Coverage + http://search.cpan.org/dist/Pod-Coverage/ + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + app:console + programming.language.perl + Checks if the documentation of a module is comprehensive + Bir modülün belgelendirmesinin kapsamını kontrol eder + perl-Pod-Coverage checks if the documentation of a module is comprehensive. + perl-Pod-Coverage bir modülün belgelendirmesinin kapsamını kontrol eden bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/Pod-Coverage-0.23.tar.gz + + perl + perl-Devel-Symdump + perl-Test-Pod + + programming/language/perl/perl-Pod-Coverage/pspec.xml + + + perl-Pod-Coverage + + perl + perl-Devel-Symdump + perl-Test-Pod + + + /usr/bin + /usr/lib + /usr/share/man + + + + + 2016-06-09 + 0.23 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.23 + First release + Osman Erkan + osman.erkan@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.05.tar.gz + + perl + + programming/language/perl/perl-Encode-Locale/pspec.xml + + + perl-Encode-Locale + + perl + + + /usr/lib + /usr/share + + + + + 2016-06-09 + 1.05 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.05 + First release + Kamil Atlı + suvari@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 + perl-Module-Build + + programming/language/perl/perl-Crypt-PasswdMD5/pspec.xml + + + perl-Crypt-PasswdMD5 + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 1.40 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 1.40 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-Test-Warn + http://search.cpan.org/dist/Test-Warn/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Perl extension to test methods for warnings + Test uyarıları için Perl eklentisi + perl-Test-Warn module provides a few convenience methods for testing warning based code. + perl-Test-Warn modülü, uyarı temelli kodları test etmeye yarayan birkaç kolaylık metodu sağlamaktadır. + http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/Test-Warn-0.30.tar.gz + + perl + perl-Sub-Uplevel + perl-Test-Pod + + programming/language/perl/perl-Test-Warn/pspec.xml + + + perl-Test-Warn + + perl + perl-Sub-Uplevel + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 0.30 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.30 + 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/D/DA/DALEEVANS/HTML-FormatText-WithLinks-AndTables-0.06.tar.gz + + perl + perl-URI + perl-HTML-FormatText-WithLinks + + programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml + + + perl-HTML-FormatText-WithLinks-AndTables + + perl + perl-URI + perl-HTML-FormatText-WithLinks + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 0.06 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.06 + First release + Alihan Öztürk + alihan@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/R/RJ/RJBS/Net-SMTP-SSL-1.03.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 + + + + + 2016-06-09 + 1.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.03 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-HTML-Template + http://search.cpan.org/~wonko/HTML-Template/ + + 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 + perl-CGI + + programming/language/perl/perl-HTML-Template/pspec.xml + + + perl-HTML-Template + + perl + perl-CGI + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2016-06-09 + 2.95 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 2.95 + First release + Alihan Öztürk + alihan@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.22.tar.gz + + perl + perl-HTTP-Message + perl-Test-Deep + perl-Test-Pod + perl-Test-Pod-Coverage + + programming/language/perl/perl-HTTP-Body/pspec.xml + + + perl-HTTP-Body + + perl + perl-HTTP-Message + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2016-06-09 + 1.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.22 + First release + Alihan Öztürk + alihan@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://cpan.metacpan.org/authors/id/E/ET/ETHER/URI-1.71.tar.gz + + perl + + programming/language/perl/perl-URI/pspec.xml + + + perl-URI + + perl + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 1.71 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.71 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-common-sense + http://search.cpan.org/~mlehmann/common-sense/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Implements some sane defaults for Perl programs + Perl programları için kabul edilebilir öntanımlılar içerir + This module implements some sane defaults for Perl programs, as defined by two typical (or not so typical - use your common sense) specimens of Perl coders: + http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/common-sense-3.74.tar.gz + + perl + + programming/language/perl/perl-common-sense/pspec.xml + + + perl-common-sense + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 3.74 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 3.74 + 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/E/ET/ETHER/Net-HTTP-6.09.tar.gz + + perl + perl-URI + + programming/language/perl/perl-NET-HTTP/pspec.xml + + + perl-NET-HTTP + + perl + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2016-06-09 + 6.09 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 6.09 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 2.53 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 2.53 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-Test-Fatal + http://search.cpan.org/dist/Test-Fatal + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Perl module to test code with exceptions + İstisna içeren kodları test etmek için Perl modülü + perl-Test-Fatal provides incredible simple helpers for testing Perl code with exceptions. + perl-Test-Fatal, istisna (exception) içeren kodları test etmek için çok basit bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Fatal-0.014.tar.gz + + perl + perl-Try-Tiny + + programming/language/perl/perl-Test-Fatal/pspec.xml + + + perl-Test-Fatal + + perl + perl-Try-Tiny + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 0.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.14 + 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/B/BP/BPS/HTTP-Server-Simple-0.51.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 + + + + + 2016-06-09 + 0.51 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.51 + First release + Alihan Öztürk + alhan@pisilinux.org + + + + + + perl-JSON-XS + http://search.cpan.org/dist/JSON-XS/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + app:console + programming.language.perl + JSON serialising/deserialising, done correctly and fast + Doğru ve hızlı, JSON serileştirme/geri elde etme kitaplığı + This module converts Perl data structures to JSON and vice versa. Its primary goal is to be correct and its secondary goal is to be *fast*. To reach the latter goal it was written in C. + Bu modül Perl veri yapılarını JSON'a çevirir, tam tersini de yapabilir. Birincil amacı doğru çalışmak, ikincil amacı ise hızlı olmaktır. İkinciyi sağlamak için C dilinde yazılmıştır. + http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-3.02.tar.gz + + perl + perl-Canary-Stability + perl-common-sense + perl-Types-Serialiser + + programming/language/perl/perl-JSON-XS/pspec.xml + + + perl-JSON-XS + + perl + perl-Canary-Stability + perl-common-sense + perl-Types-Serialiser + + + /usr/bin + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 3.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 3.02 + 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 + perl-URI + perl-HTML-Parser + perl-HTTP-Message + + programming/language/perl/perl-HTML-Form/pspec.xml + + + perl-HTML-Form + + perl + perl-URI + perl-HTML-Parser + perl-HTTP-Message + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2016-06-09 + 6.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 6.03 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 6.04 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.04 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-Devel-Symdump + http://search.cpan.org/dist/Devel-Symdump/ + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Dump symbol names or the symbol table + Sembol isimlerinin veya sembol tablosunun dökümünü verir + perl-Devel-Symdump is a Perl module that dumps symbol names or the symbol table. + perl-Devel-Symdump sembol isimlerinin veya sembol tablosunun dökümünü veren bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/A/AN/ANDK/Devel-Symdump-2.15.tar.gz + + perl + + programming/language/perl/perl-Devel-Symdump/pspec.xml + + + perl-Devel-Symdump + + perl + + + /usr/lib + /usr/share/man + + + + + 2016-06-09 + 2.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.15 + 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 + + + + + 2016-06-09 + 10.00 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-27 + 10.00 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + perl-IO-String + http://search.cpan.org/dist/IO-String/ + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + IO::File interface for in-core strings in Perl + Perl için çekirdek içi metinler için bir G/Ç Dosya arayüzü + perl-IO-String is an IO::File interface for in-core strings in Perl. + perl-IO-String, Perl dili için çekirdek içi metinlere yönelik bir G/Ç Dosya arayüzüdür. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/IO-String-1.08.tar.gz + + perl + + programming/language/perl/perl-IO-String/pspec.xml + + + perl-IO-String + + perl + + + /usr/lib + /usr/share/man + + + + + 2016-06-09 + 1.08 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 1.08 + First release + Marcin Bojara + marcin@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.15.tar.gz + + perl + perl-URI + perl-Module-Build + perl-HTML-Tree + perl-HTML-Format + + programming/language/perl/perl-HTML-FormatText-WithLinks/pspec.xml + + + perl-HTML-FormatText-WithLinks + + perl + perl-URI + perl-Module-Build + perl-HTML-Tree + perl-HTML-Format + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 0.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.15 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-Font-TTF + http://search.cpan.org/dist/Font-TTF + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + Perl module for TrueType Font hacking + TrueType yazıtipleri için Perl modülü + perl-Font-TTF is a Perl module that allows you to do almost anything to a TrueType/OpenType Font including modifying and inspecting nearly all tables. + perl-Font-TTF, çok sayıda dosya biçimini TrueType/OpenType yazıtipine dönüştürmenizi sağlayan bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/M/MH/MHOSKEN/Font-TTF-1.05.tar.gz + + perl + perl-IO-String + + programming/language/perl/perl-Font-TTF/pspec.xml + + + perl-Font-TTF + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 1.05 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.05 + First release + Ayhan Yalçınsoy + ayhanyalcinoys@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 + + + + + 2016-06-09 + 2.2.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-04 + 2.2.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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.6.2.tar.gz + https://dev.gentoo.org/~williamh/dist/go-linux-amd64-bootstrap.tbz + programming/language/go/pspec.xml + + + golang + + git + + + /usr/bin/ + /usr/lib/ + /usr/share/ + /etc + + + go.sh + + + + + 2016-06-09 + 1.6.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-07 + 1.6.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-01-09 + 1.4.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.3.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 + + + + + 2016-06-09 + 1.9.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-06 + 1.9.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.23.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-01 + 0.23.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.7.2.tar.xz + + tcltk-devel + openssl-devel + libpcre-devel + curl-devel + zlib-devel + expat-devel + xmlto + asciidoc + perl-Error + perl + libxslt + util-linux + + 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 + + + + + 2016-06-09 + 2.7.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-26 + 2.7.2 + 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. + https://www.mercurial-scm.org/release/mercurial-3.8.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 + + + + + 2016-06-09 + 3.8.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-04 + 3.3.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + eric6 + http://eric-ide.python-projects.org/index.html + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:gui + programming.environment.eric + Full featured Python IDE + Eric is a full featured Python and Ruby editor and IDE, written in python. + It is based on the cross platform Qt4 gui toolkit, integrating the highly flexible + Scintilla editor control. It is designed to be usable as everdays' quick and dirty + editor as well as being usable as a professional project management tool integrating + many advanced features Python offers the professional coder. + eric5 + https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-6.1.4.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-cs-6.1.4.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-de-6.1.4.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-es-6.1.4.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-fr-6.1.4.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-it-6.1.4.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-ru-6.1.4.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-tr-6.1.4.tar.gz + + qt5-base-devel + qt5-sql-mysql + python3 + qt5-sql-sqlite + python3-qt5 + qscintilla2-devel + qscintilla2-python3 + qt5-webkit-devel + qt5-svg-devel + python3-sip + + programming/environment/eric6/pspec.xml + + + eric6 + + qt5-base + python3 + python3-qt5 + qscintilla2-python3 + qt5-webkit + qt5-svg + + + /usr/bin + /usr/lib/python3.4/site-packages + /usr/share/qt5/qsci/api + /usr/share/applications + /usr/share/appdata + /usr/share/doc + /usr/share/pixmaps + + + + + 2016-06-09 + 6.1.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-10 + 6.1.4 + Version Bump + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 7.9.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-30 + 7.9.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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-1.2.4.tar.xz + + libevdev + eudev-devel + libmtdev-devel + libwacom-devel + + programming/misc/libinput/pspec.xml + + + libinput + + eudev + libevdev + libmtdev + libwacom + + + /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 + + + 2016-06-09 + 1.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-02 + 1.2.4 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-08 + 1.2.2 + First release + Alihan Öztürk + alihan@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 + + 2016-06-09 - 0.0.2 + 2.1.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-24 - 0.0.2 + 2015-12-31 + 2.1.0 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -29847,52 +19313,947 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - podofo - http://podofo.sourceforge.net + 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 + + + + + 2016-06-09 + 0.82_p1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-18 + 0.82_p1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + attr-32bit + + + attr-32bit + libtalloc + + + /usr/lib32 + + + + + 2016-06-09 + 2.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-28 + 2.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.54/libsoup-2.54.1.tar.xz + + libgcrypt-devel + gtk-doc + glib2-devel + libxml2-devel + sqlite-devel + intltool + gettext-devel + vala-devel + gobject-introspection-devel + + programming/misc/libsoup/pspec.xml + + + libsoup + + glib2 + libxml2 + sqlite + glib-networking + + + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/vala + /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 + gobject-introspection-devel + libsoup + + + /usr/include + /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 + + + glib2-32bit + sqlite-32bit + libxml2-32bit + libsoup + + + /usr/lib32 + + + + + 2016-06-09 + 2.54.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 2.54.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-14 + 2.50.0 + 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 + + + + + 2016-06-09 + 3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-05-22 + 3.1 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libassuan + http://www.gnupg.org/ PisiLinux Community admins@pisilinux.org GPLv3 - LGPLv3 library - app:console - office.misc - A library to work with the PDF file format - PDF dosya biçimiyle çalışmak için bir kütüphane - Biblioteka do obsługi PDF-ów - The PoDoFo library is a free, portable C++ library which includes classes to parse PDF files and modify their contents into memory. The changes can be written back to disk easily. The parser can also be used to extract information from a PDF file (for example the parser could be used in a PDF viewer). Besides parsing PoDoFo includes also very simple classes to create your own PDF files. All classes are documented so it is easy to start writing your own application using PoDoFo. - podofo, PDF dosyalarını ayıklamak ve düzenlemek için geliştirilmiş, ücretsiz bir C++ kütüphanesidir. - mirrors://sourceforge/podofo/podofo-0.9.3.tar.gz + 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 - cmake - zlib-devel - libjpeg-turbo-devel - tiff-devel - libpng-devel - freetype-devel - fontconfig-devel - lua51-devel - cppunit-devel - libidn-devel - boost-devel - openssl-devel + libgpg-error-devel - office/misc/podofo/pspec.xml + programming/misc/libassuan/pspec.xml - podofo + 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 + + + + + 2016-06-09 + 2.2.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-21 + 2.2.1 + First release + Ertuğrul Erata + ertugrulerata@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++ - tiff - zlib - lua51 libgcc - libidn - libpng - openssl - freetype - fontconfig - libjpeg-turbo + + + /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 + + + + + 2016-06-09 + 2.4.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-21 + 2.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 5.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-18 + 5.0.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-27 + 0.1.13 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 0.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-06 + 0.10.0 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 0.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-02 + 0.3.0 + First release + Osman Erkan + osman.erkan@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_60_0.tar.bz2 + + bzip2 + zlib-devel + icu4c-devel + python-devel + python3-devel + libxslt + + + cuda_float128.patch + + programming/misc/boost/pspec.xml + + + boost + + zlib + bzip2 + icu4c + 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 + + + + boost-python + a C++ library which enables seamless interoperability between C++ and the Python + + boost + libgcc + + + /usr/lib/libboost_python.so* + + + + boost-python3 + Headers and library documentation for boosta C++ library which enables seamless interoperability between C++ and the Python3 + + boost + libgcc + + + /usr/lib/libboost_python3.so* + + + + + 2016-06-09 + 1.60.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.60.0 + Release bump. + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2016-05-08 + 1.60.0 + First release + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-25 + 1.3 + First release + Vedat Demir + vedat@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 @@ -29902,12 +20263,610 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - podofo-devel - Development files for podofo - podofo için geliştirme dosyaları + 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 - podofo + 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/ + + + + + 2016-06-09 + 1.12.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + critical + 2014-09-02 + 1.12.18 + First release + Yusuf Aydemir + yusuf.aydemir@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 + docutils + mesa-glu-devel + python-Pygments + python-Jinja2 + blas-devel + lapack-devel + ilmbase-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 + + + + + 2016-06-09 + 1.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-03 + 1.10.0 + First release + Yusuf Aydemir + yusuf.aydemir@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 2.0.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-30 + 2.0.22 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.9.3_20150604 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-18 + 0.9.3_20150604 + First release + Ertuğrul Erata + ertugrulerata@gmail.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 + + glib2-32bit + + + glib2-32bit + json-glib + + + /usr/lib32 + + + + + 2016-06-09 + 1.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.0.2 + Release bump + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-18 + 1.0.2 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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-devel + expat-devel + glib2-devel + + + 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-c++ + dbus-devel + expat-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 0.0_20090907 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-28 + 0.0_20090907 + First release + Stefan Gronewold(groni) + groni@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. + ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.4.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 + + + + + 2016-06-09 + 2.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.3.4 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-06 + 1.0.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 @@ -29916,458 +20875,2120 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 0.9.3 + 1.6.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-12-30 - 0.9.3 + 2014-07-14 + 1.6.2 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - reverseDependencyUpdate - + Vedat Demir + vedat@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 - - - - - 2016-06-09 - 2.10g - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-05 - 2.10g - 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 - - - - - 2016-06-09 - 20150704 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-05 - 20150704 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - - - 2016-06-09 - 2015.05.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-05 - 2015.05.18 - First release - Ayhan Yalcinsoy - ayhanyalcinsoy@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 - - - - - 2016-06-09 - 2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-26 - 2.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - hunspell-dict-de - http://www.j3e.de/ispell/igerman98 + libnotify + http://www.galago-project.org 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 - - - - - 2016-06-11 - 0.0_20131216 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-26 - 0.0_20131216 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 0.0_20090319 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-26 - 0.0_20090319 - First release - Alihan Öztürk - alihan@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 + 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 - hunspell + gtk3-devel + gdk-pixbuf-devel + gnome-common + libepoxy-devel + at-spi2-core-devel + gobject-introspection-devel + gtk-doc - office/dictionary/hunspell-dict-tr/pspec.xml + programming/misc/libnotify/pspec.xml - hunspell-dict-tr + libnotify + + gdk-pixbuf + glib2 + - /usr/lib/libreoffice/share/extensions/hunspell_tr/ - /usr/share/hunspell + /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 2016-06-09 - 1.1 + 0.7.6 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-10-03 - 1.1 + 2014-05-31 + 0.7.6 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - hunspell-dict-es - http://es.openoffice.org/programa/diccionario.html + 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/ + + + + + 2016-06-09 + 6.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-19 + 6.9 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 3.4.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-22 + 3.4.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-12 + 1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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://archive.apache.org/dist/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 + + + + + 2016-06-09 + 3.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 3.1.2 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-06-09 + 2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 2.3 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 1.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-09-01 + 1.5.2 + 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 + + 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 + + + + + 2016-06-09 + 0.8.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.8.14 + First release + Serdar Soytetir + kaptan@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 + + libdaemon + + + /usr/lib32 + + + + + 2016-06-09 + 0.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 0.14 + 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 + + + + + 2016-06-09 + 4.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-24 + 4.0.0 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 3.1_20150325 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-25 + 3.1_20150325 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + icu4c + libgcc + + + /usr/lib32/libicu* + /usr/lib32/icu + + + + + 2016-06-09 + 55.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 55.1 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 55.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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-devel + + + libspectre-0.2.7-gs918.patch + + 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 + cairo-32bit + + + libspectre + ghostscript-32bit + + + /usr/lib32 + + + + + 2016-06-09 + 0.2.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-02 + 0.2.7 + First release + PisiLinux Community + admins@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/ + + + + + 2016-06-09 + 0.1.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-22 + 0.1.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libtevent + http://tevent.samba.org 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 + 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 - hunspell-dict-es + libtevent + + libtalloc + python + - /usr/share - /usr/share/doc + /usr/lib + + + + libtevent-devel + Development files for libtevent + libtevent için geliştirme dosyaları + + libtevent + libtalloc-devel + + + /usr/include + /usr/lib/pkgconfig 2016-06-09 - 0.0_20081215 + 0.9.25 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-02-17 - 0.0_20081215 + 2015-07-30 + 0.9.25 First release - Kamil Atlı - suvarice@gmail.com + Ertuğrul Erata + ertugrulerata@gmail.com - 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 - - - - - 2016-06-09 - 0.99f_7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-17 - 0.99f_7 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - hunspell-dict-fr - http://dico.savant.free.fr/ + intel-tbb + http://www.threadingbuildingblocks.org/ 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 + library + programming.misc + Intel Threading Building Blocks Library + Intel Threading kitaplığı + Threading Building Blocks (TBB) is a C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance. + https://www.threadingbuildingblocks.org/sites/default/files/software_releases/linux/tbb44_20160128oss_lin.tgz + + install.sh + + programming/misc/intel-tbb/pspec.xml - hunspell-dict-fr + intel-tbb - /usr/share/hunspell + /usr/lib + /usr/share/doc + + + + intel-tbb-devel + Development files for intel-tbb + intel-tbb için geliştirme dosyaları + + intel-tbb + + + /usr/include + + + + + 2016-06-09 + 44_20160128 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-08 + 44_20160128 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 1.14.31 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-07 + 1.14.31 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.5.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-06 + 1.5.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.8.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-25 + 1.8.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + autoconf213 + http://www.gnu.org/software/autoconf/autoconf.html + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + programming.misc + Used to create autoconfiguration files version 2.13 + Used to create autoconfiguration files, Autoconf is an extensible package of m4 macros that produce shell scripts to automatically configure software source code packages. + mirrors://gnu/autoconf/autoconf-2.13.tar.gz + + texinfo + m4 + perl + + + autoconf-2.13-consolidated_fixes-1.patch + + programming/misc/autoconf213/pspec.xml + + + autoconf213 + + texinfo + m4 + + + /usr/bin + /usr/share/doc + /usr/share + /usr/share/info + /usr/share/autoconf + + + + + 2016-03-13 + 2.13 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 2.38.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-05-21 + 2.38.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + physfs + http://icculus.org/physfs/ + + PisiLinux Community + admins@pisilinux.org + + ZLIB + library + programming.misc + Filesystem library + Dosya sistemi kitaplığı + Warstwa abstrakcji plików dla gier + Couche d'abstraction pour les systèmes de fichier, généralement utilisée par les jeux. + Abstraction layer for filesystems. + physfs dosya sistemi katmanı kitaplığıdır. + Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos + PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów. + http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2 + + cmake + zlib + + programming/misc/physfs/pspec.xml + + + physfs + + /usr/lib + /usr/share/doc + + + + physfs-devel + Development files for physfs + physfs için geliştirme dosyaları + + physfs + + + /usr/include + + + + + 2016-06-09 + 2.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-11 + 2.0.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + btyacc + http://www.siber.com/btyacc + + PisiLinux Community + admins@pisilinux.org + + freedist + app:console + programming.misc + Backtracking YACC - modified from Berkeley YACC + This is original Berkeley Yacc modified to better fit production environment (and to have less bugs, too). + http://www.siber.com/btyacc/btyacc-3-0.tar.gz + + btyacc-3.0-includes.patch + btyacc-3.0-makefile.patch + + programming/misc/btyacc/pspec.xml + + + btyacc + + /usr/bin + /usr/share/man /usr/share/doc 2016-06-09 - 2.3.2 + 3.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-01-27 - 2.3.2 + 2014-05-11 + 3.0 + First release + Marcin Bojara + marcin@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.8.0/llvm-3.8.0.src.tar.xz + http://llvm.org/releases/3.8.0/cfe-3.8.0.src.tar.xz + http://llvm.org/releases/3.8.0/clang-tools-extra-3.8.0.src.tar.xz + http://llvm.org/releases/3.8.0/lldb-3.8.0.src.tar.xz + http://llvm.org/releases/3.8.0/compiler-rt-3.8.0.src.tar.xz + + zlib-devel + libxml2-devel + ncurses-devel + ocaml + libffi-devel + groff + swig + python-devel + libedit-devel + cmake + binutils + + programming/build/llvm/pspec.xml + + + llvm + app:console + library + + llvm-libs + libxml2 + libgcc + ncurses + zlib + libffi + + + /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/man + + + 51-llvm.conf + + + + llvm-libs + library + + zlib + libffi + libedit + libgcc + ncurses + + + /usr/lib/libLLVM.* + /usr/lib/LLVMgold.* + /usr/lib/libLTO.* + /usr/lib/bfd-plugins/LLVMgold.so + /usr/share/licenses/llvm-libs/LICENSE + + + + lldb + Next generation, high-performance debugger + + llvm + zlib + libffi + libedit + libgcc + ncurses + python + libxml2 + + + /usr/bin/argdumper + /usr/bin/lldb* + /usr/lib/liblldb + /usr/lib/python2.7/site-packages/readline.so + /usr/lib/python2.7/site-packages/lldb/* + + + + lldb-devel + Development headers lldb + + lldb + + + /usr/include/lldb/* + + + + 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-* + /usr/share/scan* + /usr/libexec/ccc-* + /usr/libexec/c++-* + + + + 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 + /usr/share/clang + + + + 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-32bit + 32-bit shared libraries for llvm + emul32 + emul32 + + zlib-32bit + libffi-32bit + + + llvm + libgcc + libedit + ncurses-32bit + zlib-32bit + libffi-32bit + + + /usr/bin/llvm-config-32 + /usr/lib32 + + + + + 2016-06-09 + 3.8.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 3.8.0 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2016-04-06 + 3.8.0 + First release + Serdar Soytetir + kaptan@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 + + programming/build/ant/pspec.xml + + + ant + + /etc + /usr/share/ + /usr/bin + + + ant.conf + ant.sh + ant.csh + + + + ant-docs + Documentation package for ant build system + + /usr/share/doc + + + + + 2016-06-09 + 1.9.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-25 + 1.9.6 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + ninja + http://martine.github.com/ninja/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + LGPLv2 + app:console + programming.build + Ninja is a small build system with a focus on speed. + Ninja, hız odaklı bir inşa sistemidir. + Ninja is a small build system with a focus on speed. + Ninja is a small build system with a focus on speed. + https://github.com/martine/ninja/archive/v1.6.0.tar.gz + + asciidoc + + + LFS.patch + + programming/build/ninja/pspec.xml + + + ninja + + libgcc + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2016-06-09 + 1.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-25 + 1.6.0 + First release + Vedat Demir + vedat@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 + First release + Stefan Gronewold (groni) + groni@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 + + + + + + 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 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + gcompris + http://gcompris.net/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + game.misc + Full featured educational application for children from 2 to 10 + 2-10 yaş arası çocuklar için eğitici uygulamalar + GCompris is an educational software suite comprising of numerous activities for children aged 2 to 10. Some of the activities are game orientated, but nonetheless still educational. + GCompris, 2-10 yaş arası çocuklar için bir çok etkinliği kapsayan eğitim amaçlı bir yazılım paketidir. Bazı etkinlikler, eğitim amaçlı oyunlardan oluşmaktadır. + http://gcompris.net/download/gcompris-15.10.tar.bz2 + + intltool + gtk2-devel + librsvg-devel + libxml2-devel + glib2-devel + texinfo + texi2html + gstreamer-devel + sqlite-devel + + game/misc/gcompris/pspec.xml + + + gcompris + + atk + gtk2 + cairo + glib2 + pango + sqlite + librsvg + libxml2 + gstreamer + gdk-pixbuf + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + /usr/share/pixmaps + /usr/share/gcompris + /usr/share/applications + /usr/share/locale + + + gcompris-edit.desktop + gcompris.desktop + gcompris-edit.png + gcompris.png + + + + + 2016-02-07 + 15.10 First release Alihan Öztürk alihan@pisilinux.org @@ -30376,92 +22997,1300 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - hunspell-dict-pl - http://www.kurnik.pl/dictionary/ + gfxboot + https://github.com/openSUSE/gfxboot 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 + 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.12.tar.gz + + xmlto + freetype-devel + util-linux + libxslt + lynx + + + productname.patch + no-theme-no-git.patch + + system/boot/gfxboot/pspec.xml - hunspell-dict-pl + gfxboot + + perl-HTML-Parser + freetype + - /usr/share/hunspell + /usr/sbin + /usr/share/gfxboot/bin + /usr/share/gfxboot /usr/share/doc - 2016-06-09 - 20100428 + 2016-06-08 + 4.5.12 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-10-05 - 20100428 + 2016-04-04 + 4.5.12 First release - Alihanh Öztürk + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + plymouth + http://cgit.freedesktop.org/plymouth + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + library + system.boot + Graphical Boot Animation and Logger + Açılış animasyonu ve oturum açma altyapısı + plymouth provides an attractive graphical boot animation in place of the text messages that normally get shown. Text messages are instead redirected to a log file for viewing after boot. + plymouth, sistemin açılışı esnasında estetik ve ilgi çekici bir grafiksel animasyon altyapısı sunan bir uygulamadır. + http://source.pisilinux.org/1.0/plymouth-0.8.8.tar.gz + https://sourceforge.net/projects/pisilinux/files/source/plymouth-theme-pisilinux-0.3.tar.xz + + pisilinux/generate-flist.py + + + kernel-headers + libdrm-devel + libpng-devel + cairo-devel + pango-devel + graphite2-devel + harfbuzz-devel + glib2-devel + gtk2-devel + + + pisilinux/disable-source-code-tracing.patch + pisilinux/adapt-theme-script.patch + pisilinux/add-pisilinux-theme.patch + mageia/plymouth-restore-suspend.patch + fedora/fix-crash.patch + + system/boot/plymouth/pspec.xml + + + plymouth + + libdrm + plymouth-core-libs + plymouth-theme-pisilinux + + + /bin + /sbin + /usr/sbin + /bin/plymouth + /usr/libexec/plymouth + /etc/plymouth + /usr/lib + /lib + /usr/lib/plymouth/text.so + /usr/lib/plymouth/details.so + /usr/lib/plymouth/renderers + /usr/share/pixmaps + /usr/share/plymouth + /usr/share/plymouth/themes + /usr/share/plymouth/themes/details + /usr/share/plymouth/themes/text + /usr/share/doc + /usr/share/man + /var/lib/plymouth + /run/plymouth + /var/spool/plymouth + /usr/lib/tmpfiles.d/plymouth.conf + + + System.Package + + + tmpfiles.conf + pisilinux/boot-duration + pisilinux/initramfs.files + pisilinux/images/white-head.png + fedora/charge.plymouth + + + + plymouth-core-libs + Plymouth core libraries + plymouth-core-libs contains the libply and libply-splash-core libraries used by Plymouth. + + /lib/libply-splash-core.so* + /lib/libply.so* + + + + plymouth-graphics-libs + Plymouth graphics libraries + plymouth-graphics-libs contains the libply-splash-graphics library used by graphics Plymouth splashes. + + plymouth-core-libs + libpng + + + /usr/lib/libply-splash-graphics.so* + + + + plymouth-devel + Development headers and files for plymouth + + plymouth + + + /usr/include + /usr/lib/pkgconfig + + + + plymouth-renderer-x11 + An X11 renderer for debugging purposes + + plymouth-core-libs + cairo + gtk2 + atk + cairo + pango + gdk-pixbuf + fontconfig + + + /usr/lib/plymouth/renderers/x11* + + + + plymouth-utils + Plymouth related utilities + plymouth-utils contains utilities that integrate with Plymouth including a boot log viewing application. + + pango + gtk2 + + + /usr/bin/plymouth-log-viewer + /usr/share/gdm/autostart/LoginWindow/plymouth-log-viewer.desktop + + + + plymouth-plugin-label + Plymouth label plugin + plymouth-plugin-label contains the label control plugin for Plymouth. It provides the ability to render text on graphical boot splashes using pango and cairo. + + cairo + pango + plymouth-core-libs + plymouth-graphics-libs + + + /usr/lib/plymouth/label.so + + + + plymouth-plugin-fade-throbber + Plymouth Fade-Throbber plugin + plymouth-plugin-fade-throbber contains the "Fade-In" boot splash plugin for Plymouth. It features a centered image that fades in and out while other images pulsate around during system boot up. + + plymouth-graphics-libs + plymouth-core-libs + + + /usr/lib/plymouth/fade-throbber.so + + + + plymouth-theme-spinner + Spinner theme for Plymouth + plymouth için Spinner teması + plymouth-theme-spinner contains the "Spinner" boot splash theme for Plymouth. It features a simple theme with a small spinner on a dark background. + + plymouth-plugin-two-step + + + /usr/share/plymouth/themes/spinner + + + + plymouth-theme-fade-in + Fade-in theme for Plymouth + plymouth-theme-fade-in contains the "Fade-In" boot splash theme for Plymouth. It features a centered logo that fades in and out while stars twinkle around the logo during system boot up. + + plymouth-plugin-fade-throbber + + + /usr/share/plymouth/themes/fade-in + + + + plymouth-plugin-throbgress + Plymouth Throbgress plugin + plymouth-plugin-throbgress contains the "throbgress" boot splash plugin for Plymouth. It features a centered logo and animated spinner that spins repeatedly while a progress bar advances at the bottom of the screen. + + plymouth-plugin-label + plymouth-graphics-libs + plymouth-core-libs + + + /usr/lib/plymouth/throbgress.so + + + + plymouth-theme-spinfinity + Plymouth Spinfinity theme + plymouth için Spinfinity teması + plymouth-theme-spinfinity contains the "Spinfinity" boot splash theme for Plymouth. It features a centered logo and animated spinner that spins in the shape of an infinity sign. + + plymouth-plugin-throbgress + + + /usr/share/plymouth/themes/spinfinity + + + + plymouth-plugin-space-flares + Plymouth space-flares plugin + plymouth-plugin-space-flares contains the "space-flares" boot splash plugin for Plymouth. It features a corner image with animated flares. + + plymouth-plugin-label + plymouth-graphics-libs + plymouth-core-libs + + + /usr/lib/plymouth/space-flares.so + + + + plymouth-theme-solar + Plymouth Solar theme + plymouth için Solar teması + plymouth-theme-solar contains the "Solar" boot splash theme for Plymouth. It features a blue flamed sun with animated solar flares. + + plymouth-plugin-space-flares + + + /usr/share/plymouth/themes/solar + + + + plymouth-plugin-two-step + Plymouth Two-Step plugin + plymouth-plugin-two-step contains the "two-step" boot splash plugin for Plymouth. It features a two phased boot process that starts with a progressing animation synced to boot time and finishes with a short, fast one-shot animation. + + plymouth-plugin-label + plymouth-graphics-libs + plymouth-core-libs + + + /usr/lib/plymouth/two-step.so + + + + plymouth-theme-charge + Plymouth Charge plugin + plymouth için Charge teması + plymouth-theme-charge This package contains the "charge" boot splash theme for Plymouth. It features the shadowy hull of a Fedora logo charge up and and finally burst into full form. + + plymouth-plugin-two-step + + + /usr/share/plymouth/themes/charge + + + + plymouth-plugin-script + Plymouth script plugin + plymouth-plugin-script contains "script" boot splash plugin for Plymouth. It features an extensible, scriptable boot splash language that simplifies the process of designing custom boot splash themes. + + plymouth-graphics-libs + plymouth-core-libs + + + /usr/lib/plymouth/script.so + + + + plymouth-theme-script + Plymouth Script theme + plymouth-theme-script contains the "script" boot splash theme for Plymouth. It it is a simple example theme the uses the "script" plugin. + + plymouth-plugin-script + + + /usr/share/plymouth/themes/script + + + + plymouth-theme-pisilinux + Plymouth Pisi Linux theme + plymouth için Pisi Linux teması + plymouth-theme-pisilinux contains a simple but elegant boot theme for Pisi Linux. + + plymouth-plugin-script + + + /usr/share/plymouth/themes/pisilinux + + + + + 2016-06-08 + 0.8.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-21 + 0.8.8 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-21 + 0.8.8 + First release + Alihan Öztürk alihan@pisilinux.org - hunspell-dict-sv - http://dsso.se/ + efivar + https://github.com/vathpela/efivar - PisiLinux Community - admins@pisilinux.org + Aydın Demirel + aydin.demirel@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.40/ooo_swedish_dict_2-40.oxt - office/dictionary/hunspell-dict-sv/pspec.xml + 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.23/efivar-0.23.tar.bz2 + + popt-devel + + + 0001-Workaround-rename-of-linux-nvme.h.patch + efivar-no-static.patch + + system/boot/efivar/pspec.xml - hunspell-dict-sv + efivar + + popt + - /usr/share - /usr/share/doc + /usr/lib + /usr/share/man + /usr/bin + + + + efivar-devel + + /usr/include + /usr/lib/pkgconfig - 2016-06-09 - 2.40 + 2016-06-08 + 0.23 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-02-17 - 1.29 + 2016-03-29 + 0.23 First release Osman Erkan osman.erkan@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 + + + + + 2016-06-08 + 5.01 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-27 + 5.01 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-08 + 0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-08-04 + 0.2 + 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/syslinux-6.03.tar.xz + + nasm + asciidoc + efibootmgr-devel + upx + libutil-linux-devel + + + 0001-Add-install-all-target-to-top-side-of-HAVE_FIRMWARE.patch + 0035-SYSAPPEND-Fix-space-stripping.patch + gcc-fix-alignment.patch + dont-guess-alignment.patch + btrfs-fix.patch + + system/boot/syslinux/pspec.xml + + + syslinux + + mtools + libutil-linux + mtools + efibootmgr + util-linux + dosfstools + gptfdisk + 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 + + + + + 2016-06-08 + 6.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 6.03 + First release + Alihan Öztürk + alihan@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ç + https://github.com/rhinstaller/efibootmgr/archive/efibootmgr-0.12.tar.gz + + pciutils-devel + zlib-devel + efivar + efivar-devel + + system/boot/efibootmgr/pspec.xml + + + efibootmgr + + efivar + + + /usr/sbin + /usr/share/man + /usr/lib/* + + + + efibootmgr-devel + + /usr/include + + + + + 2016-06-08 + 0.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-01 + 0.12 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + calamares-theme-pisilinux + http://www.pisilinux.org + + Pisi Linux Community + admin@pisilinux.org + + GPLv2 + data + system.installer + PiSi Linux theme files for Calamares + Calamares sistem yükleyici için Pisi Linux tema dosyaları + calamares-theme includes PiSi Linux theme files for Calamares(Distribution-independent installer framework). + calamares-theme Calamares (Dağıtım bağımsız sistem yükleyici) projesi için Pisi Linux tema dosyaları içerir. + https://github.com/PisiLinuxNew/calamares-pisilinux/archive/0.1a.tar.gz + system/installer/calamares-theme-pisilinux/pspec.xml + + + calamares-theme-pisilinux + + /usr/share/calamares + + + + + 2016-06-08 + 0.1a + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-09 + 0.1a + First release + Pisi Linux Community + admin@pisilinux.org + + + + + + Calamares + http://pisilinux.org + + Ergün Salman + Poyraz76@pisilinux.org + + LGPLv2 + system.installer + A distribution independent installer framework + Dağıtım bağımsız sistem yükleyici + Calamares is a distribution-independent system installer, with an advanced partitioning feature for both manual and automated partitioning operations. + Calamares dağıtım bağımsız bir sistem yükleyicidir. + https://github.com/calamares/calamares/releases/download/v2.2/calamares-2.2.tar.gz + + gettext-devel + yaml-cpp + boost-devel + boost-python3 + ki18n-devel + kcoreaddons + solid-devel + parted-devel + qt5-linguist + qt5-svg-devel + udisks2-devel + libyaml-devel + python3-devel + kconfig-devel + qt5-base-devel + polkit-qt-devel + qt5-webkit-devel + libatasmart-devel + kcoreaddons-devel + qt5-designer-devel + qt5-assistant-devel + libutil-linux-devel + qt5-declarative-devel + libxkbfile-devel + e2fsprogs-devel + squashfs-tools + efibootmgr-devel + rsync + gptfdisk + extra-cmake-modules + kpmcore-devel + kiconthemes-devel + kio-devel + kservice-devel + kconfig-devel + kparts-devel + + + pisi_locale.patch + pisi_set_hostname.patch + mudur_module.patch + no_fsck_and_pymouth.patch + + system/installer/Calamares/pspec.xml + + + Calamares + + libgcc + boost + boost-python3 + python3 + parted + solid + ki18n + rsync + kconfig + kcoreaddons + qt5-svg + qt5-webkit + libatasmart + qt5-declarative + rsync + ntfs-3g + qt5-base + gptfdisk + e2fsprogs + dmidecode + efibootmgr + libxkbfile + dosfstools + libutil-linux + util-linux + kpmcore + partitionmanager + kiconthemes + kio + kservice + kconfig + kparts + calamares-theme-pisilinux + + + /usr/bin + /usr/lib + /usr/share/* + /usr/lib/calamares/ + /usr/include/libcalamares/* + /usr/lib/cmake/Calamares/ + /usr/lib/calamares/modules/* + /usr/libexec/ + /etc/languages + + + calamares.desktop + languages + + + + + 2016-06-08 + 2.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-03 + 2.2 + First Release. + Ergün Salman + Poyraz76@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.2/ConsoleKit2-1.0.2.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 + + + + + 2016-06-08 + 1.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 1.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + opensp + http://openjade.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + office.docbook + A SGML parsing and entity management toolkit + SGML ayrıştırma araç seti + OpenSP is a free, object-oriented toolkit for Standard Generalized Markup Language (SGML) parsing and entity management maintained by the OpenJade project. + OpenSP SGML sözdizimsel ayrıştırma ve içerik yönetimi için nesne-odaklı bir araç setidir ve OpenJade projesinin bir parçasıdır. + mirrors://sourceforge/openjade/OpenSP-1.5.2.tar.gz + + docbook-xml + libgcc + + + opensp-1.5-gcc34.patch + opensp-sigsegv.patch + + office/docbook/opensp/pspec.xml + + + opensp + + libgcc + + + /usr/bin + /usr/share/doc/opensp + /usr/share/man + /usr/lib + /usr/share/locale + /usr/share/sgml + + + + opensp-devel + Development files for opensp + opensp için geliştirme dosyaları + + opensp + + + /usr/include + + + + + 2016-06-09 + 1.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 1.5.2 + 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 + + + + + 2016-06-09 + 4.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 4.5 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 8.6.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 8.6.9 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 2.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 2.0.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + openjade + http://openjade.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + office.docbook + An implementation of DSSSL + Bir DSSSL uyarlaması + OpenJade is an implementation of Document Style Semantics and Specification Language (DSSSL), a style language to format Standard Generalized Markup Language (SGML) or Extensible Markup Language (XML) documents. + OpenJade SGML ya da XML belgelerinin biçimlendirilmesine yarayan bir biçem lisanı olan DSSSL'nin bir uyarlamasıdır. + http://downloads.sourceforge.net/openjade/openjade-1.3.2.tar.gz + + sgml-common + opensp-devel + libgcc + + + openjade-1.3.2-ldflags.patch + openjade-1.3.2-respect-ldflags.patch + openjade-1.3.2-msggen.pl.patch + + office/docbook/openjade/pspec.xml + + + openjade + + sgml-common + opensp + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc/openjade + /usr/share/sgml + + + System.Package + + + openjade-1.3.2.dsssl-catalog + openjade-1.3.2.catalog + + + + + 2016-06-09 + 1.3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 1.3.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + homebank + http://homebank.free.fr + + Stefan Gronewold (groni) + groni@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 + + 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 + + office/homebank/pspec.xml + + + homebank + + cairo + libofx + pango + gdk-pixbuf + gtk3 + glib2 + + + /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 + + /usr/share/homebank/datas + /usr/share/mime-info + + + + + 2016-06-09 + 5.0.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-03 + 5.0.5 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + aspell @@ -30695,779 +24524,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - - - 2016-06-09 - 0.4.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-03-05 - 0.4.7 - First release - Stefan Gronewold(groni) - groni@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 - - - poppler - libgcc - 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 - - - poppler-32bit - libgcc - glib2-32bit - cairo-32bit - freetype-32bit - - - /usr/lib32/libpoppler-glib.so* - - - - - 2016-06-09 - 0.34.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 0.34.0 - Release bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-05-01 - 0.34.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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. - https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs919/ghostscript-9.19.tar.gz - - 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 - - - fedora/ghostscript-sys-zlib.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 - zlib-32bit - tiff-32bit - lcms2-32bit - libXt-32bit - libX11-32bit - libpng-32bit - freetype-32bit - fontconfig-32bit - - - /usr/lib32 - - - - - 2016-06-09 - 9.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-01 - 9.19 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-01-10 - 9.15 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 2.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 2.0.2 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - openjade - http://openjade.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - office.docbook - An implementation of DSSSL - Bir DSSSL uyarlaması - OpenJade is an implementation of Document Style Semantics and Specification Language (DSSSL), a style language to format Standard Generalized Markup Language (SGML) or Extensible Markup Language (XML) documents. - OpenJade SGML ya da XML belgelerinin biçimlendirilmesine yarayan bir biçem lisanı olan DSSSL'nin bir uyarlamasıdır. - http://downloads.sourceforge.net/openjade/openjade-1.3.2.tar.gz - - sgml-common - opensp-devel - libgcc - - - openjade-1.3.2-ldflags.patch - openjade-1.3.2-respect-ldflags.patch - openjade-1.3.2-msggen.pl.patch - - office/docbook/openjade/pspec.xml - - - openjade - - sgml-common - opensp - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc/openjade - /usr/share/sgml - - - System.Package - - - openjade-1.3.2.dsssl-catalog - openjade-1.3.2.catalog - - - - - 2016-06-09 - 1.3.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 1.3.2 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 8.6.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 8.6.9 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - opensp - http://openjade.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - office.docbook - A SGML parsing and entity management toolkit - SGML ayrıştırma araç seti - OpenSP is a free, object-oriented toolkit for Standard Generalized Markup Language (SGML) parsing and entity management maintained by the OpenJade project. - OpenSP SGML sözdizimsel ayrıştırma ve içerik yönetimi için nesne-odaklı bir araç setidir ve OpenJade projesinin bir parçasıdır. - mirrors://sourceforge/openjade/OpenSP-1.5.2.tar.gz - - docbook-xml - libgcc - - - opensp-1.5-gcc34.patch - opensp-sigsegv.patch - - office/docbook/opensp/pspec.xml - - - opensp - - libgcc - - - /usr/bin - /usr/share/doc/opensp - /usr/share/man - /usr/lib - /usr/share/locale - /usr/share/sgml - - - - opensp-devel - Development files for opensp - opensp için geliştirme dosyaları - - opensp - - - /usr/include - - - - - 2016-06-09 - 1.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 1.5.2 - 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 - - - - - 2016-06-09 - 4.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 4.5 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - homebank - http://homebank.free.fr - - Stefan Gronewold (groni) - groni@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 - - 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 - - office/homebank/pspec.xml - - - homebank - - cairo - libofx - pango - gdk-pixbuf - gtk3 - glib2 - - - /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 - - /usr/share/homebank/datas - /usr/share/mime-info - - - - - 2016-06-09 - 5.0.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-03 - 5.0.5 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - libreoffice @@ -34396,67 +27452,87 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libmspub - http://www.freedesktop.org/wiki/Software/libmspub + hunspell-dict-es + http://es.openoffice.org/programa/diccionario.html PisiLinux Community admins@pisilinux.org - GPLv2 - LGPLv2.1 - MPLv1.1 - app:gui - editor - Library parsing the Microsoft Publisher documents - Libmspub is library providing ability to interpret and import Microsoft Publisher content into various applications. You can find it being used in libreoffice. - http://dev-www.libreoffice.org/src/libmspub-0.1.2.tar.bz2 - - boost-devel - doxygen - help2man - icu4c-devel - librevenge-devel - zlib-devel - - editor/libmspub/pspec.xml + 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 - libmspub - - icu4c - librevenge - + hunspell-dict-es - /usr/bin + /usr/share /usr/share/doc - /usr/lib - - - - libmspub-devel - libmspub için geliştirme dosyaları - libmspub için geliştirme dosyaları - - icu4c-devel - librevenge-devel - libmspub - - - /usr/include - /usr/lib/pkgconfig - 2016-06-10 - 0.1.2 + 2016-06-09 + 0.0_20081215 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-24 - 0.1.2 + 2014-02-17 + 0.0_20081215 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 20150704 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-05 + 20150704 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -34465,143 +27541,563 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - nano - http://www.nano-editor.org/ + hunspell-dict-pl + http://www.kurnik.pl/dictionary/ 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+ + 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 - nano - - ncurses - file - + hunspell-dict-pl - /etc - /usr/share/locale - /usr/share/doc/nano - /usr/share/man - /usr/share/info - /usr/share/nano - /usr/bin - /bin + /usr/share/hunspell + /usr/share/doc - 2016-06-10 - 2.5.0 + 2016-06-09 + 20100428 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-02 - 2.5.0 + 2015-10-05 + 20100428 First release - Kamil Atlı - suvari@pisilinux.org + Alihanh Öztürk + alihan@pisilinux.org - medit - http://mooedit.sourceforge.net/ + hunspell-dict-ru + ftp://ftp.vsu.ru/mirrors/scon155.phys.msu.su/pub/russian/ispell/myspell - Stefan Gronewold(groni) - groni@pisilinux.org + PisiLinux Community + admins@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 - - 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 - - - desktop-tr.patch - fix_help_dir.patch - - editor/medit/pspec.xml + 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 - medit + hunspell-dict-ru + + /usr/share + /usr/share/doc + + + + + 2016-06-09 + 0.99f_7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-17 + 0.99f_7 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 2.3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-27 + 2.3.2 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-03 + 1.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-11 + 0.0_20131216 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-26 + 0.0_20131216 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-26 + 2.4 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 2015.05.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-05 + 2015.05.18 + First release + Ayhan Yalcinsoy + ayhanyalcinsoy@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.40/ooo_swedish_dict_2-40.oxt + office/dictionary/hunspell-dict-sv/pspec.xml + + + hunspell-dict-sv + + /usr/share + /usr/share/doc + + + + + 2016-06-09 + 2.40 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-17 + 1.29 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 0.0_20090319 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-26 + 0.0_20090319 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 2.10g + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-05 + 2.10g + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + gettext-devel + intltool + gtk-doc + + office/misc/enca/pspec.xml + + + enca - gtk2 - atk - glib2 - libX11 - libgcc - python - libxml2 - cairo - pango - libSM - libICE - gdk-pixbuf + recode /usr/bin /usr/lib - /usr/share/locale - /usr/share/applications - /usr/share/icons/hicolor - /usr/share/medit - /usr/share/pixmaps - /usr/share/doc + /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-06-15 - 1.2.0 + 2016-06-09 + 1.16 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-05-08 - 1.2.0 + 2016-01-01 + 1.16 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-09 + 0.40 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-20 + 0.40 First release Stefan Gronewold(groni) groni@pisilinux.org @@ -34610,122 +28106,246 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - vim - http://www.vim.org/ + djvu + http://djvu.sourceforge.net 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 + 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 - gpm - ctags - python-devel - acl-devel - gtk2-devel - libSM-devel + libjpeg-turbo-devel + tiff-devel + xdg-utils libXt-devel - pango-devel - libICE-devel - ruby-devel - ncurses-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 + no-pthread.diff + djvulibre-3.5.22-cdefs.patch - editor/vi/vim/pspec.xml + office/misc/djvu/pspec.xml - vim - app:console + djvu - gpm - ctags - perl - acl - ncurses + shared-mime-info + libjpeg-turbo + tiff - /usr/bin/vi* - /usr/bin/rvi* - /usr/bin/ex - /usr/bin/xxd - /bin - /usr/share/vim - /usr/share/man + /usr/bin + /usr/lib + /usr/share/icons + /usr/share/applications + /usr/share/djvu + /usr/share/mime + /opt/netscape /usr/share/doc - /etc/vim + /usr/share/man - - 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 + djvu-devel + Development files for djvu + djvu için geliştirme dosyaları - acl - perl - glib2 - libX11 - ncurses - gtk2 - gpm - libSM - libXt - pango - libICE - vim - gdk-pixbuf + djvu - /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/include + /usr/lib/pkgconfig - - gvimtutor - gvim.xpm - gvim.desktop - - 2016-06-10 - 0.7.4.909 + 2016-06-09 + 3.5.27 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-11-05 - 0.7.4.909 + 2015-11-02 + 3.5.27 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libpagemaker + https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + MPL2 + library + office.misc + a library that parses the file format of Aldus/Adobe PageMaker documents + a library that parses the file format of Aldus/Adobe PageMaker documents + libpagemaker + http://dev-www.libreoffice.org/src/libpagemaker/libpagemaker-0.0.2.tar.gz + + boost-devel + doxygen + help2man + librevenge-devel + + office/misc/libpagemaker/pspec.xml + + + libpagemaker + + libgcc + librevenge + + + /usr/bin + /usr/share + /usr/lib/libpagemaker-* + /usr/share/doc + + + + libpagemaker-devel + + librevenge-devel + libpagemaker + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 0.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-24 + 0.0.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 1.5.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.5.6 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 2.8.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-12 + 2.8.22 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -34734,419 +28354,4721 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - emacs-php-mode - http://php-mode.sourceforge.net + libvisio + http://www.ohloh.net/p/libvisio 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 + 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.5.tar.xz - emacs + icu4c-devel + librevenge-devel + zlib-devel + libxml2-devel + boost-devel + gperf + cppunit-devel - editor/emacs/emacs-php-mode/pspec.xml + office/misc/libvisio/pspec.xml - emacs-php-mode + libvisio - emacs + cppunit + icu4c + librevenge + libgcc + libxml2 - /etc - /usr/share/emacs + /usr/lib + /usr/bin + /usr/share/doc/libvisio + + + + libvisio-devel + + icu4c-devel + librevenge-devel + zlib-devel + libxml2-devel + libvisio + + + /usr/include/ + /usr/lib/pkgconfig + + + + + 2016-06-09 + 0.1.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-03 + 0.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + scribus + http://www.scribus.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + office.misc + Desktop Publishing (DTP) and Layout program + Masaüstü yayıncılık uygulaması + Scribus is an opensource desktop publishing application with features like CMYK colorspace and PDF output. + Scribus, açık kaynak kodlu bir DTP (masaüstü yayıncılık) programıdır. Renk ayrımından PDF dönüşümlerine, PDF form elementleri yaratmadan Preflight Check gibi işlemlere kadar, profesyonel bir DTP paketinde bulabileceğiniz her fonksiyona sahiptir. + scribusicon + http://sourceforge.net/projects/scribus/files/scribus-devel/1.5.2/scribus-1.5.2.tar.xz + + cmake + cups-devel + desktop-file-utils + lcms2-devel + libart_lgpl-devel + libjpeg-turbo-devel + libpng-devel + tiff-devel + libxml2-devel + openssl-devel + python-devel + ghostscript-devel + gnutls-devel + poppler-devel + qt5-base-devel + qt5-webkit-devel + qt5-location-devel + qt5-linguist + zlib-devel + freetype-devel + gnutls-devel + cairo-devel + hunspell-devel + boost-devel + libwpg-devel + podofo-devel + libvisio-devel + libcdr-devel + GraphicsMagick-devel + libpagemaker-devel + + + scribus-standard-font-paths.patch + PisiLinux-default-font.patch + PisiLinux-correctly_link_to_libxml2.patch + + office/misc/scribus/pspec.xml + + + scribus + + cups + tiff + zlib + cairo + lcms2 + libgcc + podofo + python + libxml2 + poppler + freetype + hunspell + qt5-base + fontconfig + librevenge + qt5-webkit + libjpeg-turbo + qt5-declarative + libpagemaker + libcdr + GraphicsMagick + libvisio + libmspub + + + /usr/bin + /usr/lib + /usr/share + + + + scribus-docs + Documentation files for scribus + scribus için belgelendirme dosyaları + + /usr/share/doc/scribus - - 80-php-mode.el - 2016-06-10 - 1.17.0 + 1.5.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-02 - 1.17.0 + 2016-05-18 + 1.5.2 First release - Ilker Manap - ilkermanap@gmail.com + Stefan Gronewold + groni@pisilinux.org - emacs-color-theme - http://www.emacswiki.org/cgi-bin/wiki?ColorTheme + recode + http://www.gnu.org/software/recode/ 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 - - - emacs-color-theme - - emacs - - - /usr/share/doc - /etc/emacs/site-lisp - /usr/share/emacs/site-lisp/color-theme - - - 80-color-theme.el - - - - - 2016-06-09 - 6.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-24 - 6.6.0 - First release - Ilker Manap - ilkermanap@gmail.com - - - - - - 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/share/doc - /usr/share/emacs - /etc/emacs/site-lisp - - - 80-pymacs.el - - - - - 2016-06-09 - 0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-24 - 0.25 - First release - Ilker Manap - ilkermanap@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 6.2.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-05 - 6.2.1 - First release - Ilker Manap - ilkermanap@gmail.com - - - - - - 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. - mirrors://sourceforge/mmm-mode/mmm-mode-0.5.4.tar.gz - - emacs - gtk2-devel - - 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 - - - - - 2016-06-09 - 0.5.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-02 - 0.5.4 - First release - Ilker Manap - ilkermanap@gmail.com - - - - - - 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 + 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 - 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 - gnutls-devel - imagemagick-devel + gettext + texinfo - editor/emacs/emacs /pspec.xml + + 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 - emacs + 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ı - gpm - tiff - gtk2 - zlib - glib2 - libX11 - libpng - ncurses - freetype - libSM - libXft - libICE - giflib - libXpm - gnutls - librsvg - alsa-lib - gdk-pixbuf - fontconfig - libXrender - imagemagick - libjpeg-turbo + recode - /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/include - - System.PackageHandler - - - site-start.el - pisi-spec.rnc - 80-nxml-mode.el - emacs.desktop - 2016-06-09 - 24.5 + 3.6 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-02 - 24.5 + 2016-01-01 + 3.6 First release - Ilker Manap - ilkermanap@gmail.com + Stefan Gronewold + groni@pisilinux.org - bluefish - http://bluefish.openoffice.nl/index.html + texi2html + http://savannah.nongnu.org/projects/texi2html/ - Pisi Linux Admins - admin@pisilinux.org + PisiLinux Community + admins@pisilinux.org - 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 - - enchant - glib2-devel - gtk2-devel - libxml2-devel - intltool - gettext-devel - - editor/bluefish/pspec.xml + 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 - Bluefish - - atk - desktop-file-utils - cairo - gdk-pixbuf - gtk3 - pango - + texi2html /usr/bin - /usr/lib - /usr/share - /usr/share/doc + /usr/share/info + /usr/share/doc/texi2html + /usr/share/man/man1 + /usr/share/texi2html + /usr/share/texinfo /usr/share/locale 2016-06-09 - 2.2.7 + 5.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-10-19 - 2.2.7 + 2014-05-20 + 5.0 + First release + Serdar Soytetir + kaptan@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.4.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 + + + + + 2016-06-11 + 0.0.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-06 + 0.0.1 + First release + PisiLinux Community + 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 + + + + + 2016-06-09 + 0.9.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-06 + 0.9.10 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 0.4.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-04 + 0.4.14 First release Stefan Gronewold (groni) groni@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.11.src.tar.gz + + cmake + + office/misc/doxygen/pspec.xml + + + doxygen + + libgcc + + + /usr/share/doc + /usr/bin/doxygen + /usr/share/man/man1/doxygen.1 + + + + + 2016-06-09 + 1.8.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-24 + 1.8.11 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 7.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 7.3 + 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 + + + + + 2016-06-09 + 0.7.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-20 + 0.7.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 3.53 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-21 + 3.53 + First release + Vedat Demir + vedat@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 + + + + + 2016-06-09 + 0.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-26 + 0.11 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + podofo + http://podofo.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + app:console + office.misc + A library to work with the PDF file format + PDF dosya biçimiyle çalışmak için bir kütüphane + Biblioteka do obsługi PDF-ów + The PoDoFo library is a free, portable C++ library which includes classes to parse PDF files and modify their contents into memory. The changes can be written back to disk easily. The parser can also be used to extract information from a PDF file (for example the parser could be used in a PDF viewer). Besides parsing PoDoFo includes also very simple classes to create your own PDF files. All classes are documented so it is easy to start writing your own application using PoDoFo. + podofo, PDF dosyalarını ayıklamak ve düzenlemek için geliştirilmiş, ücretsiz bir C++ kütüphanesidir. + mirrors://sourceforge/podofo/podofo-0.9.3.tar.gz + + cmake + zlib-devel + libjpeg-turbo-devel + tiff-devel + libpng-devel + freetype-devel + fontconfig-devel + lua51-devel + cppunit-devel + libidn-devel + boost-devel + openssl-devel + + office/misc/podofo/pspec.xml + + + podofo + + tiff + zlib + lua51 + libgcc + libidn + libpng + openssl + freetype + fontconfig + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + podofo-devel + Development files for podofo + podofo için geliştirme dosyaları + + podofo + boost-devel + + + /usr/include + + + + + 2016-06-09 + 0.9.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-30 + 0.9.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + reverseDependencyUpdate + + + + + + + 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 + + + + + 2016-06-09 + 0.2.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-22 + 0.2.2 + First release + Stefan Gronewold(groni) + groni@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-6.0.0.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 + + + + + 2016-06-09 + 6.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 6.0.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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/ + + + + + 2016-06-09 + 1.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-17 + 1.2.4 + First release + Serdar Soytetir + kaptan@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 + + + poppler + libgcc + 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 + + + poppler-32bit + libgcc + glib2-32bit + cairo-32bit + freetype-32bit + + + /usr/lib32/libpoppler-glib.so* + + + + + 2016-06-09 + 0.34.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 0.34.0 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-05-01 + 0.34.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.4.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-03-05 + 0.4.7 + First release + Stefan Gronewold(groni) + groni@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. + https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs919/ghostscript-9.19.tar.gz + + 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 + + + fedora/ghostscript-sys-zlib.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 + zlib-32bit + tiff-32bit + lcms2-32bit + libXt-32bit + libX11-32bit + libpng-32bit + freetype-32bit + fontconfig-32bit + + + /usr/lib32 + + + + + 2016-06-09 + 9.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-01 + 9.19 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-01-10 + 9.15 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + module-nvidia-current + http://www.nvidia.com + + Marcin Bojara + marcin@pisilinux.org + + NVIDIA + kernel.drivers + NVIDIA drivers for GeForce 6xxx and newer GPUs + GeForce 6xxx ve daha yeni NVIDIA ekran kartları için sürücüler + Controladores nVIDIA de kernel y glx para tarjetas NV3 o mejor (Geforce FX o mejor) + NVIDIA graphics drivers provide optimized 2D/3D performance. + NVIDIA grafik sürücüleri daha iyi 2B/3B başarımı sağlar. + Controladores de kernel nVIDIA y glx para rendimiento optimizado 2d/3d en Linux (Para NV3X o mejor). + ftp://download.nvidia.com/XFree86/Linux-x86/361.28/NVIDIA-Linux-x86-361.28.run + ftp://download.nvidia.com/XFree86/Linux-x86_64/361.28/NVIDIA-Linux-x86_64-361.28.run + + kernel-module-headers + libX11-devel + gtk2-devel + gtk3-devel + + kernel/drivers/module-nvidia-current/pspec.xml + + + module-nvidia-current + Kernel module for current NVIDIA graphics driver releases + Güncel NVIDIA grafik sürücüleri için çekirdek modülü + driver + + noDelta + + + kernel + + + /lib/modules + /etc/modprobe.d + + + modprobe.conf + + + + nvidia-settings + Settings for nvidia-current kernel driver + app:gui + hardware.graphics + + atk + gtk2 + gtk3 + cairo + glib2 + pango + libX11 + libXext + gdk-pixbuf + module-nvidia-current + + + /usr/bin/nvidia-settings + /usr/share/man/man1/nvidia-settings.1 + /usr/lib/libnvidia-gtk* + /usr/share/applications + /usr/share/pixmaps + /usr/share/nvidia + + + nvidia-settings.desktop + + + + nvidia-xconfig + Xconfig file for nvidia-current kernel driver + app:console + hardware.graphics + + module-nvidia-current + + + /usr/bin/nvidia-xconfig + /usr/share/man/man1/nvidia-xconfig.1 + + + + xorg-video-nvidia-current + Güncel NVIDIA userspace sürücüleri ve ikili dosyaları + driver + x11.driver + + noDelta + + + libXext + libX11 + mesa + xorg-server + module-nvidia-current + + + /etc/OpenCL + /usr/bin + /usr/lib + /usr/share/X11 + /usr/share/nvidia-current + /usr/share/doc + /usr/share/man + + + System.Package + + + + xorg-video-nvidia-current-32bit + 32-bit shared libraries for xorg-video-nvidia-current + xorg-video-nvidia-current için 32-bit paylaşımlı kitaplıklar + emul32 + + noDelta + + emul32 + + libvdpau-32bit + + + zlib-32bit + mesa-32bit + libX11-32bit + libXext-32bit + xorg-video-nvidia-current + + + /usr/lib32 + /usr/share/nvidia-current/32bit-ld.so.conf + + + System.Package + + + + + 2016-04-30 + 361.28 + Rebuild for new kernel + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-06 + 361.28 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + module-nvidia304 + http://www.nvidia.com + + PisiLinux Community + admins@pisilinux.org + + NVIDIA + driver + kernel.drivers + NVIDIA drivers for GeForce 5-7 series GPUs + NVIDIA GeForce 6-7 serisi ekran kartları için grafik sürücüleri + Controladores nVIDIA de kernel y glx para tarjetas NV3 o mejor (Geforce FX o mejor) + NVIDIA graphics drivers provide optimized 2D/3D performance. + NVIDIA grafik sürücüleri daha iyi 2B/3B başarımı sağlar. + Controladores de kernel nVIDIA y glx para rendimiento optimizado 2d/3d en Linux (Para NV3X o mejor). + http://http.download.nvidia.com/XFree86/Linux-x86/304.131/NVIDIA-Linux-x86-304.131.run + http://http.download.nvidia.com/XFree86/Linux-x86_64/304.131/NVIDIA-Linux-x86_64-304.131.run + + kernel-module-headers + + kernel/drivers/module-nvidia304/pspec.xml + + + module-nvidia304 + Kernel module for NVIDIA driver 304.xx releases + NVIDIA sürücüsü 304.xx sürümleri için çekirdek modülü + + noDelta + + + kernel + + + /lib/modules + + + + xorg-video-nvidia304 + x11.driver + + noDelta + + + module-nvidia304 + libXext + xorg-server + zlib + libX11 + + + /etc/OpenCL + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + xorg-video-nvidia-current + + + System.Package + + + + + 2016-04-30 + 304.131 + Rebuild for new kernel + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-03-06 + 304.131 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.201.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 + 4.4-manjaro-xstate.patch + + + kernel-module-headers + kernel + + 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 + + + xorg-video-fglrx + libXext-32bit + libX11-32bit + mesa-32bit + libgcc + + + /usr/lib32 + + + xorg-video-fglrx-legacy-32bit + + + System.Package + + + + + 2016-03-06 + 15.201 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + zlib-32bit + libX11-32bit + libXext-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 + + + + + 2016-04-30 + 340.96 + Rebuild for new kernel + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-03-06 + 340.96 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + perf + http://www.kernel.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:gui + kernel.tools + Performance analyser tool that makes full use of the Linux performance counter subsystem + perf is a new tool which is used to optimize, validate and measure applications, workloads or the full system through the Linux performance counter subsystem. + https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.gz + + libunwind-devel + audit-devel + xz-devel + gtk2-devel + unifdef + elfutils + diffutils + newt-devel + xmlto + asciidoc + pciutils-devel + numactl-devel + python-devel + slang-devel + glib2-devel + zlib-devel + perl + util-linux + libxslt + + + patches/linux/patch-4.4.8.xz + + kernel/tools/perf/pspec.xml + + + perf + + audit + xz + newt + elfutils + gtk2 + numactl + libunwind + python + slang + glib2 + zlib + perl + + + /etc + /usr/bin + /usr/lib + /usr/libexec + /usr/include + /usr/share/man/ + /usr/share/perf-core + + + + + 2016-05-02 + 4.4.8 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-03-06 + 4.4.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-15 + 4.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-30 + 4.2.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-08 + 0.9.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 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. + http://mirrors.syringanetworks.net/mariadb/mariadb-10.1.10/source/mariadb-10.1.10.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 + bzip2 + libgcc + libpcre + libxml2 + openssl + libaio + unixODBC + + + /usr/bin/mysql_config + /usr/include + /usr/lib/libmysqlclient.so + /usr/lib/libmysqlclient.so.18 + /usr/lib/libmysqlclient.so.18.0.0 + /usr/lib/libmysqlclient_r.so + /usr/lib/libmysqlclient_r.so.18 + /usr/lib/libmysqlclient_r.so.18.0.0 + /usr/lib/libmysqld.a + /usr/lib/libmysqlclient_r.a + /usr/lib/libmysqlclient.a + /usr/lib/libmysqld.so + /usr/lib/libmysqld.so.18 + /usr/lib/libmysqlservices.a + + + mysql-lib + + + + mariadb-client + MariaDB client libraries + MariaDB istemci uygulamaları + app:console + + mariadb-lib + libaio + zlib + libgcc + libpcre + ncurses + openssl + + + /usr/bin/mysql + /usr/bin/mysqladmin + /usr/bin/mysqlcheck + /usr/bin/mysqldump + /usr/bin/mysqlimport + /usr/bin/mysqlshow + /usr/bin/mysqlslap + + + mysql-client + + + + mariadb-server + MariaDB server and releated files + MariaDB sunucusu ve ilgili dosyalar + service + + mariadb-lib + mariadb-client + zlib + libgcc + openssl + libxml2 + unixODBC + + + /etc + /usr/bin/aria_chk + /usr/bin/aria_dump_log + /usr/bin/aria_ftdump + /usr/bin/aria_pack + /usr/bin/aria_read_log + /usr/bin/innochecksum + /usr/bin/msql2mysql + /usr/bin/my_print_defaults + /usr/bin/myisam_ftdump + /usr/bin/myisamchk + /usr/bin/myisamlog + /usr/bin/myisampack + /usr/bin/mysql_client_test + /usr/bin/mysql_convert_table_format + /usr/bin/mysql_embedded + /usr/bin/mysql_client_test_embedded + /usr/bin/mysqltest_embedded + /usr/bin/mysql_find_rows + /usr/bin/mysql_fix_extensions + /usr/bin/mysql_install_db + /usr/bin/mysql_plugin + /usr/bin/mysql_secure_installation + /usr/bin/mysql_setpermission + /usr/bin/mysql_tzinfo_to_sql + /usr/bin/mysql_upgrade + /usr/bin/mysql_waitpid + /usr/bin/mysql_zap + /usr/bin/mysqlaccess + /usr/bin/mysqlbinlog + /usr/bin/mysqlbug + /usr/bin/mysqld + /usr/bin/mysqld-post + /usr/bin/mysqld_multi + /usr/bin/mysqld_safe + /usr/bin/mysqldumpslow + /usr/bin/mysqlhotcopy + /usr/bin/mysqltest + /usr/bin/perror + /usr/bin/replace + /usr/bin/resolve_stack_dump + /usr/bin/resolveip + /usr/bin/tokuft_logprint + /usr/bin/tokuftdump + /usr/bin/wsrep_sst_common + /usr/bin/wsrep_sst_mysqldump + /usr/bin/wsrep_sst_rsync + /usr/bin/wsrep_sst_xtrabackup + /usr/bin/wsrep_sst_xtrabackup-v2 + /usr/bin/mytop + /usr/lib/mysql/plugin + /usr/share/mysql + /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 + + + + + 2016-06-08 + 10.1.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-24 + 10.1.10 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-08 + 2.5.4.26856 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-03 + 2.5.4.26856 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-08 + 1.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-30 + 1.3.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-08 + 9.3.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-03 + 9.3.9 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + sqlcipher + https://www.zetetic.net/sqlcipher/ + + Alihan Öztürk + alihan@pisilinux.org + + BSD + data + server.database + SQLite extension that provides transparent 256-bit AES encryption of database files + SQLCipher is an SQLite extension that provides transparent 256-bit AES encryption of database files. Pages are encrypted before being written to disk and are decrypted when read back. Due to the small footprint and great performance it’s ideal for protecting embedded application databases and is well suited for mobile development. + https://github.com/sqlcipher/sqlcipher/archive/v3.3.1.tar.gz + + readline-devel + tcl-devel + openssl-devel + sqlite-devel + ncurses-devel + + server/database/sqlcipher/pspec.xml + + + sqlcipher + SQLite extension that provides transparent 256-bit AES encryption of database files. + + openssl + readline + sqlite + tcl + ncurses + + + /usr/bin + /usr/lib/tcl8.6 + /usr/lib/lib* + /usr/share/doc + + + + sqlcipher-devel + Development files for sqlcipher. + + sqlcipher + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-08 + 3.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-22 + 3.3.1 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + postfix + http://www.postfix.com/ + + PisiLinux Community + admins@pisilinux.org + + IPL-1 + service + server + A fast and secure drop-in replacement for sendmail + Hızlı ve güvenli bir e-posta sunucusu + Postfix is Wietse Venema's mailer that started life as an alternative to the widely-used Sendmail program. + Postfix, Wietse Venema tarafından yazılmış, sendmail a alternatif güçlü bir e-posta sunucusudur. + http://de.postfix.org/ftpmirror/official/postfix-3.1.0.tar.gz + + db-devel + libpcre-devel + openssl-devel + mariadb-lib + cyrus-sasl-devel + openldap-client + postgresql-lib + mit-kerberos + + + postfix-large-fs.patch + + server/postfix/pspec.xml + + + postfix + + db + pam + zlib + libpcre + openssl + mariadb-lib + cyrus-sasl + bind-libs + openldap-client + postgresql-lib + mit-kerberos + comar-api + + + /etc + /usr/bin + /usr/sbin + /usr/lib + /var + /usr/share/man + /usr/share/doc/postfix/AAAREADME + /usr/share/doc/postfix/COMPATIBILITY + /usr/share/doc/postfix/HISTORY + /usr/share/doc/postfix/LICENSE + /usr/share/doc/postfix/RELEASE_NOTES + /usr/share/doc/postfix/defaults + + + System.Package + System.Service + + + smtpd.conf + saslpass + main.cf + mkcert.sh + aliases + mailcap + smtp.pam + common.pam + common.pam + bounce.cf.tr + + + + postfix-docs + Help files for postfix package + Postfix paketine ait yardım dosyaları + + postfix + + + /usr/share/doc + + + + + 2016-06-08 + 3.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-27 + 3.1.0 + First release + Kamil Atlı + suvari@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 + /var/lib/ntp + + + System.Package + System.Service + + + fedora/ntp.conf + fedora/ntpd.sysconfig + fedora/ntp.cryptopw + + + + 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 + + ntp-client + + + /usr/share/doc/ntp/html + + + + + 2016-06-08 + 4.2.8_p4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-01 + 4.2.8_p4 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + libmicrohttpd + http://www.gnu.org/software/libmicrohttpd + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + server.web + A compact API and implementation of HTTP web server + Bir HTTP sunucu uygulama programlama arayüzü (API) ve uygulaması + libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. + libmicrohttpd, bir HTTP sunucusunun diğer yazılımların parçası olarak çalışmasını kolaylaştıran kitaplıktır. + http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.49.tar.gz + + gnutls-devel + libgcrypt-devel + libgpg-error-devel + + server/web/libmicrohttpd/pspec.xml + + + libmicrohttpd + + gnutls + libgcrypt + libgpg-error + + + /usr/bin/microspdy2http + /usr/bin/demo + /usr/lib + /usr/share/man + /usr/share/info + /usr/share/doc + + + + libmicrohttpd-devel + Development files for libmicrohttpd + libmicrohttpd için geliştirme dosyaları + + gnutls-devel + + + libmicrohttpd + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2016-06-08 + 0.9.49 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-25 + 0.9.49 + First release + Ali Algul(gulle) + alialgul@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.20.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 + + + + + 2016-06-14 + 2.4.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-17 + 2.4.20 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.44.tgz + + nss-devel + db-devel + openssl-devel + tcp-wrappers-devel + cyrus-sasl-devel + libtool-ltdl + icu4c-devel + unixODBC-devel + mariadb-server + libutil-linux-devel + e2fsprogs-devel + chrpath + groff + + + openldap-2.4.44-consolidated-2.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 + openssl + 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 + unixODBC + libutil-linux + 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 + libtool-ltdl-32bit + + + openssl-32bit + openldap-client + + + /usr/lib32 + + + + + 2016-06-15 + 2.4.44 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 2.4.44 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-03-28 + 2.4.44 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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-7.2p2.tar.gz + + libedit-devel + zlib-devel + openssl-devel + mit-kerberos + pam-devel + e2fsprogs-devel + + server/openssh/pspec.xml + + + openssh + + libedit + zlib + openssl + mit-kerberos + 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 + + + + + 2016-06-08 + 7.2_p2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 7.2_p2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-08 + 0.9.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 0.9.9 + First release + PisiLinux Community + admins@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 + + + + + 2016-06-08 + 2.1.26 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-07-05 + 2.1.26 + 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 + + + + + 2016-06-08 + 1.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-23 + 1.2.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-08 + 1.13.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-23 + 1.13.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-08 + 4.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-19 + 4.3.0 + First release + Vedat Demir + vedat@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 + + + + + 2016-06-08 + 9.10.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-05-08 + 9.10.2 + First release + Vedat Demir + vedat@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 + + + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-04 + 1.0.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + 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 + + + + + 2016-06-09 + 0.98.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-07 + 0.98.2 + 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 + /etc/X11/xinit/xinitrc.d/35-example-content.sh + + + 35-example-content.sh + + + + + 2016-06-09 + 1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-21 + 1.2 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-06-09 + 2.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-06 + 2.03 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + pisilinux-theme-maia + http://www.pisilinux.org/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.lookandfeel + PisiLinux için görsel çalışmaları. + PisiLinux için simge seti, şifre ekranı, açılış ekranı ve kilit ekranı. + https://github.com/alihanozturk/pisilinux-theme-maia/archive/0.2.tar.gz + + extra-cmake-modules + qt5-base-devel + plasma-framework-devel + + desktop/lookandfeel/pisilinux-theme-maia/pspec.xml + + + pisilinux-theme-maia + PisiLinux için görsel çalışmaları. + + /usr/share + /usr/share/color-schemes + /usr/share/icons + /usr/share/kservices5 + /usr/share/plasma + /usr/share/sddm + /usr/share/wallpapers + /usr/share/doc + + + + + 2016-06-09 + 0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-19 + 0.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-20 + 0.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + icon-theme-adwaita + http://www.gnome.org + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.lookandfeel + Adwaita icon theme + Adwaita icon theme + ftp://ftp.gnome.org/pub/gnome/sources/adwaita-icon-theme/3.20/adwaita-icon-theme-3.20.tar.xz + + intltool + + desktop/lookandfeel/icon-theme-adwaita/pspec.xml + + + icon-theme-adwaita + Adwaita icon theme + + / + + + + + 2016-06-09 + 3.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-07 + 3.20 + First release + Alihan Öztürk + alihan@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. + https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.15.tar.xz + desktop/lookandfeel/icon-theme-hicolor/pspec.xml + + + icon-theme-hicolor + + /usr/share/doc + /usr/share/icons + + + + + 2016-06-09 + 0.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-09 + 0.15 + First release + Serdar Soytetir + kaptan@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 + + 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 + + + + + 2016-06-09 + 0.24.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-12 + 0.24.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gconf + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome.base + Gnome Configuration System + Gnome Konfigürasyon Sistemi + gconf is a Gnome Configuration System. + gconf, Gnome Konfigürasyon Sistemidir. + mirrors://gnome/GConf/3.2/GConf-3.2.6.tar.xz + + glib2-devel + gtk-doc + gettext-devel + gobject-introspection-devel + libxml2-devel + dbus-devel + dbus-glib-devel + polkit-devel + openldap-client + gtk3-devel + intltool + python-lxml + + + 01_xml-gettext-domain.patch + gconf-reload.patch + + desktop/gnome/base/gconf/pspec.xml + + + gconf + + dbus + glib2 + polkit + libxml2 + dbus-glib + openldap-client + + + /etc/dbus-1/system.d + /etc/gconf + /etc/xdg/autostart + /usr/bin + /usr/lib/libgconf* + /usr/lib/GConf + /usr/lib/gio + /usr/lib/girepository-1.0 + /usr/share/dbus-1 + /usr/share/doc + /usr/share/GConf + /usr/share/aclocal + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/man + /usr/share/polkit-1/actions + /usr/share/sgml/gconf + + + System.PackageHandler + + + gconf2.path + + + + gconf-docs + GConf reference documents + data:doc + + gconf + + + /usr/share/gtk-doc + + + + gconf-devel + Development files for gconf + gconf için geliştirme dosyaları + + gconf + glib2-devel + dbus-devel + python-lxml + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-05-05 + 3.2.6 + First release + Erdinç Gültekin + 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/libexec + + + + + 2016-06-09 + 3.16.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-12 + 3.16.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 3.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 3.10.0 + First release + PisiLinux Community + admins@pisilinux.org + + + libwacom @@ -35210,49 +33132,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - - - 2016-06-09 - 3.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 3.10.0 - First release - PisiLinux Community - admins@pisilinux.org - - - libcroco @@ -35419,65 +33298,59 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - dconf - http://live.gnome.org/dconf + libgnome-keyring + http://live.gnome.org/GnomeKeyring - Pisi Linux Admins - admin@pisilinux.org + PisiLinux Community + admins@pisilinux.org GPLv2 - app:console + library 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 + 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 - dbus-devel - glib2-devel - docbook-xsl - libxslt intltool - gtk-doc + glib2-devel + dbus-devel + libgcrypt-devel - desktop/gnome/base/dconf/pspec.xml + desktop/gnome/base/libgnome-keyring/pspec.xml - dconf + libgnome-keyring - dbus + libgcrypt glib2 + dbus - /usr/share /usr/lib /usr/share/doc - /usr/bin - /usr/libexec + /usr/share/locale - dconf-devel - Development files for dconf + libgnome-keyring-devel + Development files for libgnome-keyring + libgnome-keyring için geliştirme dosyaları - dconf - dbus-devel + libgnome-keyring glib2-devel /usr/include - /usr/share/vala /usr/lib/pkgconfig - dconf-docs - Reference files for dconf + libgnome-keyring-docs + Referance documents for libgnome-keyring + libgnome-keyring için başvuru belgeleri data:doc - - dconf - /usr/share/gtk-doc @@ -35485,189 +33358,17 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 0.24.0 + 3.12 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-12 - 0.24.0 + 2015-08-25 + 3.12 First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 3.16.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-12 - 3.16.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gconf - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.gnome.base - Gnome Configuration System - Gnome Konfigürasyon Sistemi - gconf is a Gnome Configuration System. - gconf, Gnome Konfigürasyon Sistemidir. - mirrors://gnome/GConf/3.2/GConf-3.2.6.tar.xz - - glib2-devel - gtk-doc - gettext-devel - gobject-introspection-devel - libxml2-devel - dbus-devel - dbus-glib-devel - polkit-devel - openldap-client - gtk3-devel - intltool - python-lxml - - - 01_xml-gettext-domain.patch - gconf-reload.patch - - desktop/gnome/base/gconf/pspec.xml - - - gconf - - dbus - glib2 - polkit - libxml2 - dbus-glib - openldap-client - - - /etc/dbus-1/system.d - /etc/gconf - /etc/xdg/autostart - /usr/bin - /usr/lib/libgconf* - /usr/lib/GConf - /usr/lib/gio - /usr/lib/girepository-1.0 - /usr/share/dbus-1 - /usr/share/doc - /usr/share/GConf - /usr/share/aclocal - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/man - /usr/share/polkit-1/actions - /usr/share/sgml/gconf - - - System.PackageHandler - - - gconf2.path - - - - gconf-docs - GConf reference documents - data:doc - - gconf - - - /usr/share/gtk-doc - - - - gconf-devel - Development files for gconf - gconf için geliştirme dosyaları - - gconf - glib2-devel - dbus-devel - python-lxml - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-05-05 - 3.2.6 - First release - Erdinç Gültekin - admins@pisilinux.org + Vedat Demir + vedat@pisilinux.org @@ -35833,290 +33534,702 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libgnome-keyring - http://live.gnome.org/GnomeKeyring + fontforge + http://fontforge.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + BSD + 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 + + 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 + + + fontforge + + zlib + glib2 + libX11 + libpng + python + libxml2 + freetype + readline + libtool-ltdl + tiff + cairo + libXi + pango + libXft + giflib + libspiro + libjpeg-turbo + + + /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 + + + + + 2016-06-09 + 2.0.20150824 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-28 + 2.0.20150824 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + noto-fonts + http://www.google.com/get/noto + + Osman Erkan + osman.erkan@pisilinux.org + + Apache + data:font + desktop.font + Google Noto TTF fonts + Google Noto TTF yazı tipleri + Noto fonts are open source. All Noto fonts are published under the SIL Open Font License, Version 1.1. Language data and some sample texts are from the Unicode CLDR project. + Tüm diller/karakterlerin desktelendiği yazı tipidir. + https://github.com/googlei18n/noto-fonts/archive/v2015-09-29-license-adobe.tar.gz + desktop/font/noto-fonts/pspec.xml + + + noto-fonts + + /usr/share/doc + /usr/share/fonts/noto + + + + noto-fonts-ttf-croscore + noto-fonts-ttf-croscore, Chrome OS core fonts + noto-fonts-ttf-croscore, Chrome OS için temel yazı tipleri + + /usr/share/fonts/TTF + + + + + 2016-06-09 + 20150929 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-12 + 20150929 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + harfbuzz + http://www.freedesktop.org/software/harfbuzz 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 + desktop.font + OpenType text shaping engine + The Harfbuzz package contains an OpenType text shaping engine. + http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.2.6.tar.bz2 - intltool + cairo-devel glib2-devel - dbus-devel - libgcrypt-devel + icu4c-devel + graphite2-devel + freetype-devel + expat-devel - desktop/gnome/base/libgnome-keyring/pspec.xml + desktop/font/harfbuzz/pspec.xml - libgnome-keyring + harfbuzz - libgcrypt + cairo glib2 - dbus + icu4c + libgcc + freetype + graphite2 /usr/lib /usr/share/doc - /usr/share/locale + /usr/bin + /usr/share/gir-1.0 + /usr/share/gtk-doc - libgnome-keyring-devel - Development files for libgnome-keyring - libgnome-keyring için geliştirme dosyaları + harfbuzz-devel - libgnome-keyring glib2-devel + icu4c-devel + graphite2-devel + harfbuzz - /usr/include - /usr/lib/pkgconfig + /usr/include/harfbuzz + /usr/lib/pkgconfig + /usr/lib32/pkgconfig - libgnome-keyring-docs - Referance documents for libgnome-keyring - libgnome-keyring için başvuru belgeleri - data:doc + harfbuzz-32bit + 32-bit shared libraries for harfbuzz + emul32 + emul32 + + icu4c-32bit + freetype-32bit + fontconfig-32bit + cairo-32bit + + + cairo-32bit + glib2-32bit + icu4c-32bit + freetype-32bit + - /usr/share/gtk-doc + /usr/lib32 + + + 2016-06-09 + 1.2.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-02 + 1.2.6 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-06 + 1.2.6 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + 2016-06-09 - 3.12 + 6.3.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-25 - 3.12 + 2014-01-27 + 6.3.0 First release - Vedat Demir - vedat@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org - qt5-phonon - http://phonon.kde.org + noto-fonts-cjk + http://www.google.com/get/noto - Pisi Linux Admins - admins@pisilinux.org + Osman Erkan + osman.erkan@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. - http://download.kde.org/stable/phonon/4.9.0/phonon-4.9.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-designer-devel - qt5-quick1-devel - alsa-lib-devel - gst-plugins-base-devel - pulseaudio-libs-devel - gstreamer-devel - mesa-devel - - desktop/kde/phonon/qt5-phonon/pspec.xml + CUSTOM:SIL + data:font + desktop.font + Google Noto CJK fonts + Google Noto CJK yazı tipleri + noto-fonts-cjk, Google Noto CJK fonts. + Google Noto CJK yazı tipleri. + https://github.com/googlei18n/noto-cjk/archive/v1.004.tar.gz + desktop/font/noto-fonts-cjk/pspec.xml - qt5-phonon - - libgcc - qt5-base - qt5-designer - qt5-quick1 - pulseaudio-libs - + noto-fonts-cjk + noto-fonts-cjk, Google Noto CJK fonts - /usr/lib/libphonon* - /usr/lib/qt5 - /usr/share/dbus-1 - /usr/share/phonon4qt5 - - - - 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/fonts/noto/*.ttc + /usr/share/doc/noto-fonts-cjk/ - - 2016-05-16 - 4.9.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2016-05-03 - 4.9.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2016-06-09 + 0.0_20100919 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2015-08-13 - 4.8.3 + 2014-02-22 + 0.0_20100919 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - qt5-phonon-backend-vlc - http://gitorious.org/phonon/phonon-vlc + oxygen-fonts + https://projects.kde.org/projects/playground/artwork/oxygen-fonts - PisiLinux Community - admins@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@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.9.0/phonon-backend-vlc-0.9.0.tar.xz + 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 - qt5-base-devel - qt5-phonon-devel - pulseaudio - vlc-devel + cmake extra-cmake-modules + fontconfig-devel + qt5-base-devel + fontforge - desktop/kde/phonon/qt5-phonon-backend-vlc/pspec.xml + desktop/font/oxygen-fonts/pspec.xml - qt5-phonon-backend-vlc - - libgcc - qt5-base - qt5-phonon - vlc-libs - + oxygen-fonts + /usr/share/fonts + /usr/share/doc /usr/lib - /usr/lib/qt5 - /usr/share/kde4/services + + + + + 2016-06-09 + 5.4.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-11 + 5.4.3 + 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 - 2016-05-17 - 0.9.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org + 2016-06-09 + 8.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2016-04-02 - 0.8.2 + 2014-02-23 + 8.11 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Kamil Atlı + suvarice@gmail.com - qt5-phonon-backend-gstreamer - http://phonon.kde.org + dejavu-fonts + http://www.dejavu-fonts.org + + Sezai Yeniay + sezaiyeniay@pisilinux.org + + as-is + data:font + desktop.font + DejaVu yazıtipleri + DejaVu fonts + DejaVu fonts + DejaVu yazıtipleri + Les fontes DejaVu basées sur des fontes Bitstream avec des améliorations. + Contains DejaVu fonts that are based on Bitstream fonts, with improvements. + Bevat de DejaVu fonts die zijn gebasserd op de Bitstream fonts, met verbeteringen. + mirrors://sourceforge/dejavu/2.34/dejavu-fonts-2.34.tar.bz2 + + fontforge + perl-Font-TTF + perl-IO-String + unicode-ucd + + desktop/font/dejavu-fonts/pspec.xml + + + dejavu-fonts + + /etc/fonts + /etc/X11/fontpath.d/dejavu + /usr/share/fonts + /usr/share/doc + + + + + 2016-06-09 + 2.34 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-27 + 2.34 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + fontconfig + http://fontconfig.org PisiLinux Community admins@pisilinux.org - LGPLv2+ + MIT 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. - http://download.kde.org/stable/phonon/phonon-backend-gstreamer/4.9.0/phonon-backend-gstreamer-4.9.0.tar.xz + 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 - extra-cmake-modules - qt5-x11extras-devel - qt5-base-devel - qt5-phonon-devel - gstreamer-devel - gstreamer-next-devel - gst-plugins-base-devel - gst-plugins-base-next-devel - mesa-devel - libxml2-devel + freetype-devel + expat-devel - desktop/kde/phonon/qt5-phonon-backend-gstreamer/pspec.xml + + 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 - qt5-phonon-backend-gstreamer + fontconfig - qt5-base - qt5-x11extras - qt5-phonon - mesa - glib2 - libgcc - gstreamer-next - gst-plugins-base-next + freetype + expat + /etc/fonts + /usr/bin /usr/lib - /usr/lib/qt5 + /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 + + + fontconfig + expat-32bit + freetype-32bit + + + /usr/lib32 + - 2016-05-16 - 4.9.0 - rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org + 2016-06-09 + 2.11.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2016-05-03 - 4.9.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2016-05-25 + 2.11.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org - 2015-08-18 - 4.8.2 + 2014-05-17 + 2.11.1 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - khtml + droid-fonts + http://www.droidfonts.com + + Sezai Yeniay + sezaiyeniay@pisilinux.org + + Apache-2.0 + data:font + desktop.font + Droid, TrueType font ailesi + Droid is a TrueType font family intended for use on the small screens of mobile handsets + Droid is een TrueType font familie gemaakt voor gebruik op de kleine schermen van mobiele telefoons + Android platformunda kullanılmak üzere oluşturulmuş font ailesi. + Droid is a font family created by Ascender Corporation for use by the Open Handset Alliance platform, Android. The font families, known simply as Droid, are Droid Sans, Droid Serif, and Droid Sans Mono. + Droid is een TrueType font familie gemaakt voor gebruik op de kleine schermen van mobiele telefoons + http://pardusarchives.googlecode.com/files/droid_fonts_20100815.tar.gz + desktop/font/droid-fonts/pspec.xml + + + droid-fonts + + /etc/fonts + /usr/share/fonts + /usr/share/doc + + + 65-droid-fonts-sans-fontconfig.conf + 60-droid-fonts-sans-mono-fontconfig.conf + 59-droid-fonts-serif-fontconfig.conf + + + + + 2016-06-09 + 0.0_20100821 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-28 + 0.0_20100821 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + liberation-fonts + https://fedorahosted.org/liberation-fonts/ + + Sezai Yeniay + sezaiyeniay@pisilinux.org + + GPLv2 + data:font + desktop.font + Font collection similar to ones found in Microsoft Windows + Microsoft Windows fontlarına benzeyen bir dizi font ailesi + A set of fonts similar to Microsoft Windows fonts. There are three sets: Sans (a substitute for Arial, Albany, Helvetica, Nimbus Sans L, and Bitstream Vera Sans), Serif (a substitute for Times New Roman, Thorndale, Nimbus Roman, and Bitstream Vera Serif) and Mono (a substitute for Courier New, Cumberland, Courier, Nimbus Mono L, and Bitstream Vera Sans Mono). + liberation-fonts MS Windows fontlarına benzer bir yazı tipi ailesidir. Sans, serif ve mono olmak üzere 3 setten oluşur. + http://dev-www.libreoffice.org/src/cfbf1ac6f61bf6cf45342a0cc9381be5-liberation-fonts-ttf-2.00.0.tar.gz + + fontforge + + desktop/font/liberation-fonts/pspec.xml + + + liberation-fonts + + /usr/share/fonts + /usr/share/doc + + + + + 2016-06-09 + 2.00.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 2.00.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + kunitconversion http://www.kde.org Pisi Linux Admins @@ -36124,68 +34237,25 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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.22/portingAids/khtml-5.22.0.tar.xz + desktop.kde.framework + KDE unit conversion framework + KUnitConversion provides functions to convert values in different physical units. + mirrors://kde/stable/frameworks/5.22/kunitconversion-5.22.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 + ki18n-devel extra-cmake-modules - desktop/kde/porting-aids/khtml/pspec.xml + desktop/kde/framework/kunitconversion/pspec.xml - khtml + kunitconversion 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 @@ -36194,40 +34264,12 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - khtml-devel - Development files for khtml + kunitconversion-devel + Development files for kunitconversion - 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 + kunitconversion /usr/include @@ -36254,7 +34296,348 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kjs + 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.22/knotifications-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kglobalaccel-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/knewstuff-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + oxygen-icons + http://www.oxygen-icons.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + LGPL + desktop.kde.framework + KDE Oxygen icons + "The Oxygen Icon Theme + http://download.kde.org/stable/frameworks/5.22/oxygen-icons5-5.22.0.tar.xz + + extra-cmake-modules + qt5-base-devel + + desktop/kde/framework/oxygen-icons/pspec.xml + + + oxygen-icons + + /usr/share/icons + /usr/share/doc + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kemoticons http://www.kde.org Pisi Linux Admins @@ -36263,29 +34646,1202 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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.22/portingAids/kjs-5.22.0.tar.xz + desktop.kde.framework + KDE emoticon manager + KEmoticons converts emoticons from text to a graphical representation with images in HTML. + mirrors://kde/stable/frameworks/5.22/kemoticons-5.22.0.tar.xz qt5-base-devel - libpcre-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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kguiaddons-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kconfigwidgets-5.22.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/porting-aids/kjs/pspec.xml + desktop/kde/framework/kconfigwidgets/pspec.xml - kjs + 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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/plasma-framework-5.22.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 - libpcre + 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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kdesu-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kapidox-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kitemviews-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kwindowsystem-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/extra-cmake-modules-5.22.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 + + + + + 2016-05-16 + 5.22.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/frameworks/5.22/breeze-icons-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kwallet-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kio-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/ki18n-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kwidgetsaddons-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kservice-5.22.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 @@ -36293,12 +35849,4975 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kjs-devel - Development files for kjs + kservice-devel + Development files for kservice - libpcre-devel + kservice qt5-base-devel - kjs + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + ki18n-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kiconthemes-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kxmlgui-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kplotting-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kdnssd-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kpeople-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kded-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kpty-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kxmlrpcclient-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kcoreaddons-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/sonnet-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kcodecs-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kimageformats-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/modemmanager-qt-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/solid-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kinit-5.22.0.tar.xz + + qt5-base-devel + kdoctools-devel + libX11-devel + libcap-devel + libgcc + libxcb-devel + 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 + libxcb + 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 + libxcb-devel + kio-devel + kcrash-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kservice-devel + kwindowsystem-devel + kinit + + + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/knotifyconfig-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kparts-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kbookmarks-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/networkmanager-qt-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kitemmodels-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kfilemetadata-5.22.0.tar.xz + + qt5-base-devel + attr-devel + ebook-tools-devel + exiv2-devel + ffmpeg-devel + taglib-devel + poppler-qt5-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 + + + + + 2016-06-20 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kcompletion-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kcrash-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kdoctools-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kconfig-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/ktextwidgets-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kcmutils-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kjobwidgets-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/threadweaver-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/attica-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kpackage-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kdbusaddons-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kactivities-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/frameworkintegration-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kauth-5.22.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 + polkit-qt-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/karchive-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kdewebkit-5.22.0.tar.xz + + qt5-base-devel + qt5-webkit-devel + 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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/baloo-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/ktexteditor-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/bluez-qt-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kidletime-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kdeclarative-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/kdesignerplugin-5.22.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 + + + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/filelight-16.04.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 + + + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kcharselect-16.04.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 + + + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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.2.0.tar.xz + + extra-cmake-modules + gettext-devel + cmake + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kio-devel + knotifications-devel + kxmlgui-devel + qt5-base-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + ki18n-devel + kitemviews-devel + kio-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-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 + kwindowsystem + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2016-05-11 + 3.2.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/16.04.0/src/ktimer-16.04.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 + + + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + 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/16.04.1/src/kcalc-16.04.1.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 + + + + + 2016-06-12 + 16.04.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kwalletmanager-16.04.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 + + + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/klettres-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kig-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/parley-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kturtle-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + marble + http://edu.kde.org/applications/all/marble + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + Virtual globe and eorld atlas + Sanal küre ve Dünya atlası + Marble is a virtual globe and world atlas that you can use to learn more about the Earth. + Marble, sanal küre ve Dünya atlası uygulamasıdır. + marble + http://download.kde.org/stable/applications/16.04.0/src/marble-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-webkit-devel + qt5-designer-devel + qt5-script-devel + qt5-svg-devel + qt5-declarative-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + qt5-location-devel + kdoctools-devel + qt5-phonon-devel + kio-devel + quazip-devel + kwallet-devel + knewstuff-devel + kparts-devel + kcoreaddons-devel + ki18n-devel + kconfig-devel + krunner-devel + kservice-devel + libwlocate-devel + shared-mime-info + + desktop/kde/edu/marble/pspec.xml + + + marble + + kio + zlib + ki18n + kcrash + kparts + libgcc + kconfig + krunner + kxmlgui + qt5-svg + qt5-base + knewstuff + libwlocate + qt5-phonon + qt5-script + qt5-webkit + kcoreaddons + qt5-location + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/lib + /usr/bin + /usr/share + /usr/share/appdata + /usr/share/applications + /usr/share/config.kcfg + /usr/share/doc + /usr/share/icons + /usr/share/kservices5 + /usr/share/kxmlgui5 + /usr/share/marble + + + + marble-devel + Development files for marble + marble için geliştirme dosyaları + + marble + + + /usr/include + + + + + 2016-05-28 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@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. + mirrors://kde/stable/applications/16.04.0/src/blinken-16.04.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 + + + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kiten-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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.edu + Common data for KDE Edu applications + Common data for KDE Edu applications. + mirrors://kde/stable/applications/16.04.0/src/kdeedu-data-16.04.0.tar.xz + + extra-cmake-modules + + desktop/kde/edu/kdeedu-data/pspec.xml + + + kdeedu-data + + /usr/share + /usr/share/doc + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/khangman-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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. + mirrors://kde/stable/applications/16.04.0/src/kmplot-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-01 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kstars-16.04.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 + knotifications + + + /etc/xdg + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-01 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/portingAids/kmediaplayer-5.22.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 @@ -36425,7 +40944,85 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - krunner + 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.22/portingAids/kjsembed-5.22.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 + + + + + 2016-05-18 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kjs http://www.kde.org Pisi Linux Admins @@ -36435,64 +41032,179 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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.22/krunner-5.22.0.tar.xz + 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.22/portingAids/kjs-5.22.0.tar.xz qt5-base-devel - gettext-devel + libpcre-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 + docbook-xsl extra-cmake-modules - desktop/kde/porting-aids/krunner/pspec.xml + desktop/kde/porting-aids/kjs/pspec.xml - krunner + kjs qt5-base - qt5-declarative libgcc - kconfig - kcoreaddons - ki18n - kio - kservice - plasma-framework - solid - threadweaver + 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 + + + + + 2016-05-18 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.22/portingAids/khtml-5.22.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 - krunner-devel - Development files for krunner + khtml-devel + Development files for khtml - krunner + khtml qt5-base-devel - qt5-declarative-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 - plasma-framework-devel - solid-devel - threadweaver-devel + ktextwidgets-devel + kwallet-devel + kwindowsystem-devel + kxmlgui-devel /usr/include @@ -36666,7 +41378,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kjsembed + krunner http://www.kde.org Pisi Linux Admins @@ -36674,107 +41386,43 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol LGPLv2 library + app:console 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.22/portingAids/kjsembed-5.22.0.tar.xz + 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.22/krunner-5.22.0.tar.xz qt5-base-devel - qt5-svg-devel - qt5-designer-devel + gettext-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 - - - - - 2016-05-18 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/portingAids/kmediaplayer-5.22.0.tar.xz - - qt5-base-devel - kio-devel + qt5-declarative-devel + kconfig-devel kauth-devel - kparts-devel - ktextwidgets-devel - sonnet-devel - kxmlgui-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + plasma-framework-devel + solid-devel + threadweaver-devel extra-cmake-modules - desktop/kde/porting-aids/kmediaplayer/pspec.xml + desktop/kde/porting-aids/krunner/pspec.xml - kmediaplayer + krunner qt5-base + qt5-declarative libgcc - kparts - kxmlgui + kconfig + kcoreaddons + ki18n + kio + kservice + plasma-framework + solid + threadweaver /usr/share @@ -36784,13 +41432,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kmediaplayer-devel - Development files for kmediaplayer + krunner-devel + Development files for krunner - kmediaplayer + krunner qt5-base-devel - kparts-devel - kxmlgui-devel + qt5-declarative-devel + kconfig-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + plasma-framework-devel + solid-devel + threadweaver-devel /usr/include @@ -36817,7 +41472,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - khotkeys + system-settings http://www.kde.org Pisi Linux Admins @@ -36827,1119 +41482,79 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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.6.4/khotkeys-5.6.4.tar.xz + KDE5 system settings manager + System-settings is a control panel for KDE5 Plasma + mirrors://kde/stable/plasma/5.6.4/systemsettings-5.6.4.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 + kauth-devel + khtml-devel + kcmutils-devel docbook-xsl extra-cmake-modules - desktop/kde/plasma/khotkeys/pspec.xml + desktop/kde/plasma/system-settings/pspec.xml - khotkeys + system-settings qt5-base - kconfig + kauth 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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/polkit-kde-agent-1-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/sddm-kcm-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/kwallet-pam-5.6.4.tar.xz - - qt5-base-devel - pam-devel - libgcrypt-devel - extra-cmake-modules - - desktop/kde/plasma/kwallet-pam/pspec.xml - - - kwallet-pam - - pam - qt5-base - libgcrypt - - - /etc/xdg/autostart - /lib - /usr/lib - /usr/share/doc - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/libkscreen-5.6.4.tar.xz - - qt5-base-devel - qt5-x11extras-devel - libxcb-devel - kwayland-devel - xcb-util-devel - xcb-util-image-devel - xcb-util-keysyms-devel - libXcursor-devel - libXrandr-devel - kwayland-devel - extra-cmake-modules - - desktop/kde/plasma/libkscreen/pspec.xml - - - libkscreen - - qt5-base - kwayland - libXrandr - 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 - libXrandr-devel - qt5-x11extras-devel - kwayland-devel - libkscreen - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - plasma-integration - 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.6.4/plasma-integration-5.6.4.tar.xz - - qt5-base-devel - qt5-declarative-devel - kxmlgui-devel - qt5-x11extras-devel - libXcursor-devel - kcompletion-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kwayland-devel - kconfig-devel - kguiaddons-devel - kio-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - extra-cmake-modules - kwayland - libX11-devel - kiconthemes-devel - knotifications-devel - kwidgetsaddons-devel - kio-devel - kjobwidgets-devel - knotifications-devel - - desktop/kde/plasma/plasma-integration/pspec.xml - - - plasma-integration - - qt5-base - kxmlgui - qt5-x11extras - libXcursor - kcompletion - kcoreaddons - ki18n - kiconthemes - kwayland - kconfig - kguiaddons - kio - kcoreaddons - kconfigwidgets - kwidgetsaddons - knotifications - kwidgetsaddons - kjobwidgets - knotifications - libgcc - - - /usr/bin - /usr/lib/qt5 - /usr/share/doc - /usr/share/locale - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/plasma-desktop-5.6.4.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 - plasma-nm - kpackage-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 - plasma-framework-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 - ibus-devel - glib2-devel - scim-libs - xcb-util-keysyms-devel - extra-cmake-modules - - desktop/kde/plasma/plasma-desktop/pspec.xml - - - plasma-desktop - - baloo - fontconfig - freetype - kactivities - karchive - kauth - plasma-nm - kbookmarks kcmutils - kcodecs - kcompletion kconfig - kconfigwidgets - kcoreaddons kdbusaddons - kdeclarative - kdelibs4-support - kemoticons - kglobalaccel - kguiaddons + khtml 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 - ibus - glib2 - scim-libs - xcb-util-keysyms - 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 - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/kwayland-integration-5.6.4.tar.xz - - kwayland-devel + + 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 - 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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/kscreenlocker-5.6.4.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 - libXi-devel - pam-devel - plasma-framework-devel - extra-cmake-modules - - desktop/kde/plasma/kscreenlocker/pspec.xml - - - kscreenlocker - - pam - libXi - 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 + kxmlgui-devel + system-settings /usr/include - /usr/lib/cmake - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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 - QML tabanlı X11 görüntü yöneticisi. - 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 - sddm-autologin - 10-backlight.rules - - - - - 2016-06-03 - 0.13.0 - Fix session authorization issue. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-18 - 0.13.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/kmenuedit-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/oxygen-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/plasma-sdk-5.6.4.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 - kitemmodels-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 + /usr/lib/pkgconfig @@ -38172,6 +41787,1299 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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.6.4/kwayland-integration-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/user-manager-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/kscreenlocker-5.6.4.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 + libXi-devel + pam-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/plasma/kscreenlocker/pspec.xml + + + kscreenlocker + + pam + libXi + 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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/kdecoration-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/oxygen-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/khotkeys-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/polkit-kde-agent-1-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/kinfocenter-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/plasma-sdk-5.6.4.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 + kitemmodels-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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + breeze-plymouth + http://www.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.plasma + Breeze theme for Plymouth. + Breeze theme for Plymouth. + mirrors://kde/stable/plasma/5.6.4/breeze-plymouth-5.6.4.tar.xz + + extra-cmake-modules + plymouth-devel + + desktop/kde/plasma/breeze-plymouth/pspec.xml + + + breeze-plymouth + Breeze theme for Plymouth. + + plymouth + grub2 + plymouth-core-libs + plymouth-theme-spinner + plymouth-graphics-libs + plymouth-plugin-script + + + / + + + pisi.logo.png + pisi.16bit.png + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-23 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/kmenuedit-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/kwayland-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/sddm-kcm-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/ksshaskpass-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/powerdevil-5.6.4.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 + + + powerdevil-enable-upower.patch + + desktop/kde/plasma/powerdevil/pspec.xml + + + powerdevil + + qt5-base + kidletime + libgcc + libxcb + eudev + plasma-workspace + kio + kauth + ki18n + solid + kconfig + kxmlgui + kservice + kwayland + 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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/libkscreen-5.6.4.tar.xz + + qt5-base-devel + qt5-x11extras-devel + libxcb-devel + kwayland-devel + xcb-util-devel + xcb-util-image-devel + xcb-util-keysyms-devel + libXcursor-devel + libXrandr-devel + kwayland-devel + extra-cmake-modules + + desktop/kde/plasma/libkscreen/pspec.xml + + + libkscreen + + qt5-base + kwayland + libXrandr + 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 + libXrandr-devel + qt5-x11extras-devel + kwayland-devel + libkscreen + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + breeze-gtk @@ -38225,49 +43133,304 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - discover + 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.6.4/kde-gtk-config-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ksysguard http://www.kde.org Pisi Linux Admins admins@pisilinux.org LGPLv2 - app:gui + library + app:console desktop.kde.plasma - KDE and Plasma resources management GUI - KDE and Plasma resources management GUI - mirrors://kde/stable/plasma/5.6.4/discover-5.6.4.tar.xz + KDE system monitor + KDE5 system monitor daemon and service. + mirrors://kde/stable/plasma/5.6.4/ksysguard-5.6.4.tar.xz - qt5-base-devel - qt5-svg-devel - qt5-declarative-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdelibs4-support-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel kio-devel - kdeclarative-devel - plasma-framework-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/discover/pspec.xml + desktop/kde/plasma/ksysguard/pspec.xml - discover + ksysguard - qt5-base - libgcc - kio - attica + icon-theme-hicolor + kcompletion kconfig + kconfigwidgets kcoreaddons kdbusaddons + kdelibs4-support + ki18n kiconthemes - kdeclarative - kconfigwidgets + kio + kitemviews + knewstuff knotifications kwidgetsaddons - ki18n + 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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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 + QML tabanlı X11 görüntü yöneticisi. + 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 - knewstuff + 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 + sddm-autologin + 10-backlight.rules + + + + + 2016-06-03 + 0.13.0 + Fix session authorization issue. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-18 + 0.13.0 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/plasma-pa-5.6.4.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 @@ -38296,6 +43459,250 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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.6.4/plasma-desktop-5.6.4.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 + plasma-nm + kpackage-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 + plasma-framework-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 + ibus-devel + glib2-devel + scim-libs + xcb-util-keysyms-devel + extra-cmake-modules + + desktop/kde/plasma/plasma-desktop/pspec.xml + + + plasma-desktop + + baloo + fontconfig + freetype + kactivities + karchive + kauth + plasma-nm + 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 + ibus + glib2 + scim-libs + xcb-util-keysyms + 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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/khelpcenter-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + plasma-mediacenter @@ -38373,6 +43780,335 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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.6.4/kscreen-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/kdeplasma-addons-5.6.4.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 + plasma-workspace-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 + kactivities + plasma-workspace + 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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/kwrited-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + plasma-integration + 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.6.4/plasma-integration-5.6.4.tar.xz + + qt5-base-devel + qt5-declarative-devel + kxmlgui-devel + qt5-x11extras-devel + libXcursor-devel + kcompletion-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kwayland-devel + kconfig-devel + kguiaddons-devel + kio-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + extra-cmake-modules + kwayland + libX11-devel + kiconthemes-devel + knotifications-devel + kwidgetsaddons-devel + kio-devel + kjobwidgets-devel + knotifications-devel + + desktop/kde/plasma/plasma-integration/pspec.xml + + + plasma-integration + + qt5-base + kxmlgui + qt5-x11extras + libXcursor + kcompletion + kcoreaddons + ki18n + kiconthemes + kwayland + kconfig + kguiaddons + kio + kcoreaddons + kconfigwidgets + kwidgetsaddons + knotifications + kwidgetsaddons + kjobwidgets + knotifications + libgcc + + + /usr/bin + /usr/lib/qt5 + /usr/share/doc + /usr/share/locale + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + plasma-workspace @@ -38650,7 +44386,51 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-gtk-config + breeze-grub + http://www.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.plasma + Breeze theme for GRUB. + Breeze theme for GRUB. + mirrors://kde/stable/plasma/5.6.4/breeze-grub-5.6.4.tar.xz + desktop/kde/plasma/breeze-grub/pspec.xml + + + breeze-grub + Breeze theme for GRUB. + + grub2 + noto-fonts + + + / + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + bluedevil http://www.kde.org Pisi Linux Admins @@ -38660,49 +44440,51 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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.6.4/kde-gtk-config-5.6.4.tar.xz + KDE 5 Bluetooth Stack + Integrate the Bluetooth technology within KDE workspace and applications + mirrors://kde/stable/plasma/5.6.4/bluedevil-5.6.4.tar.xz qt5-base-devel + qt5-declarative + kded-devel + plasma-framework-devel + bluez-qt-devel + kded-devel kio-devel - glib2-devel ki18n-devel + kconfig-devel kcoreaddons-devel + kdbusaddons-devel kiconthemes-devel - kwidgetsaddons-devel - kcmutils-devel - karchive-devel - kauth-devel kconfigwidgets-devel - knewstuff-devel - gtk2-devel - gtk3-devel - at-spi2-core-devel + kwindowsystem-devel + knotifications-devel + kwidgetsaddons-devel extra-cmake-modules - desktop/kde/plasma/kde-gtk-config/pspec.xml + desktop/kde/plasma/bluedevil/pspec.xml - kde-gtk-config + bluedevil qt5-base libgcc - glib2 + bluez-qt + kded kio ki18n + kconfig + qt5-declarative kcoreaddons + kdbusaddons kiconthemes - kwidgetsaddons - karchive - knewstuff kconfigwidgets - gtk2 - gtk3 + knotifications + kwindowsystem + kwidgetsaddons /usr/share - /etc/xdg/cgc* /usr/share/locale /usr/bin /usr/lib/cmake @@ -38730,7 +44512,80 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kwrited + 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.6.4/discover-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + milou http://www.kde.org Pisi Linux Admins @@ -38740,34 +44595,39 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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.6.4/kwrited-5.6.4.tar.xz + KDedicated search application built on top of Baloo + Dedicated search application built on top of Baloo + mirrors://kde/stable/plasma/5.6.4/milou-5.6.4.tar.xz qt5-base-devel - ki18n-devel + qt5-declarative kdoctools-devel + kdeclarative-devel + ki18n-devel + krunner-devel + plasma-framework-devel + kconfig-devel + kservice-devel kcoreaddons-devel - knotifications-devel - kpty-devel - kdelibs4-support-devel - kdbusaddons-devel extra-cmake-modules - desktop/kde/plasma/kwrited/pspec.xml + desktop/kde/plasma/milou/pspec.xml - kwrited + milou qt5-base - kpty + qt5-declarative + krunner libgcc + kconfig + kservice kcoreaddons - knotifications - kdbusaddons /usr/share + /usr/share/locale + /usr/bin /usr/lib/qt5 /usr/lib /usr/share/doc @@ -38868,30 +44728,28 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kdecorations - https://projects.kde.org/projects/kde/workspace/kdecoration + plasma-workspace-wallpapers + http://www.kde.org Pisi Linux Admins - admins@pisilinux.org + admin@pisilinux.org - LGPLv3 + LGPLv2 library + app:console + app:gui desktop.kde.plasma - Plugin based library to create window decorations - Plugin based library to create window decorations - mirrors://kde/stable/plasma/5.6.4/kdecoration-5.6.4.tar.xz + The KDE Plasma Workspace Components + The KDE Plasma Workspace Components + mirrors://kde/stable/plasma/5.6.4/plasma-workspace-wallpapers-5.6.4.tar.xz - qt5-base-devel + qt5-base extra-cmake-modules - desktop/kde/plasma/kdecorations/pspec.xml + desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml - kdecorations - - qt5-base - libgcc - + plasma-workspace-wallpapers /etc /usr/share @@ -38902,19 +44760,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/share/doc - - kdecorations-devel - Development files for kdecorations - - qt5-base-devel - kdecorations - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - 2016-05-18 @@ -38934,7 +44779,101 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - powerdevil + 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.6.4/plasma-nm-5.6.4.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 + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-cli-tools http://www.kde.org Pisi Linux Admins @@ -38944,61 +44883,136 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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.6.4/powerdevil-5.6.4.tar.xz + Additional client tools for KDE applications + Tools based on KDE Frameworks 5 to better interact with the system + mirrors://kde/stable/plasma/5.6.4/kde-cli-tools-5.6.4.tar.xz qt5-base-devel + qt5-x11extras-devel + qt5-svg-devel + libX11-devel kdoctools-devel - kidletime-devel - libxcb-devel - eudev-devel - kdesignerplugin + 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 - kitemmodels-devel - kemoticons-devel + kdesignerplugin docbook-xsl - plasma-workspace-devel extra-cmake-modules - - powerdevil-enable-upower.patch - - desktop/kde/plasma/powerdevil/pspec.xml + desktop/kde/plasma/kde-cli-tools/pspec.xml - powerdevil + kde-cli-tools qt5-base - kidletime + qt5-svg + libX11 libgcc - libxcb - eudev - plasma-workspace kio - kauth + kdesu ki18n - solid - kconfig - kxmlgui kservice - kwayland qt5-x11extras - libkscreen - kactivities kcompletion kcoreaddons - kdbusaddons - kglobalaccel - knotifyconfig + kiconthemes + kwindowsystem kconfigwidgets - knotifications kwidgetsaddons + kcmutils + kconfig kdelibs4-support - /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + System.Package + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@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.6.4/kgamma5-5.6.4.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 @@ -39122,6 +45136,60 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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.6.4/kwallet-pam-5.6.4.tar.xz + + qt5-base-devel + pam-devel + libgcrypt-devel + extra-cmake-modules + + desktop/kde/plasma/kwallet-pam/pspec.xml + + + kwallet-pam + + pam + qt5-base + libgcrypt + + + /etc/xdg/autostart + /lib + /usr/lib + /usr/share/doc + + + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + breeze @@ -39233,7698 +45301,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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.6.4/kde-cli-tools-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/kwayland-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/plasma-nm-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/khelpcenter-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/plasma-pa-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - breeze-plymouth - http://www.kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.plasma - Breeze theme for Plymouth. - Breeze theme for Plymouth. - mirrors://kde/stable/plasma/5.6.4/breeze-plymouth-5.6.4.tar.xz - - extra-cmake-modules - plymouth-devel - - desktop/kde/plasma/breeze-plymouth/pspec.xml - - - breeze-plymouth - Breeze theme for Plymouth. - - plymouth - grub2 - plymouth-core-libs - plymouth-theme-spinner - plymouth-graphics-libs - plymouth-plugin-script - - - / - - - pisi.logo.png - pisi.16bit.png - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-23 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/ksshaskpass-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/milou-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - breeze-grub - http://www.kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.plasma - Breeze theme for GRUB. - Breeze theme for GRUB. - mirrors://kde/stable/plasma/5.6.4/breeze-grub-5.6.4.tar.xz - desktop/kde/plasma/breeze-grub/pspec.xml - - - breeze-grub - Breeze theme for GRUB. - - grub2 - noto-fonts - - - / - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/plasma-workspace-wallpapers-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/ksysguard-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/systemsettings-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/kgamma5-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/kinfocenter-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/user-manager-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/kscreen-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/bluedevil-5.6.4.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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.6.4/kdeplasma-addons-5.6.4.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 - plasma-workspace-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 - kactivities - plasma-workspace - 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 - - - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kxmlrpcclient-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/threadweaver-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/bluez-qt-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kcmutils-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kactivities-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/baloo-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kwidgetsaddons-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kitemmodels-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/networkmanager-qt-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/extra-cmake-modules-5.22.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 - - - - - 2016-05-16 - 5.22.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kinit-5.22.0.tar.xz - - qt5-base-devel - kdoctools-devel - libX11-devel - libcap-devel - libgcc - libxcb-devel - 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 - libxcb - 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 - libxcb-devel - kio-devel - kcrash-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kservice-devel - kwindowsystem-devel - kinit - - - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kded-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kglobalaccel-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kwallet-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kconfig-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/knewstuff-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kapidox-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kdesignerplugin-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kservice-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/solid-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kcrash-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/plasma-framework-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/karchive-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kio-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kimageformats-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kpty-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kfilemetadata-5.22.0.tar.xz - - qt5-base-devel - attr-devel - ebook-tools-devel - exiv2-devel - ffmpeg-devel - taglib-devel - poppler-qt5-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 - - - - - 2016-06-20 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/frameworkintegration-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kbookmarks-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kparts-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/knotifications-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/ktexteditor-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kemoticons-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/knotifyconfig-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kitemviews-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kpackage-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kidletime-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kxmlgui-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kplotting-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/attica-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kdesu-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kdbusaddons-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kcompletion-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kwindowsystem-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kguiaddons-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kauth-5.22.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 - polkit-qt-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kjobwidgets-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kdeclarative-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kpeople-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kunitconversion-5.22.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 - - - - - 2016-05-18 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - oxygen-icons - http://www.oxygen-icons.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPL - desktop.kde.framework - KDE Oxygen icons - "The Oxygen Icon Theme - http://download.kde.org/stable/frameworks/5.22/oxygen-icons5-5.22.0.tar.xz - - extra-cmake-modules - qt5-base-devel - - desktop/kde/framework/oxygen-icons/pspec.xml - - - oxygen-icons - - /usr/share/icons - /usr/share/doc - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kdewebkit-5.22.0.tar.xz - - qt5-base-devel - qt5-webkit-devel - 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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/frameworks/5.22/breeze-icons-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kcodecs-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/modemmanager-qt-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kdoctools-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/sonnet-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kdnssd-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kconfigwidgets-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kiconthemes-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/kcoreaddons-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/ki18n-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@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.22/ktextwidgets-5.22.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 - - - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - qrencode - http://fukuchi.org/works/qrencode/index.en.html - - Yusuf Aydemir - yusuf.aydemir@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 - - libsdl-devel - m4 - gettext-devel - libpng-devel - - desktop/kde/addon/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 - - - - - 2016-05-22 - 3.4.4 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-22 - 3.4.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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. - http://download.lunar-linux.org/lunar/mirrors/prison-frameworks-1.2.1.tar.xz - - 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 - - - - - 2016-05-22 - 1.2.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-01-17 - 1.2.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libdmtx - http://www.libdmtx.org - - PisiLinux Community - admins@pisilinux.org - - 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. - mirrors://sourceforge/libdmtx/libdmtx/0.7.4/libdmtx-0.7.4.tar.gz - desktop/kde/addon/libdmtx/pspec.xml - - - libdmtx - - /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 - - - - - 2016-05-22 - 0.7.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-05 - 0.7.4 - 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. - mirrors://kde/stable/applications/16.04.0/src/kmplot-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-01 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/klettres-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kiten-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/parley-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kturtle-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/khangman-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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.edu - Common data for KDE Edu applications - Common data for KDE Edu applications. - mirrors://kde/stable/applications/16.04.0/src/kdeedu-data-16.04.0.tar.xz - - extra-cmake-modules - - desktop/kde/edu/kdeedu-data/pspec.xml - - - kdeedu-data - - /usr/share - /usr/share/doc - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kstars-16.04.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 - knotifications - - - /etc/xdg - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-01 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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. - mirrors://kde/stable/applications/16.04.0/src/blinken-16.04.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 - - - - - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - marble - http://edu.kde.org/applications/all/marble - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - Virtual globe and eorld atlas - Sanal küre ve Dünya atlası - Marble is a virtual globe and world atlas that you can use to learn more about the Earth. - Marble, sanal küre ve Dünya atlası uygulamasıdır. - marble - http://download.kde.org/stable/applications/16.04.0/src/marble-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-webkit-devel - qt5-designer-devel - qt5-script-devel - qt5-svg-devel - qt5-declarative-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - qt5-location-devel - kdoctools-devel - qt5-phonon-devel - kio-devel - quazip-devel - kwallet-devel - knewstuff-devel - kparts-devel - kcoreaddons-devel - ki18n-devel - kconfig-devel - krunner-devel - kservice-devel - libwlocate-devel - shared-mime-info - - desktop/kde/edu/marble/pspec.xml - - - marble - - kio - zlib - ki18n - kcrash - kparts - libgcc - kconfig - krunner - kxmlgui - qt5-svg - qt5-base - knewstuff - libwlocate - qt5-phonon - qt5-script - qt5-webkit - kcoreaddons - qt5-location - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/lib - /usr/bin - /usr/share - /usr/share/appdata - /usr/share/applications - /usr/share/config.kcfg - /usr/share/doc - /usr/share/icons - /usr/share/kservices5 - /usr/share/kxmlgui5 - /usr/share/marble - - - - marble-devel - Development files for marble - marble için geliştirme dosyaları - - marble - - - /usr/include - - - - - 2016-05-28 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kig-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kshisen + kwordquiz http://www.kde.org Pisi Linux Admins @@ -46933,54 +45310,72 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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/16.04.0/src/kshisen-16.04.0.tar.xz + 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/16.04.0/src/kwordquiz-16.04.0.tar.xz qt5-base-devel - extra-cmake-modules - kdoctools-devel + gettext-devel ki18n-devel + kcrash-devel + sonnet-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 + 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/kshisen/pspec.xml + desktop/kde/games/kwordquiz/pspec.xml - kshisen + kwordquiz qt5-base - libgcc + qt5-phonon ki18n kconfig kconfigwidgets - kwidgetsaddons + kguiaddons + kiconthemes + kitemviews + knotifyconfig + knewstuff + knotifications kxmlgui + kdelibs4-support + libgcc kcoreaddons - kdbusaddons - libkdegames - libkmahjongg + kwindowsystem + kwidgetsaddons + libkeduvocdocument + /etc/xdg /usr/bin /usr/share + /usr/lib + /usr/lib/qt5 /usr/share/doc @@ -46988,16 +45383,94 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-05-23 16.04.0 - Version bump - Stefan Gronewold (groni) - groni@pisilinux.org + Version bump. + Burak Ertürk + burakerturk@pisilinux.org - 2015-08-29 - 1.6.0 + 2016-03-24 + 15.12.3 First release - Stefan Gronewold (groni) - groni@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/libkmahjongg-16.04.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 + + + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org @@ -47100,103 +45573,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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/16.04.0/src/kwordquiz-16.04.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 - - - /etc/xdg - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - libkdegames @@ -47310,23 +45686,21 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libkmahjongg + kshisen http://www.kde.org Pisi Linux Admins admin@pisilinux.org LGPLv2 - app:library + app:gui 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/16.04.0/src/libkmahjongg-16.04.0.tar.xz + 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/16.04.0/src/kshisen-16.04.0.tar.xz qt5-base-devel - qt5-svg-devel extra-cmake-modules - gettext-devel kdoctools-devel ki18n-devel kconfig-devel @@ -47334,503 +45708,149 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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 - - - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/filelight-16.04.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 - - - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/ktimer-16.04.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 - - - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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.2.0.tar.xz - - extra-cmake-modules - gettext-devel - cmake kcoreaddons-devel kdbusaddons-devel - ki18n-devel + libkdegames-devel + libkmahjongg-devel + knewstuff-devel + kdnssd-devel + kdeclarative-devel kio-devel - knotifications-devel - kxmlgui-devel - qt5-base-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - ki18n-devel - kitemviews-devel - kio-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-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 - kwindowsystem - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2016-05-11 - 3.2.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/16.04.0/src/kcharselect-16.04.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 - - - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - 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/16.04.1/src/kcalc-16.04.1.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 - - - - - 2016-06-12 - 16.04.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kwalletmanager-16.04.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 + desktop/kde/games/kshisen/pspec.xml - kwalletmanager + kshisen qt5-base - kcmutils - kdelibs4-support - kauth - ki18n libgcc - kcodecs + ki18n kconfig - kwallet + kconfigwidgets + kwidgetsaddons kxmlgui - karchive - kservice - kitemviews kcoreaddons kdbusaddons - kiconthemes - ktextwidgets - kconfigwidgets - knotifications - kwidgetsaddons + libkdegames + libkmahjongg - /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 + /usr/share/doc 2016-05-23 16.04.0 + Version bump + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-08-29 + 1.6.0 + First release + 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/16.04.0/src/spectacle-16.04.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 + kdeclarative-devel + knotifications-devel + qt5-declarative-devel + + desktop/kde/application/spectacle/pspec.xml + + + spectacle + + qt5-base + kio + libkscreen + xcb-util-cursor + ki18n + libgcc + kconfig + kxmlgui + libkipi + kdeclarative + kservice + kcoreaddons + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kdbusaddons + libxcb + xcb-util + qt5-x11extras + xcb-util-image + qt5-declarative + + + /usr/bin + /usr/share + /usr/share/doc + + + ksnapshot + + + ksnapshot + + + + + 2016-05-19 + 16.04.0 Version bump. Burak Ertürk burakerturk@pisilinux.org - 2016-03-24 + 2016-03-31 15.12.3 First release Yusuf Aydemir @@ -47840,7 +45860,2248 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libksane + 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 + mirrors://kde/stable/yakuake/3.0.2/src/yakuake-3.0.2.tar.xz + + qt5-base-devel + libX11-devel + qt5-x11extras-devel + knewstuff-devel + kio-devel + kparts-devel + knotifyconfig-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + kcrash-devel + kdbusaddons-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + knewstuff-devel + knotifications-devel + kparts-devel + kwidgetsaddons-devel + kwindowsystem-devel + gettext-devel + extra-cmake-modules + + desktop/kde/application/yakuake/pspec.xml + + + yakuake + + qt5-base + qt5-x11extras + kio + kcrash + 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 + + + + + 2016-05-23 + 3.0.2 + Release bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-03-07 + 3.0.2 + First release + Stefan Gronewold(groni) + groni@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 + mirrors://kde/stable/applications/16.04.0/src/knetwalk-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/kblocks-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kate-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + skanlite + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Lite scanning tool for KDE + KDE için hafif bir tarayıcı aracı + Skanlite, provides to use scanner device plugged in your system with Sane backend. + Skanlite, sisteminize takılı tarayıcı aygıtlarını Sane uygulaması ile birlikte kullanmanıza olanak sağlar. + http://download.kde.org/stable/skanlite/2.0/skanlite-2.0.tar.xz + + extra-cmake-modules + qt5-base-devel + zlib-devel + libpng-devel + kcoreaddons-devel + ki18n-devel + kxmlgui-devel + kio-devel + kdoctools-devel + ktextwidgets-devel + libksane-devel + + desktop/kde/application/skanlite/pspec.xml + + + skanlite + + kio + ki18n + libgcc + libpng + kconfig + kxmlgui + libksane + qt5-base + kcoreaddons + kjobwidgets + kconfigwidgets + kwidgetsaddons + sane-backends + + + /usr/bin + /usr/share/doc + /usr/share/applications + + + + + 2016-05-23 + 2.0 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-02-02 + 2.0 + First release + Alihan Öztürk + alihan@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. + mirrors://kde/stable/applications/16.04.0/src/krfb-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kontactinterface-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/kcron-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kmix-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/gwenview-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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. + mirrors://kde/stable/applications/16.04.0/src/poxml-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 + mirrors://kde/stable/applications/16.04.0/src/ktp-approver-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-05-23 + 5.1.0 + Release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-26 + 5.1.0 + First release + Yusuf Aydemir + yusuf.aydemir@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 + https://sourceforge.net/projects/pisilinux/files/source/okular-16.03.80_20160402.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 + + + /etc/xdg + /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 + + + + + 2016-05-24 + 16.03.80_20160402 + Release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-02-02 + 16.03.80_20160402 + 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 + mirrors://kde/stable/applications/16.04.0/src/kdesdk-thumbnailers-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 + mirrors://kde/stable/applications/16.04.0/src/kdiamond-16.04.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 + docbook-xsl + + 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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/ksquares-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/kimap-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/kalgebra-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 + mirrors://kde/stable/applications/16.04.0/src/kapman-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/ark-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/granatier-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kfloppy + http://kde.org/applications/utilities/kfloppy + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A floppy formatter + A floppy formatter + KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. + KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. + kfloppy + http://download.kde.org/stable/applications/16.04.0/src/kfloppy-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kcoreaddons-devel + kio-devel + kdoctools-devel + kdelibs4-support-devel + kxmlgui-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kfloppy/pspec.xml + + + kfloppy + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/share/doc + /usr/bin + /usr/share/icons + /usr/share/applications + + + + + 2016-04-20 + 16.04 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libkleo + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.application + Common libraries for KDE PIM + Common libraries for KDE PIM + mirrors://kde/stable/applications/16.04.1/src/libkleo-16.04.1.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 + gpgmepp-devel + + desktop/kde/application/libkleo/pspec.xml + + + libkleo + + 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 + gpgmepp + kpimtextedit + kwindowsystem + 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 + /usr/share/akonadicontact/grantleetheme/default + /usr/share/libkleopatra + + + + libkleo-devel + Development package for libkleo libraries + Contains development tools and header files for libkleo + + qt5-base-devel + boost-devel + libkleo + + + /usr/lib/cmake + /usr/include + /usr/lib/gpgmepp + /usr/share/kde4/apps/cmake + + + + + 2016-04-25 + 16.04.1 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/ktnef-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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.9.tar.gz + desktop/kde/application/kde-servicemenu-rootactions/pspec.xml + + + kde-servicemenu-rootactions + + /usr/bin + /usr/share/kservices5 + /usr/share/doc + + + + + 2016-05-23 + 2.9 + Release bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-04-10 + 2.9 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + krdc + http://www.kde.org/applications/internet/krdc/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Remote Desktop Client + Uzak masaüstü bağlantı istemcisi. + KRDC is a client application that allows you to view or even control the desktop session on another machine that is running a compatible server. VNC and RDP is supported. + krdc, uzaktaki bir masaüstü oturumunu görüntülemenizi ve kontrol etmenizi sağlar. RDP kullanan Windows Terminal Sunucuları'na ve VNC/RFB kullanan diğer pek çok platforma bağlanabilirç + http://download.kde.org/stable/applications/16.04.0/src/krdc-16.04.0.tar.xz + + extra-cmake-modules + kconfig-devel + kcmutils-devel + kdnssd-devel + knotifyconfig-devel + knotifications-devel + kbookmarks-devel + kiconthemes-devel + kxmlgui-devel + kcompletion-devel + kwallet-devel + kwidgetsaddons-devel + ki18n-devel + libvncserver-devel + + desktop/kde/application/krdc/pspec.xml + + + krdc + + ki18n + kdnssd + libgcc + kconfig + kwallet + kxmlgui + kcmutils + kservice + qt5-base + kbookmarks + kcompletion + kcoreaddons + libvncserver + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share/applications + /usr/share/config.kcfg + /usr/share/krdc + /usr/share/kxmlgui5 + /usr/share/kservices5 + /usr/share/doc + + + + krdc-devel + + krdc + + + /usr/include + + + + + 2016-04-20 + 16.04 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libkipi http://www.kde.org PisiLinux Community @@ -47849,46 +48110,55 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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/16.04.0/src/libksane-16.04.0.tar.xz + 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/16.04.0/src/libkipi-16.04.0.tar.xz - ki18n-devel - kwallet-devel qt5-base-devel - ktextwidgets-devel - sane-backends-devel - kwidgetsaddons-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + cmake extra-cmake-modules - desktop/kde/application/libksane/pspec.xml + desktop/kde/application/libkipi/pspec.xml - libksane + libkipi - ki18n - kwallet qt5-base - ktextwidgets - sane-backends - kwidgetsaddons + kxmlgui + ki18n + libgcc + kconfig + kservice + kcoreaddons /usr/lib + /usr/bin + /usr/share /usr/share/icons - libksane-devel - Development files for libksane - libksane için geliştirme dosyaları + libkipi-devel + Development files for libkipi + libkipi için geliştirme dosyaları - libksane + libkipi + qt5-base-devel + kxmlgui-devel + ki18n-devel + kconfig-devel + kservice-devel + kcoreaddons-devel - /usr/lib/cmake /usr/include /usr/lib/pkgconfig @@ -47912,113 +48182,413 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kdepim-runtime - http://community.kde.org/KDE_PIM + calendarsupport + https://community.kde.org/KDE_PIM + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.application + Calendar support library + Calendar support library + http://download.kde.org/stable/applications/16.04.0/src/calendarsupport-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + akonadi-devel + kmime-devel + ki18n-devel + kcodecs-devel + kcompletion-devel + kjobwidgets-devel + kcoreaddons-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdelibs4-support-devel + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + boost-devel + kdepimlibs-devel + kcalutils-devel + kcalcore-devel + kidentitymanagement-devel + kholidays-devel + akonadi-calendar-devel + kcontacts-devel + pimcommon-devel + kimap-devel + cyrus-sasl-devel + kdepim-apps-libs-devel + + desktop/kde/application/calendarsupport/pspec.xml + + + calendarsupport + Calendar support library + + kio + ki18n + kmime + libgcc + akonadi + kcodecs + kconfig + kcalcore + qt5-base + kcalutils + kholidays + pimcommon + kguiaddons + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + kwidgetsaddons + akonadi-calendar + kdelibs4-support + kdepim-apps-libs + kidentitymanagement + + + /etc + /usr/lib/qt5 + /usr/lib + /usr/share/kservicetypes5 + + + + calendarsupport-devel + Development files for calendarsupport + + calendarsupport + + + /usr/include + /usr/lib/cmake + + + + + 2016-05-22 + 16.04.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + klickety + http://games.kde.org PisiLinux Community admins@pisilinux.org - LGPLv2 - library + GPLv2 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/16.04.0/src/kdepim-runtime-16.04.0.tar.xz + 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 + mirrors://kde/stable/applications/16.04.0/src/klickety-16.04.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 - boost-devel - shared-mime-info - akonadi-devel - akonadi-calendar-devel - akonadi-search-devel - kcmutils-devel + knotifyconfig-devel + kdbusaddons-devel + knotifications-devel + libkdegames-devel + qt5-declarative-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 + desktop/kde/application/klickety/pspec.xml - kdepim-runtime + klickety - 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 + libkdegames knotifyconfig - kwindowsystem kconfigwidgets - kmailtransport - ktextwidgets knotifications kwidgetsaddons - qt5-xmlpatterns - akonadi-calendar - kdelibs4-support - kidentitymanagement - /etc/xdg + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/kconf_update + /usr/share/klickety + /usr/share/knotifications5 + /usr/share/kxmlgui5 + /usr/share/sounds + /usr/share/doc + + + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcolorchooser + http://www.kde.org/applications/graphics/kcolorchooser + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A simple color chooser application + Basit bir renk seçme uygulaması + KColorChooser is a simple color chooser application. + KColorChooser, basit bir renk seçme uygulamasıdır. + kcolorchooser + http://download.kde.org/stable/applications/16.04.0/src/kcolorchooser-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + + desktop/kde/application/kcolorchooser/pspec.xml + + + kcolorchooser + + ki18n + libgcc + kxmlgui + qt5-base + kcoreaddons + + + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/doc + + + + + 2016-04-20 + 16.04 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libgravatar + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + KDE PIM library providing Gravatar support + KDE PIM library providing Gravatar support + mirrors://kde/stable/applications/16.04.0/src/libgravatar-16.04.0.tar.xz + + qt5-base-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + pimcommon-devel + cmake + extra-cmake-modules + 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 + libkdepim-devel + extra-cmake-modules + akonadi-calendar-devel + akonadi-search-devel + qt5-webkit-devel + grantlee-qt5-devel + kdoctools-devel + knewstuff-devel + kpimtextedit-devel + kimap-devel + akonadi-devel + boost-devel + + desktop/kde/application/libgravatar/pspec.xml + + + libgravatar + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kservice + kcoreaddons + pimcommon + ktextwidgets + kwidgetsaddons + + /usr/lib /usr/bin - /usr/share/mime - /usr/share/kservicetypes5 - /usr/share/kservices5 - /usr/share/knotifications5 + /usr/share /usr/share/icons - /usr/share/dbus-1 - /usr/share/akonadi - /usr/share/ontology - /usr/share/autostart - /usr/share/applications + /etc + + + + libgravatar-devel + Development files for libgravatar + + libgravatar + qt5-base-devel + kxmlgui-devel + ki18n-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-04-25 + 16.04.0 + 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/16.04.0/src/kblog-16.04.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 @@ -48040,8 +48610,904 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kruler - http://www.kde.org/applications/graphics/kruler + 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/16.04.0/src/kmbox-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kdepimlibs-16.04.0.tar.xz + + qt5-base-devel + qt5-webkit-devel + grantlee-qt5-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 + qt5-webkit + grantlee-qt5 + 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 + /usr/share/akonadicontact + + + + 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 + + + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/kaccounts-providers-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/kcalutils-16.04.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 + kidentitymanagement-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 + kidentitymanagement + + + /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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/ktp-contact-list-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/libkeduvocdocument-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/libkexiv2-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + eventviews + https://community.kde.org/KDE_PIM + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.application + Library for creating events. + Library for creating events. + http://download.kde.org/stable/applications/16.04.0/src/eventviews-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + akonadi-devel + kcompletion-devel + kjobwidgets-devel + kcoreaddons-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdelibs4-support-devel + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + boost-devel + libkdepim-devel + kdepimlibs-devel + kcontacts-devel + kcalcore-devel + kdgantt2-devel + kcalutils-devel + calendarsupport-devel + kmime-devel + kidentitymanagement-devel + akonadi-calendar-devel + + desktop/kde/application/eventviews/pspec.xml + + + eventviews + Library for creating events. + + ki18n + libgcc + akonadi + kcodecs + kconfig + kcalcore + kdgantt2 + kservice + qt5-base + kcalutils + kcontacts + libkdepim + kguiaddons + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kconfigwidgets + kwidgetsaddons + calendarsupport + akonadi-calendar + kdelibs4-support + + + /etc + /usr/lib + /usr/lib/qt5 + /usr/share/kservicetypes5 + + + + eventviews-devel + Development files for eventviews. + + eventviews + + + /usr/include + /usr/lib/cmake + + + + + 2016-05-22 + 16.04.0 + First release. + Alihan Öztürk + alihan@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/16.04.0/src/artikulate-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + skrooge + http://skrooge.org + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:gui + desktop.kde.application + Personal finances manager + Kişisel finansal yönetici + Skrooge allows you to manage your personal finances, powered by KDE. Thanks to its many features, it is one of the most powerful way to enter, follow, and analyze your expenses. + Skrooge, kişisel finans akışınızı kontrol altında tutmanızı sağlayan bir uygulamadır. + skrooge + http://download.kde.org/stable/skrooge/skrooge-2.4.0.tar.xz + + qt5-base-devel + extra-cmake-modules + qt5-webkit-devel + qt5-script-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-sqlite + qt5-designer-devel + qt5-svg-devel + qt5-location-devel + grantlee-qt5-devel + karchive-devel + kconfig-devel + kcoreaddons-devel + ki18n-devel + kitemviews-devel + kwidgetsaddons-devel + kwindowsystem-devel + kcompletion-devel + kdoctools-devel + kjobwidgets-devel + kconfigwidgets-devel + kdesignerplugin + kiconthemes-devel + kio-devel + knewstuff-devel + kparts-devel + kwallet-devel + kxmlgui-devel + sqlcipher-devel + qca2-qt5-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kactivities-devel + knotifyconfig-devel + krunner-devel + libofx-devel + + desktop/kde/application/skrooge/pspec.xml + + + skrooge + + kio + ki18n + kparts + libgcc + libofx + kconfig + krunner + kwallet + kxmlgui + qt5-svg + karchive + kservice + qca2-qt5 + qt5-base + knewstuff + sqlcipher + kitemviews + qt5-script + qt5-webkit + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + grantlee-qt5 + ktextwidgets + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + qt5-declarative + kdelibs4-support + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share/appdata + /usr/share/applications + /usr/share/config.kcfg + /usr/share/doc + /usr/share/icons + /usr/share/knotifications5 + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/kxmlgui5 + /usr/share/locale + /usr/share/mime + /usr/share/skrooge + + + + + 2016-05-23 + 2.4.0 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-22 + 2.3.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kbruch + http://edu.kde.org/applications/mathematics/kbruch PisiLinux Community admins@pisilinux.org @@ -48049,47 +49515,1149 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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/16.04.0/src/kruler-16.04.0.tar.xz + 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/16.04.0/src/kbruch-16.04.0.tar.xz - qt5-base-devel + qt5-base kdoctools-devel - cmake - extra-cmake-modules + kconfig-devel + kcrash-devel ki18n-devel - knotifications-devel - kwindowsystem-devel + kwidgetsaddons-devel kxmlgui-devel - python-devel - docbook-xsl + kcoreaddons-devel + kconfigwidgets-devel + extra-cmake-modules - desktop/kde/application/kruler/pspec.xml + desktop/kde/application/kbruch/pspec.xml - kruler + kbruch qt5-base kxmlgui - knotifications + kconfig + kcrash ki18n libgcc - libxcb - kconfig + kwidgetsaddons kcoreaddons + kconfigwidgets + + + /usr/bin + /usr/share + /usr/share/man/man1 + /usr/share/doc + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libksieve + https://community.kde.org/KDE_PIM + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.application + KDE PIM library for managing sieves. + KDE PIM library for managing sieves. + http://download.kde.org/stable/applications/16.04.0/src/libksieve-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + akonadi-devel + kcompletion-devel + kjobwidgets-devel + kcoreaddons-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdelibs4-support-devel + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + boost-devel + qt5-webkit-devel + pimcommon-devel + kcontacts-devel + kdepimlibs-devel + kcalcore-devel + kimap-devel + kmime-devel + cyrus-sasl-devel + knewstuff-devel + kidentitymanagement-devel + kmailtransport-devel + libkdepim-devel + + desktop/kde/application/libksieve/pspec.xml + + + libksieve + KDE PIM library for managing sieves. + + kio + ki18n + kmime + libgcc + sonnet + akonadi + kconfig + karchive + qt5-base + knewstuff + libkdepim + pimcommon + cyrus-sasl + qt5-webkit + kcompletion + kcoreaddons + kiconthemes + kpimtextedit kwindowsystem - qt5-x11extras + kconfigwidgets + kwidgetsaddons + kidentitymanagement + + + /etc + /usr/lib + /usr/lib/qt5 + /usr/share/sieve + + + + libksieve-devel + Development files for libksieve. + + libksieve + + + /usr/include + /usr/lib/cmake + + + + + 2016-05-22 + 16.04.0 + 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 + mirrors://kde/stable/applications/16.04.0/src/klines-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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. + mirrors://kde/stable/applications/16.04.0/src/libkface-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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. + mirrors://kde/stable/applications/16.04.0/src/kteatime-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/ktp-desktop-applets-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/dolphin-16.04.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-devel + kdoctools-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/application/dolphin/pspec.xml + + + dolphin + + qt5-base + kfilemetadata + baloo + baloo-widgets + 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 + baloo-widgets-devel + kfilemetadata-devel + kparts-devel + ktexteditor-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + + + /usr/include + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kpmcore + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Library for managing partitions. + Library for managing partitions. + mirrors://kde/stable/kpmcore/2.1.1/src/kpmcore-2.1.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/kpmcore/pspec.xml + + + kpmcore + + kio + ki18n + libgcc + parted + kservice + qt5-base + kcoreaddons + kiconthemes + libatasmart + libutil-linux + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + kpmcore-devel + Development files for kpmcore + + kpmcore + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2016-01-17 + 2.1.1 + Release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-01-17 + 2.1.1 + 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 + mirrors://kde/stable/applications/16.04.0/src/ktp-common-internals-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.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/16.04.0/src/syndication-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kidentitymanagement-16.04.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 + kpimtextedit-devel + extra-cmake-modules + + desktop/kde/application/kidentitymanagement/pspec.xml + + + kidentitymanagement + + qt5-base + kpimtextedit + kio + ki18n + libgcc + kcodecs + kconfig + kxmlgui + kcompletion + kcoreaddons + ktextwidgets + kwidgetsaddons + kpimtextedit + + + /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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/ktp-contact-runner-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/kpimtextedit-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/kmime-16.04.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 + @@ -48251,63 +50819,308 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kalarmcal + 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. + mirrors://kde/stable/applications/16.04.0/src/kdenlive-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-script-devel + qt5-svg-devel + qt5-webkit-devel + qt5-location-devel + karchive-devel + kbookmarks-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + kfilemetadata-devel + libv4l-devel + kio-devel + ffmpeg-devel + sdl-image-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 + cdrkit + ki18n + solid + kcrash + libgcc + ffmpeg + kconfig + kxmlgui + qt5-svg + karchive + kservice + qt5-base + knewstuff + kplotting + sdl-image + dvdauthor + kbookmarks + kguiaddons + kitemviews + qt5-script + qt5-webkit + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + qt5-location + ktextwidgets + kfilemetadata + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + qt5-declarative + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/man + + + + + 2016-06-25 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kmahjongg + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Mahjongg Solitaire + Mahjongg oyunu + KMahjongg is a fun board game created after the famous oriental game of Mahjong. Unlike the original however, KMahjongg is a tile matching game for one or two players, a variation usually known as Mahjong Solitaire. + Mahjong Solitaire oyununa benzer KMahjongg bir veya iki oyuncunun birlekte oynayabileceği bir parça eşleştirme oyunudur. + kmahjongg + http://download.kde.org/stable/applications/16.04.0/src/kmahjongg-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + kdeclarative-devel + kdoctools-devel + knewstuff-devel + kxmlgui-devel + libkdegames-devel + libkmahjongg-devel + + desktop/kde/application/kmahjongg/pspec.xml + + + kmahjongg + + ki18n + kcrash + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + libkmahjongg + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2016-04-20 + 16.04 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kdegraphics-thumbnailers http://www.kde.org - Pisi Linux Admins - admin@pisilinux.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. + mirrors://kde/stable/applications/16.04.0/src/kdegraphics-thumbnailers-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 - Library to provides access and handling of KAlarm calendar data - Library to provides access and handling of KAlarm calendar data - mirrors://kde/stable/applications/16.04.0/src/kalarmcal-16.04.0.tar.xz + Framework for searching and managing metadata + Baloo is a framework for searching and managing metada + mirrors://kde/stable/applications/16.04.0/src/baloo-widgets-16.04.0.tar.xz - qt5-base-devel - akonadi-devel - kcalcore-devel - kidentitymanagement-devel - kdepimlibs-devel - boost-devel + baloo-devel + extra-cmake-modules kdelibs4-support-devel kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel kdoctools-devel - libical-devel - kholidays-devel - extra-cmake-modules + kemoticons-devel + kfilemetadata-devel + kinit-devel + kio-devel + kitemmodels-devel + kunitconversion-devel + qt5-base-devel - desktop/kde/application/kalarmcal/pspec.xml + desktop/kde/application/baloo-widgets/pspec.xml - kalarmcal + baloo-widgets + Development files for baloo-widgets - qt5-base - kcalcore - kholidays - kidentitymanagement + baloo + kconfig + kcoreaddons + kfilemetadata ki18n + kio + kwidgetsaddons libgcc - kdepimlibs - kdelibs4-support + qt5-base - /usr/lib/qt5 + /etc + /usr/bin /usr/lib + /usr/lib/qt5 + /usr/share /usr/share/doc + /usr/share/locale - kalarmcal-devel - Development files for kalarmcal + baloo-widgets-devel + Development files for baloo-widgets + baloo-widgets qt5-base-devel - kalarmcal /usr/include @@ -48334,121 +51147,337 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - minuet - https://minuet.kde.org + kblackbox + http://games.kde.org - Alihan Öztürk - alihan@pisilinux.org + PisiLinux Community + admins@pisilinux.org - LGPLv2 + GPLv2 app:gui desktop.kde.application - A KDE Software for Music Education - Music education Free Software, thoughtfully designed to push your musical skills to the next level. Enhance your ability to recognize intervals, chords, rhythm, and scales while enjoying all the power of Free Software. - http://download.kde.org/stable/applications/16.04.0/src/minuet-16.04.0.tar.xz + 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 + mirrors://kde/stable/applications/16.04.0/src/kblackbox-16.04.0.tar.xz extra-cmake-modules qt5-base-devel - qt5-declarative-devel + qt5-svg-devel + karchive-devel + kcoreaddons-devel + kconfig-devel ki18n-devel + kguiaddons-devel + kiconthemes-devel kxmlgui-devel - kio-devel - kcrash-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin kdoctools-devel - alsa-lib-devel - drumstick-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel - desktop/kde/application/minuet/pspec.xml + desktop/kde/application/kblackbox/pspec.xml - minuet - A KDE Software for Music Education + kblackbox - kio ki18n - kcrash libgcc kconfig kxmlgui - alsa-lib + qt5-svg + karchive qt5-base - kcompletion kcoreaddons - drumstick-libs + kdbusaddons + libkdegames + ktextwidgets kconfigwidgets kwidgetsaddons - qt5-declarative - /usr/bin /usr/share - /usr/share/appdata - /usr/share/applications /usr/share/doc - /usr/share/icons - /usr/share/kxmlgui5 - /usr/share/minuet + /usr/bin + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + - 2016-04-20 - 16.04 - First Release - Alihan Öztürk - alihan@pisilinux.org + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - kdebugsettings - http://projects.kde.org/kdebugsettings + kamera + http://www.kde.org - Alihan Öztürk - alihan@pisilinux.org + PisiLinux Community + admins@pisilinux.org GPLv2 - app:gui + library 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. - mirrors://kde/stable/applications/16.04.0/src/kdebugsettings-16.04.0.tar.xz + 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. + mirrors://kde/stable/applications/16.04.0/src/kamera-16.04.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 + kxmlgui-devel kio-devel + ki18n-devel + kconfig-devel + kdoctools-devel + libgphoto2-devel - desktop/kde/application/kdebugsettings/pspec.xml + desktop/kde/application/kamera/pspec.xml - kdebugsettings - An application to enable/disable qCDebug + kamera + kio ki18n libgcc kconfig + kxmlgui qt5-base + libgphoto2 + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/share + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdepim-apps-libs + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.application + KDE PIM mail related libraries + KDE PIM mail related libraries + mirrors://kde/stable/applications/16.04.0/src/kdepim-apps-libs-16.04.0.tar.xz + + qt5-base-devel + boost-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kmime-devel + kcontacts-devel + kcalcore-devel + kldap-devel + extra-cmake-modules + libkleo-devel + grantlee-qt5-devel + pimcommon-devel + akonadi-devel + grantleetheme-devel + kdelibs4-support-devel + qt5-webkit-devel + kdewebkit-devel + gpgmepp-devel + akonadi-calendar-devel + akonadi-search-devel + kpimtextedit-devel + kimap-devel + openldap-client + cyrus-sasl-devel + + desktop/kde/application/kdepim-apps-libs/pspec.xml + + + kdepim-apps-libs + + qt5-base + kio + ki18n + libgcc + kcodecs + kmime + kldap + kxmlgui + kcalcore + kcontacts + kconfig + libxml2 + kservice + kguiaddons kitemviews kcompletion kcoreaddons kdbusaddons + kiconthemes + kitemmodels + ktextwidgets + kconfigwidgets kwidgetsaddons + sonnet + libkleo + kdewebkit + pimcommon + kdepimlibs + qt5-webkit + grantlee-qt5 + kpimtextedit + grantleetheme + akonadi + /etc/xdg + /usr/lib + /usr/share/doc + /usr/mkspecs/ /usr/bin - /etc - /usr/share/applications + /usr/share + + + + kdepim-apps-libs-devel + Development package for kdepim-apps-libs libraries + Contains development tools and header files for kdepim-apps-libs + + qt5-base-devel + boost-devel + kdepim-apps-libs + + + /usr/lib/cmake + /usr/include + /usr/lib/gpgmepp + /usr/share/kde4/apps/cmake + + + + + 2016-04-25 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/step-16.04.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 @@ -48469,6 +51498,105 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + mailimporter + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + Mail importer library + Mail importer library + mirrors://kde/stable/applications/16.04.0/src/mailimporter-16.04.0.tar.xz + + qt5-base-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + pimcommon-devel + cmake + extra-cmake-modules + 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 + libkdepim-devel + extra-cmake-modules + akonadi-calendar-devel + akonadi-search-devel + qt5-webkit-devel + grantlee-qt5-devel + kdoctools-devel + knewstuff-devel + kpimtextedit-devel + kimap-devel + akonadi-devel + boost-devel + + desktop/kde/application/mailimporter/pspec.xml + + + mailimporter + + qt5-base + libgcc + libkdepim + ki18n + kmime + akonadi + kconfig + karchive + kdepimlibs + kcoreaddons + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + mailimporter-devel + Development files for mailimporter + + mailimporter + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2016-05-20 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + kio-extras @@ -48593,7 +51721,694 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kate + 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 + mirrors://kde/stable/applications/16.04.0/src/kbounce-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/libksane-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/gpgmepp-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/blinken-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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. + mirrors://kde/stable/applications/16.04.0/src/picmi-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/ktp-send-file-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-thumbnailer-epub + http://kde-apps.org/content/show.php/KDE+ePub+Thumbnailer?content=151210 + + Pisi Linux Community + admin@pisilinux.org + + GPLv2 + library + desktop.kde.application + A KDE thumbnail generator for the ePub file format. + A KDE thumbnail generator for the ePub file format. + http://kde-apps.org/CONTENT/content-files/151210-kde-thumbnailer-epub-1.1.tar.gz + + qt5-base-devel + karchive-devel + kio-devel + extra-cmake-modules + + desktop/kde/application/kde-thumbnailer-epub/pspec.xml + + + kde-thumbnailer-epub + + qt5-base + kio + karchive + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + + 2016-05-23 + 1.0 + First release + Stefan Gronewold + groni@pisilinux.org + + + 2016-03-14 + 1.0 + First release + Stefan Gronewold + 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/16.04.0/src/kldap-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kdepim-runtime-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kross-interpreters http://www.kde.org Pisi Linux Admins @@ -48602,68 +52417,3130 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol LGPLv2 app:gui desktop.kde.application - Advanced Text Editor - Plasma library and runtime components based upon KF5 and Qt5 - mirrors://kde/stable/applications/16.04.0/src/kate-16.04.0.tar.xz + Kross interpreter plugins for programming languages + Language interpreters to enable in-process scripting with Kross. + mirrors://kde/stable/applications/16.04.0/src/kross-interpreters-16.04.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 + kdoctools-devel + kdelibs4-support-devel + kross-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + python-devel - desktop/kde/application/kate/pspec.xml + desktop/kde/application/kross-interpreters/pspec.xml - kate + kross-interpreters qt5-base libgcc - libgit2 - knewstuff + python + kross + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kcontacts-16.04.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 - kded - kguiaddons - kactivities - kjobwidgets - kitemmodels + 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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kmailtransport-16.04.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 - kparts - ktexteditor - kwindowsystem - kxmlgui - plasma-framework + 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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/akonadi-calendar-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/ktp-auth-handler-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/print-manager-16.04.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 - kbookmarks + qt5-base + kdbusaddons + kiconthemes + kcoreaddons + kwindowsystem + knotifications + kconfigwidgets + kwidgetsaddons + qt5-declarative + system-config-printer + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/kiriki-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/libkdcraw-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 + mirrors://kde/stable/applications/16.04.0/src/ktp-filetransfer-handler-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/kcalcore-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + snorenotify + https://github.com/KDE/snorenotify + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv3 + app + desktop.kde.application + Multi-platform Qt5 notification framework + Snorenotify is a multi platform Qt notification framework. Using a plugin system it is possible to create notifications with many different notification systems on Windows, Unix and Mac. + http://download.kde.org/stable/snorenotify/0.7.0/src/snorenotify-0.7.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-linguist + qt5-quick1-devel + qt5-multimedia-devel + qt5-websockets-devel + + desktop/kde/application/snorenotify/pspec.xml + + + snorenotify + Multi-platform Qt5 notification framework + + libgcc + qt5-base + qt5-multimedia + qt5-websockets + qt5-declarative + + + /usr/bin + /usr/lib/qt5 + /usr/lib/libsnore* + /usr/share/applications + /usr/share/locale + /usr/share/icons + /usr/share/doc + + + + snorenotify-devel + Devel files for snorenotify + + snorenotify + qt5-base-devel + + + /usr/lib/cmake + /usr/include + + + + + 2016-05-24 + 0.7.0 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-02-04 + 0.7.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + pimcommon + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.application + Common libraries for KDE PIM + Common libraries for KDE PIM + mirrors://kde/stable/applications/16.04.0/src/pimcommon-16.04.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 + libkdepim-devel + extra-cmake-modules + akonadi-calendar-devel + akonadi-search-devel + qt5-webkit-devel + grantlee-qt5-devel + kdoctools-devel + knewstuff-devel + kpimtextedit-devel + kimap-devel + + desktop/kde/application/pimcommon/pspec.xml + + + pimcommon + + qt5-base + kio + ki18n + libgcc + kcodecs + kmime + kldap + kxmlgui + kcalcore + kcontacts + kconfig + libxml2 + kservice + kguiaddons + kitemviews kcompletion kcoreaddons kdbusaddons kiconthemes + kitemmodels ktextwidgets - threadweaver + kconfigwidgets + kwidgetsaddons + kdelibs4-support + qt5-phonon + prison-qt5 + akonadi + libkdepim + akonadi-calendar + akonadi-search + qt5-webkit + kdoctools + knewstuff + kpimtextedit + grantlee-qt5 + kimap + 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 + /usr/share/akonadicontact/grantleetheme/default + + + + pimcommon-devel + Development package for pimcommon libraries + Contains development tools and header files for pimcommon + + qt5-base-devel + boost-devel + pimcommon + + + /usr/lib/cmake + /usr/include + /usr/lib/gpgmepp + /usr/share/kde4/apps/cmake + + + + + 2016-04-25 + 16.04.0 + 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/16.04.0/src/kgeography-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-05-28 + 1.6.0 + Release bump + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-05-08 + 1.6.0 + 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/16.04.0/src/bovo-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/bomber-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 + mirrors://kde/stable/applications/16.04.0/src/ktp-kded-module-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + messagelib + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + KDE PIM library providing support for mail applications + KDE PIM library providing support for mail applications + mirrors://kde/stable/applications/16.04.0/src/messagelib-16.04.0.tar.xz + + qt5-base-devel + extra-cmake-modules + boost-devel + kdoctools-devel + mailimporter-devel + libgravatar-devel + kdepim-apps-libs-devel + kidentitymanagement-devel + kmailtransport-devel + kmailtransport-devel + kmbox-devel + akonadi-devel + kjobwidgets-devel + solid-devel + kitemmodels-devel + kdelibs4-support-devel + qt5-webkit-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kmime-devel + kcontacts-devel + kcalcore-devel + kdewebkit-devel + gpgmepp-devel + akonadi-calendar-devel + akonadi-search-devel + kpimtextedit-devel + kimap-devel + kldap-devel + grantleetheme-devel + pimcommon-devel + libkleo-devel + libkdepim-devel + gpgme-devel + grantlee-qt5-devel + openldap-client + cyrus-sasl-devel + + desktop/kde/application/messagelib/pspec.xml + + + messagelib + + qt5-base + libgcc + libkdepim + mailimporter + kio + ki18n + kmbox + kmime + sonnet + akonadi + gpgmepp + kcodecs + kconfig + kxmlgui + libkleo + karchive + kcalcore + kservice + kcontacts + kdewebkit + pimcommon + kdepimlibs + kitemviews + qt5-webkit + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kjobwidgets + libgravatar + grantlee-qt5 + kpimtextedit + ktextwidgets + grantleetheme + kwindowsystem + akonadi-search + kconfigwidgets + kmailtransport + knotifications + kwidgetsaddons + kdepim-apps-libs + kidentitymanagement + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + messagelib-devel + Development files for messagelib + + messagelib + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2016-05-20 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/konsole-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 + mirrors://kde/stable/applications/16.04.0/src/kmines-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 + mirrors://kde/stable/applications/16.04.0/src/ktp-text-ui-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kleopatra + https://www.kde.org/applications/utilities/kleopatra/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + FDL-1.1 + LGPLv2 + app:gui + desktop.kde.application + Certificate Manager and Unified Crypto GUI + Kleopatra is a certificate manager and a universal crypto GUI. It supports managing X.509 and OpenPGP certificates in the GpgSM keybox and retrieving certificates from LDAP servers. + http://download.kde.org/stable/applications/16.04.0/src/kleopatra-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + kcodecs-devel + kdbusaddons-devel + kcmutils-devel + libkleo-devel + kdoctools-devel + gpgmepp-devel + kmime-devel + libassuan-devel + gpgme-devel + + desktop/kde/application/kleopatra/pspec.xml + + + kleopatra + Certificate Manager and Unified Crypto GUI + + gpgme + ki18n + kmime + libgcc + gpgmepp + kconfig + kxmlgui + libkleo + kcmutils + qt5-base + libassuan + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + libgpg-error + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/doc + + + + + 2016-06-09 + 16.04.0 + Firs 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 + mirrors://kde/stable/applications/16.04.0/src/katomic-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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ü. + mirrors://kde/stable/applications/16.04.0/src/kdenetwork-filesharing-16.04.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 + + + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + minuet + https://minuet.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + A KDE Software for Music Education + Music education Free Software, thoughtfully designed to push your musical skills to the next level. Enhance your ability to recognize intervals, chords, rhythm, and scales while enjoying all the power of Free Software. + http://download.kde.org/stable/applications/16.04.0/src/minuet-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + ki18n-devel + kxmlgui-devel + kio-devel + kcrash-devel + kdoctools-devel + alsa-lib-devel + drumstick-devel + + desktop/kde/application/minuet/pspec.xml + + + minuet + A KDE Software for Music Education + + kio + ki18n + kcrash + libgcc + kconfig + kxmlgui + alsa-lib + qt5-base + kcompletion + kcoreaddons + drumstick-libs + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/bin + /usr/share + /usr/share/appdata + /usr/share/applications + /usr/share/doc + /usr/share/icons + /usr/share/kxmlgui5 + /usr/share/minuet + + + + + 2016-04-20 + 16.04 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libkgeomap + https://www.kde.org/applications/graphics/ + + Alihan Öztürk + alihan@pisilinux.org + + FDL-1.1 + GPLv2 + LGPLv2 + app:gui + desktop.kde.application + A wrapper around world map components for browsing and arranging photos on a map. + A wrapper around world map components for browsing and arranging photos on a map. + http://download.kde.org/stable/applications/16.04.0/src/libkgeomap-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-webkit-devel + ki18n-devel + kconfig-devel + kio-devel + ktextwidgets-devel + marble-devel + + desktop/kde/application/libkgeomap/pspec.xml + + + libkgeomap + A wrapper around world map components for browsing and arranging photos on a map. + + kio + ki18n + libgcc + marble + kconfig + qt5-base + qt5-webkit + kcoreaddons + + + /usr/lib + /usr/share/libkgeomap + /usr/share/doc + + + + libkgeomap-devel + Developments files for libkgeomap. + + libkgeomap + + + /usr/include + /usr/lib/cmake + + + + + 2016-06-09 + 16.04.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + mailcommon + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + KDE PIM library providing support for mail applications + KDE PIM library providing support for mail applications + mirrors://kde/stable/applications/16.04.0/src/mailcommon-16.04.0.tar.xz + + qt5-base-devel + extra-cmake-modules + boost-devel + kdoctools-devel + mailimporter-devel + messagelib-devel + libgravatar-devel + kdepim-apps-libs-devel + kidentitymanagement-devel + kmailtransport-devel + kmailtransport-devel + kmbox-devel + akonadi-devel + kjobwidgets-devel + solid-devel + kitemmodels-devel + kdelibs4-support-devel + qt5-webkit-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kmime-devel + kcontacts-devel + kcalcore-devel + kdewebkit-devel + gpgmepp-devel + akonadi-calendar-devel + akonadi-search-devel + kpimtextedit-devel + kimap-devel + kldap-devel + grantleetheme-devel + pimcommon-devel + libkleo-devel + libkdepim-devel + gpgme-devel + grantlee-qt5-devel + openldap-client + cyrus-sasl-devel + + desktop/kde/application/mailcommon/pspec.xml + + + mailcommon + + qt5-base + libgcc + libkdepim + mailimporter + kio + ki18n + kmime + akonadi + kcodecs + kconfig + kxmlgui + karchive + kcontacts + pimcommon + kdepimlibs + kitemviews + messagelib + qt5-phonon + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kpimtextedit + ktextwidgets + kwindowsystem + kconfigwidgets + kmailtransport + kwidgetsaddons + kidentitymanagement + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + mailcommon-devel + Development files for mailcommon + + mailcommon + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2016-05-20 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkdepim + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + Libraries for KDE PIM applications + Libraries for KDE PIM applications + mirrors://kde/stable/applications/16.04.0/src/libkdepim-16.04.0.tar.xz + + qt5-base-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + akonadi-devel + kjobwidgets-devel + kitemmodels-devel + kdelibs4-support-devel + kunitconversion-devel + kemoticons-devel + kinit-devel + solid-devel + cmake + extra-cmake-modules + boost-devel + kmime-devel + kcmutils-devel + kldap-devel + cyrus-sasl-devel + kcontacts-devel + akonadi-calendar-devel + akonadi-search-devel + + desktop/kde/application/libkdepim/pspec.xml + + + libkdepim + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kservice + akonadi-search + akonadi-calendar + kjobwidgets + kitemmodels + kdelibs4-support + kunitconversion + kemoticons + kinit + solid + kmime + kcmutils + kldap + cyrus-sasl + kcontacts + akonadi + kcodecs + kwallet + kdepimlibs + kitemviews + kiconthemes + + + /usr/lib + /usr/bin + /usr/share + /usr/share/icons + /etc + + + + libkdepim-devel + Development files for libkdepim + + libkdepim + qt5-base-devel + kxmlgui-devel + ki18n-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-05-20 + 16.04.0 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-04-25 + 16.04.0 + 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. + mirrors://kde/stable/applications/16.04.0/src/kdebugsettings-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/kholidays-16.04.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + autogen-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 + qt5-declarative + 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 + + + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-28 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/kaccounts-integration-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcmutils-devel + ki18n-devel + kcoreaddons-devel + kdbusaddons-devel + libaccounts-qt5-devel + libaccounts-glib-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 + libaccounts-qt5-devel + + + /usr/include + /usr/lib/cmake/KAccounts + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/rocs-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/kdeedu-data-16.04.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/application/kdeedu-data/pspec.xml + + + kdeedu-data + + /usr/share + /usr/share/doc + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/dolphin-plugins-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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. + mirrors://kde/stable/applications/16.04.0/src/ktuberling-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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/16.04.0/src/dragon-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/analitza-16.04.0.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/khangman-16.04.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 @@ -48685,6 +55562,414 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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/16.04.0/src/akonadi-16.04.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 + kitemmodels-devel + kdesignerplugin + kio-devel + extra-cmake-modules + + desktop/kde/application/akonadi/pspec.xml + + + akonadi + app:console + + qt5-base + kio + sqlite + libgcc + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-postgresql + postgresql-server + kitemmodels + kdesignerplugin + mariadb-client + mariadb-server + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/mime + /usr/share + /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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdgantt2 + https://community.kde.org/KDE_PIM + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.application + Library providing gantt support + Library providing gantt support + http://download.kde.org/stable/applications/16.04.0/src/kdgantt2-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + + desktop/kde/application/kdgantt2/pspec.xml + + + kdgantt2 + Library providing gantt support + + libgcc + qt5-base + + + /etc + /usr/lib/qt5 + /usr/lib + + + + kdgantt2-devel + Development files for kdgantt2 + + kdgantt2 + + + /usr/include + /usr/lib/cmake + + + + + 2016-05-22 + 16.04.0 + 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 + mirrors://kde/stable/applications/16.04.0/src/killbots-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/signon-kwallet-extension-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/akonadi-search-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + kfourinline @@ -48772,6 +56057,637 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + incidenceeditor + https://community.kde.org/KDE_PIM + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.application + KDE PIM incidence editor. + KDE PIM incidence editor. + http://download.kde.org/stable/applications/16.04.0/src/incidenceeditor-16.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + akonadi-devel + kcompletion-devel + kjobwidgets-devel + kcoreaddons-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdelibs4-support-devel + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + boost-devel + kmime-devel + kdepimlibs-devel + kldap-devel + cyrus-sasl-devel + calendarsupport-devel + kidentitymanagement-devel + akonadi-calendar-devel + kcalcore-devel + kcontacts-devel + eventviews-devel + kcalutils-devel + kdepim-apps-libs-devel + kdgantt2-devel + kmailtransport-devel + libkdepim-devel + + desktop/kde/application/incidenceeditor/pspec.xml + + + incidenceeditor + KDE PIM incidence editor. + + kio + ki18n + kldap + kmime + libgcc + akonadi + kcodecs + kconfig + kxmlgui + kcalcore + kdgantt2 + kservice + qt5-base + kcalutils + kcontacts + libkdepim + eventviews + kdepimlibs + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kjobwidgets + kpimtextedit + ktextwidgets + kconfigwidgets + kmailtransport + kwidgetsaddons + calendarsupport + akonadi-calendar + kdelibs4-support + kdepim-apps-libs + kidentitymanagement + + + /usr/lib + /usr/lib/qt5 + + + + incidenceeditor-devel + Development files for incidenceeditor. + + incidenceeditor + + + /usr/include + /usr/lib/cmake + + + + + 2016-05-22 + 16.04.0 + First release. + Alihan Öztürk + alihan@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/16.04.0/src/kanagram-16.04.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 + qt5-multimedia-devel + + desktop/kde/application/kanagram/pspec.xml + + + kanagram + + ki18n + libgcc + sonnet + kconfig + kxmlgui + qt5-base + knewstuff + kcoreaddons + kdeclarative + qt5-multimedia + kconfigwidgets + qt5-declarative + libkeduvocdocument + + + /etc/xdg + /usr/share + /usr/bin + /usr/share/doc + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/ksystemlog-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kalarmcal-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 + mirrors://kde/stable/applications/16.04.0/src/kde-dev-scripts-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + 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 + mirrors://kde/stable/applications/16.04.0/src/knavalbattle-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + mirrors://kde/stable/applications/16.04.0/src/kbreakout-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + plasma-applet-distrowatcher + http://kde-apps.org/content/show.php/Distro+Watcher+?content=157314 + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv3 + app:gui + desktop.kde.application + Distrowatcher watch the latest Realeases of Linux distributions from Distrowatch + The specific plasmoid displays the latest releases of Linux distributions and packages, as published in distrowatch.com. In order to retrieve the relative data, RSS feeds from distrowatch are being used. + https://github.com/dimkard/distrowatcher/archive/v1.0.3.tar.gz + + qt5-base-devel + qt5-xmlpatterns-devel + qt5-quick1-devel + kdelibs4-support-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/application/plasma-applet-distrowatcher/pspec.xml + + + plasma-applet-distrowatcher + + qt5-base + + + /usr/share + /usr/share/doc + /usr/share/icons + /usr/share/locale + + + + + 2016-05-23 + 1.0.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-03-14 + 1.0.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + kdepim @@ -49938,4777 +57854,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - kdesdk-thumbnailers - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - library - desktop.kde.application - Translation file thumbnail generators - Translation file thumbnail generators - mirrors://kde/stable/applications/16.04.0/src/kdesdk-thumbnailers-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/kblackbox-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/kmines-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kholidays-16.04.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - autogen-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 - qt5-declarative - 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 - - - - - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-28 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - eventviews - https://community.kde.org/KDE_PIM - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.application - Library for creating events. - Library for creating events. - http://download.kde.org/stable/applications/16.04.0/src/eventviews-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - akonadi-devel - kcompletion-devel - kjobwidgets-devel - kcoreaddons-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdelibs4-support-devel - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - boost-devel - libkdepim-devel - kdepimlibs-devel - kcontacts-devel - kcalcore-devel - kdgantt2-devel - kcalutils-devel - calendarsupport-devel - kmime-devel - kidentitymanagement-devel - akonadi-calendar-devel - - desktop/kde/application/eventviews/pspec.xml - - - eventviews - Library for creating events. - - ki18n - libgcc - akonadi - kcodecs - kconfig - kcalcore - kdgantt2 - kservice - qt5-base - kcalutils - kcontacts - libkdepim - kguiaddons - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kconfigwidgets - kwidgetsaddons - calendarsupport - akonadi-calendar - kdelibs4-support - - - /etc - /usr/lib - /usr/lib/qt5 - /usr/share/kservicetypes5 - - - - eventviews-devel - Development files for eventviews. - - eventviews - - - /usr/include - /usr/lib/cmake - - - - - 2016-05-22 - 16.04.0 - 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/16.04.0/src/konsole-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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. - mirrors://kde/stable/applications/16.04.0/src/ktuberling-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/rocs-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kmbox-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/kcron-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/kaccounts-integration-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcmutils-devel - ki18n-devel - kcoreaddons-devel - kdbusaddons-devel - libaccounts-qt5-devel - libaccounts-glib-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 - libaccounts-qt5-devel - - - /usr/include - /usr/lib/cmake/KAccounts - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/bovo-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kalgebra-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/dolphin-16.04.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-devel - kdoctools-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/application/dolphin/pspec.xml - - - dolphin - - qt5-base - kfilemetadata - baloo - baloo-widgets - 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 - baloo-widgets-devel - kfilemetadata-devel - kparts-devel - ktexteditor-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - - - /usr/include - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/ktp-filetransfer-handler-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/print-manager-16.04.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 - system-config-printer - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/ktp-kded-module-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kgeography-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kldap-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/baloo-widgets-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kpmcore - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Library for managing partitions. - Library for managing partitions. - mirrors://kde/stable/kpmcore/2.1.1/src/kpmcore-2.1.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/kpmcore/pspec.xml - - - kpmcore - - kio - ki18n - libgcc - parted - kservice - qt5-base - kcoreaddons - kiconthemes - libatasmart - libutil-linux - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - kpmcore-devel - Development files for kpmcore - - kpmcore - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2016-01-17 - 2.1.1 - Release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-01-17 - 2.1.1 - 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 - mirrors://kde/stable/applications/16.04.0/src/klickety-16.04.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/sounds - /usr/share/doc - - - - - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-05-28 - 1.6.0 - Release bump - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-05-08 - 1.6.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - snorenotify - https://github.com/KDE/snorenotify - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv3 - app - desktop.kde.application - Multi-platform Qt5 notification framework - Snorenotify is a multi platform Qt notification framework. Using a plugin system it is possible to create notifications with many different notification systems on Windows, Unix and Mac. - http://download.kde.org/stable/snorenotify/0.7.0/src/snorenotify-0.7.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-linguist - qt5-quick1-devel - qt5-multimedia-devel - qt5-websockets-devel - - desktop/kde/application/snorenotify/pspec.xml - - - snorenotify - Multi-platform Qt5 notification framework - - libgcc - qt5-base - qt5-multimedia - qt5-websockets - qt5-declarative - - - /usr/bin - /usr/lib/qt5 - /usr/lib/libsnore* - /usr/share/applications - /usr/share/locale - /usr/share/icons - /usr/share/doc - - - - snorenotify-devel - Devel files for snorenotify - - snorenotify - qt5-base-devel - - - /usr/lib/cmake - /usr/include - - - - - 2016-05-24 - 0.7.0 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-02-04 - 0.7.0 - First release - Alihan Öztürk - alihan@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. - mirrors://kde/stable/applications/16.04.0/src/kdegraphics-thumbnailers-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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. - mirrors://kde/stable/applications/16.04.0/src/ffmpegthumbs-16.04.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 - - - - - 2016-06-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kleopatra - https://www.kde.org/applications/utilities/kleopatra/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - FDL-1.1 - LGPLv2 - app:gui - desktop.kde.application - Certificate Manager and Unified Crypto GUI - Kleopatra is a certificate manager and a universal crypto GUI. It supports managing X.509 and OpenPGP certificates in the GpgSM keybox and retrieving certificates from LDAP servers. - http://download.kde.org/stable/applications/16.04.0/src/kleopatra-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - kcodecs-devel - kdbusaddons-devel - kcmutils-devel - libkleo-devel - kdoctools-devel - gpgmepp-devel - kmime-devel - libassuan-devel - gpgme-devel - - desktop/kde/application/kleopatra/pspec.xml - - - kleopatra - Certificate Manager and Unified Crypto GUI - - gpgme - ki18n - kmime - libgcc - gpgmepp - kconfig - kxmlgui - libkleo - kcmutils - qt5-base - libassuan - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - libgpg-error - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/doc - - - - - 2016-06-09 - 16.04.0 - Firs release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libkleo - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.application - Common libraries for KDE PIM - Common libraries for KDE PIM - mirrors://kde/stable/applications/16.04.1/src/libkleo-16.04.1.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 - gpgmepp-devel - - desktop/kde/application/libkleo/pspec.xml - - - libkleo - - 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 - gpgmepp - kpimtextedit - kwindowsystem - 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 - /usr/share/akonadicontact/grantleetheme/default - /usr/share/libkleopatra - - - - libkleo-devel - Development package for libkleo libraries - Contains development tools and header files for libkleo - - qt5-base-devel - boost-devel - libkleo - - - /usr/lib/cmake - /usr/include - /usr/lib/gpgmepp - /usr/share/kde4/apps/cmake - - - - - 2016-04-25 - 16.04.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libksieve - https://community.kde.org/KDE_PIM - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.application - KDE PIM library for managing sieves. - KDE PIM library for managing sieves. - http://download.kde.org/stable/applications/16.04.0/src/libksieve-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - akonadi-devel - kcompletion-devel - kjobwidgets-devel - kcoreaddons-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdelibs4-support-devel - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - boost-devel - qt5-webkit-devel - pimcommon-devel - kcontacts-devel - kdepimlibs-devel - kcalcore-devel - kimap-devel - kmime-devel - cyrus-sasl-devel - knewstuff-devel - kidentitymanagement-devel - kmailtransport-devel - libkdepim-devel - - desktop/kde/application/libksieve/pspec.xml - - - libksieve - KDE PIM library for managing sieves. - - kio - ki18n - kmime - libgcc - sonnet - akonadi - kconfig - karchive - qt5-base - knewstuff - libkdepim - pimcommon - cyrus-sasl - qt5-webkit - kcompletion - kcoreaddons - kiconthemes - kpimtextedit - kwindowsystem - kconfigwidgets - kwidgetsaddons - kidentitymanagement - - - /etc - /usr/lib - /usr/lib/qt5 - /usr/share/sieve - - - - libksieve-devel - Development files for libksieve. - - libksieve - - - /usr/include - /usr/lib/cmake - - - - - 2016-05-22 - 16.04.0 - First release - Alihan Öztürk - alihan@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 - mirrors://kde/stable/applications/16.04.0/src/knavalbattle-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kidentitymanagement-16.04.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 - kpimtextedit-devel - extra-cmake-modules - - desktop/kde/application/kidentitymanagement/pspec.xml - - - kidentitymanagement - - qt5-base - kpimtextedit - kio - ki18n - libgcc - kcodecs - kconfig - kxmlgui - kcompletion - kcoreaddons - ktextwidgets - kwidgetsaddons - kpimtextedit - - - /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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/2.1.0/src/partitionmanager-2.1.0.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 - kpmcore-devel - - desktop/kde/application/partitionmanager/pspec.xml - - - partitionmanager - - qt5-base - libgcc - libutil-linux - kio - ki18n - kconfig - kxmlgui - kservice - kcoreaddons - kiconthemes - kjobwidgets - kconfigwidgets - kwidgetsaddons - kpmcore - kcrash - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2016-05-23 - 2.1.0 - Release bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-01-17 - 2.1.0 - First Release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - mailcommon - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - KDE PIM library providing support for mail applications - KDE PIM library providing support for mail applications - mirrors://kde/stable/applications/16.04.0/src/mailcommon-16.04.0.tar.xz - - qt5-base-devel - extra-cmake-modules - boost-devel - kdoctools-devel - mailimporter-devel - messagelib-devel - libgravatar-devel - kdepim-apps-libs-devel - kidentitymanagement-devel - kmailtransport-devel - kmailtransport-devel - kmbox-devel - akonadi-devel - kjobwidgets-devel - solid-devel - kitemmodels-devel - kdelibs4-support-devel - qt5-webkit-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kmime-devel - kcontacts-devel - kcalcore-devel - kdewebkit-devel - gpgmepp-devel - akonadi-calendar-devel - akonadi-search-devel - kpimtextedit-devel - kimap-devel - kldap-devel - grantleetheme-devel - pimcommon-devel - libkleo-devel - libkdepim-devel - gpgme-devel - grantlee-qt5-devel - openldap-client - cyrus-sasl-devel - - desktop/kde/application/mailcommon/pspec.xml - - - mailcommon - - qt5-base - libgcc - libkdepim - mailimporter - kio - ki18n - kmime - akonadi - kcodecs - kconfig - kxmlgui - karchive - kcontacts - pimcommon - kdepimlibs - kitemviews - messagelib - qt5-phonon - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kpimtextedit - ktextwidgets - kwindowsystem - kconfigwidgets - kmailtransport - kwidgetsaddons - kidentitymanagement - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - mailcommon-devel - Development files for mailcommon - - mailcommon - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2016-05-20 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - mailimporter - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - Mail importer library - Mail importer library - mirrors://kde/stable/applications/16.04.0/src/mailimporter-16.04.0.tar.xz - - qt5-base-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - pimcommon-devel - cmake - extra-cmake-modules - 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 - libkdepim-devel - extra-cmake-modules - akonadi-calendar-devel - akonadi-search-devel - qt5-webkit-devel - grantlee-qt5-devel - kdoctools-devel - knewstuff-devel - kpimtextedit-devel - kimap-devel - akonadi-devel - boost-devel - - desktop/kde/application/mailimporter/pspec.xml - - - mailimporter - - qt5-base - libgcc - libkdepim - ki18n - kmime - akonadi - kconfig - karchive - kdepimlibs - kcoreaddons - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - mailimporter-devel - Development files for mailimporter - - mailimporter - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2016-05-20 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/ktp-send-file-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - krdc - http://www.kde.org/applications/internet/krdc/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Remote Desktop Client - Uzak masaüstü bağlantı istemcisi. - KRDC is a client application that allows you to view or even control the desktop session on another machine that is running a compatible server. VNC and RDP is supported. - krdc, uzaktaki bir masaüstü oturumunu görüntülemenizi ve kontrol etmenizi sağlar. RDP kullanan Windows Terminal Sunucuları'na ve VNC/RFB kullanan diğer pek çok platforma bağlanabilirç - http://download.kde.org/stable/applications/16.04.0/src/krdc-16.04.0.tar.xz - - extra-cmake-modules - kconfig-devel - kcmutils-devel - kdnssd-devel - knotifyconfig-devel - knotifications-devel - kbookmarks-devel - kiconthemes-devel - kxmlgui-devel - kcompletion-devel - kwallet-devel - kwidgetsaddons-devel - ki18n-devel - libvncserver-devel - - desktop/kde/application/krdc/pspec.xml - - - krdc - - ki18n - kdnssd - libgcc - kconfig - kwallet - kxmlgui - kcmutils - kservice - qt5-base - kbookmarks - kcompletion - kcoreaddons - libvncserver - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share/applications - /usr/share/config.kcfg - /usr/share/krdc - /usr/share/kxmlgui5 - /usr/share/kservices5 - /usr/share/doc - - - - krdc-devel - - krdc - - - /usr/include - - - - - 2016-04-20 - 16.04 - First release - Alihan Öztürk - alihan@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/16.04.0/src/cantor-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/kollision-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/step-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkdepim - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - Libraries for KDE PIM applications - Libraries for KDE PIM applications - mirrors://kde/stable/applications/16.04.0/src/libkdepim-16.04.0.tar.xz - - qt5-base-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - akonadi-devel - kjobwidgets-devel - kitemmodels-devel - kdelibs4-support-devel - kunitconversion-devel - kemoticons-devel - kinit-devel - solid-devel - cmake - extra-cmake-modules - boost-devel - kmime-devel - kcmutils-devel - kldap-devel - cyrus-sasl-devel - kcontacts-devel - akonadi-calendar-devel - akonadi-search-devel - - desktop/kde/application/libkdepim/pspec.xml - - - libkdepim - - qt5-base - kxmlgui - ki18n - libgcc - kconfig - kservice - akonadi-search - akonadi-calendar - kjobwidgets - kitemmodels - kdelibs4-support - kunitconversion - kemoticons - kinit - solid - kmime - kcmutils - kldap - cyrus-sasl - kcontacts - akonadi - kcodecs - kwallet - kdepimlibs - kitemviews - kiconthemes - - - /usr/lib - /usr/bin - /usr/share - /usr/share/icons - /etc - - - - libkdepim-devel - Development files for libkdepim - - libkdepim - qt5-base-devel - kxmlgui-devel - ki18n-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-05-20 - 16.04.0 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-04-25 - 16.04.0 - 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 - mirrors://kde/stable/applications/16.04.0/src/klines-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kimap-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/ksystemlog-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kmime-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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. - mirrors://kde/stable/applications/16.04.0/src/kdenlive-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-script-devel - qt5-svg-devel - qt5-webkit-devel - qt5-location-devel - karchive-devel - kbookmarks-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - kfilemetadata-devel - libv4l-devel - kio-devel - ffmpeg-devel - sdl-image-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 - cdrkit - ki18n - solid - kcrash - libgcc - ffmpeg - kconfig - kxmlgui - qt5-svg - karchive - kservice - qt5-base - knewstuff - kplotting - sdl-image - dvdauthor - kbookmarks - kguiaddons - kitemviews - qt5-script - qt5-webkit - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - qt5-location - ktextwidgets - kfilemetadata - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - qt5-declarative - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/man - - - - - 2016-06-25 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/kapman-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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ü. - mirrors://kde/stable/applications/16.04.0/src/kdenetwork-filesharing-16.04.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 - - - - - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/kiriki-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/kde-dev-scripts-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - https://sourceforge.net/projects/pisilinux/files/source/okular-16.03.80_20160402.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 - - - /etc/xdg - /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 - - - - - 2016-05-24 - 16.03.80_20160402 - Release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-02-02 - 16.03.80_20160402 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-05-23 - 5.1.0 - Release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-26 - 5.1.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - pimcommon - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.application - Common libraries for KDE PIM - Common libraries for KDE PIM - mirrors://kde/stable/applications/16.04.0/src/pimcommon-16.04.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 - libkdepim-devel - extra-cmake-modules - akonadi-calendar-devel - akonadi-search-devel - qt5-webkit-devel - grantlee-qt5-devel - kdoctools-devel - knewstuff-devel - kpimtextedit-devel - kimap-devel - - desktop/kde/application/pimcommon/pspec.xml - - - pimcommon - - 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 - libkdepim - akonadi-calendar - akonadi-search - qt5-webkit - kdoctools - knewstuff - kpimtextedit - grantlee-qt5 - kimap - 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 - /usr/share/akonadicontact/grantleetheme/default - - - - pimcommon-devel - Development package for pimcommon libraries - Contains development tools and header files for pimcommon - - qt5-base-devel - boost-devel - pimcommon - - - /usr/lib/cmake - /usr/include - /usr/lib/gpgmepp - /usr/share/kde4/apps/cmake - - - - - 2016-04-25 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/ktnef-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/akonadi-search-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - skanlite - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Lite scanning tool for KDE - KDE için hafif bir tarayıcı aracı - Skanlite, provides to use scanner device plugged in your system with Sane backend. - Skanlite, sisteminize takılı tarayıcı aygıtlarını Sane uygulaması ile birlikte kullanmanıza olanak sağlar. - http://download.kde.org/stable/skanlite/2.0/skanlite-2.0.tar.xz - - extra-cmake-modules - qt5-base-devel - zlib-devel - libpng-devel - kcoreaddons-devel - ki18n-devel - kxmlgui-devel - kio-devel - kdoctools-devel - ktextwidgets-devel - libksane-devel - - desktop/kde/application/skanlite/pspec.xml - - - skanlite - - kio - ki18n - libgcc - libpng - kconfig - kxmlgui - libksane - qt5-base - kcoreaddons - kjobwidgets - kconfigwidgets - kwidgetsaddons - sane-backends - - - /usr/bin - /usr/share/doc - /usr/share/applications - - - - - 2016-05-23 - 2.0 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-02-02 - 2.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - grantleetheme @@ -54791,87 +57936,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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/16.04.0/src/khangman-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kbreakout + kjumpingcube http://games.kde.org PisiLinux Community @@ -54880,12 +57945,12 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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 - mirrors://kde/stable/applications/16.04.0/src/kbreakout-16.04.0.tar.xz + Territory capture game + Alan kapma oyunu + KJumpingCube is a simple tactical game. + KJumpingCube basit bir taktik oyunudur. + kjumpingcube + mirrors://kde/stable/applications/16.04.0/src/kjumpingcube-16.04.0.tar.xz extra-cmake-modules qt5-base-devel @@ -54893,380 +57958,47 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol qt5-svg-devel kcoreaddons-devel kconfig-devel + kitemmodels-devel kwidgetsaddons-devel + kwindowsystem-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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kcalcore-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/killbots-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/kbounce-16.04.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 + knewstuff-devel kdelibs4-support-devel kdesignerplugin kdoctools-devel kemoticons-devel - kitemmodels-devel kinit-devel kunitconversion-devel + libkdegames-devel - desktop/kde/application/kbounce/pspec.xml + desktop/kde/application/kjumpingcube/pspec.xml - kbounce + kjumpingcube - kio ki18n libgcc kconfig kxmlgui qt5-svg qt5-base - kcompletion kcoreaddons - kdbusaddons libkdegames kconfigwidgets kwidgetsaddons + kdelibs4-support /usr/share - /usr/share/doc - /usr/bin - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/artikulate-16.04.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 @@ -55288,438 +58020,55 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - poxml - http://www.kde.org/ + kruler + http://www.kde.org/applications/graphics/kruler - Mathias Freire - mathiasfreire45@gmail.com + PisiLinux Community + admins@pisilinux.org 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. - mirrors://kde/stable/applications/16.04.0/src/poxml-16.04.0.tar.xz + 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/16.04.0/src/kruler-16.04.0.tar.xz - extra-cmake-modules qt5-base-devel - gettext-devel kdoctools-devel + cmake + extra-cmake-modules + ki18n-devel + knotifications-devel + kwindowsystem-devel + kxmlgui-devel + python-devel docbook-xsl - desktop/kde/application/poxml/pspec.xml + desktop/kde/application/kruler/pspec.xml - poxml - - libgcc - gettext - qt5-base - - - /usr/bin - /usr/share/doc - /usr/share/man - - - kdesdk - - - kdesdk - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/akonadi-calendar-16.04.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 + kruler qt5-base - ki18n - kcodecs - kdelibs4-support - kio - kmime - libgcc - kconfig kxmlgui - kcalcore - kcalutils - kcontacts - kdepimlibs + knotifications + ki18n + libgcc + libxcb + kconfig kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - kjobwidgets + kwindowsystem + qt5-x11extras 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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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.9.tar.gz - desktop/kde/application/kde-servicemenu-rootactions/pspec.xml - - - kde-servicemenu-rootactions - /usr/bin - /usr/share/kservices5 - /usr/share/doc - - - - - 2016-05-23 - 2.9 - Release bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-04-10 - 2.9 - First release - Stefan Gronewold - 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/16.04.0/src/kdeedu-data-16.04.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/application/kdeedu-data/pspec.xml - - - kdeedu-data - /usr/share - /usr/share/doc - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/analitza-16.04.0.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/ktp-contact-runner-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/libkeduvocdocument-16.04.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 @@ -55851,1950 +58200,27 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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/16.04.0/src/bomber-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/ktp-text-ui-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkexiv2 - http://www.kde.org + cantor + http://edu.kde.org/cantor 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/16.04.0/src/libkexiv2-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - blinken - http://kde.org/applications/education/blinken/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 + GPLv2+ 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/16.04.0/src/blinken-16.04.0.tar.xz + 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/16.04.0/src/cantor-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kpimtextedit-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.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/16.04.0/src/syndication-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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. - mirrors://kde/stable/applications/16.04.0/src/krfb-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kanagram-16.04.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 - qt5-multimedia-devel - - desktop/kde/application/kanagram/pspec.xml - - - kanagram - - ki18n - libgcc - sonnet - kconfig - kxmlgui - qt5-base - knewstuff - kcoreaddons - kdeclarative - qt5-multimedia - kconfigwidgets - qt5-declarative - libkeduvocdocument - - - /etc/xdg - /usr/share - /usr/bin - /usr/share/doc - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kmailtransport-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kcontacts-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/katomic-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - incidenceeditor - https://community.kde.org/KDE_PIM - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.application - KDE PIM incidence editor. - KDE PIM incidence editor. - http://download.kde.org/stable/applications/16.04.0/src/incidenceeditor-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - akonadi-devel - kcompletion-devel - kjobwidgets-devel - kcoreaddons-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdelibs4-support-devel - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - boost-devel - kmime-devel - kdepimlibs-devel - kldap-devel - cyrus-sasl-devel - calendarsupport-devel - kidentitymanagement-devel - akonadi-calendar-devel - kcalcore-devel - kcontacts-devel - eventviews-devel - kcalutils-devel - kdepim-apps-libs-devel - kdgantt2-devel - kmailtransport-devel - libkdepim-devel - - desktop/kde/application/incidenceeditor/pspec.xml - - - incidenceeditor - KDE PIM incidence editor. - - kio - ki18n - kldap - kmime - libgcc - akonadi - kcodecs - kconfig - kxmlgui - kcalcore - kdgantt2 - kservice - qt5-base - kcalutils - kcontacts - libkdepim - eventviews - kdepimlibs - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kjobwidgets - kpimtextedit - ktextwidgets - kconfigwidgets - kmailtransport - kwidgetsaddons - calendarsupport - akonadi-calendar - kdelibs4-support - kdepim-apps-libs - kidentitymanagement - - - /usr/lib - /usr/lib/qt5 - - - - incidenceeditor-devel - Development files for incidenceeditor. - - incidenceeditor - - - /usr/include - /usr/lib/cmake - - - - - 2016-05-22 - 16.04.0 - First release. - Alihan Öztürk - alihan@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/16.04.0/src/libkdcraw-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/ktp-common-internals-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/yakuake/3.0.2/src/yakuake-3.0.2.tar.xz - - qt5-base-devel - libX11-devel - qt5-x11extras-devel - knewstuff-devel - kio-devel - kparts-devel - knotifyconfig-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - kcrash-devel - kdbusaddons-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - knewstuff-devel - knotifications-devel - kparts-devel - kwidgetsaddons-devel - kwindowsystem-devel - gettext-devel - extra-cmake-modules - - desktop/kde/application/yakuake/pspec.xml - - - yakuake - - qt5-base - qt5-x11extras - kio - kcrash - 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 - - - - - 2016-05-23 - 3.0.2 - Release bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-03-07 - 3.0.2 - 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/16.04.0/src/gwenview-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kfloppy - http://kde.org/applications/utilities/kfloppy - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A floppy formatter - A floppy formatter - KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. - KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. - kfloppy - http://download.kde.org/stable/applications/16.04.0/src/kfloppy-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - kcoreaddons-devel - kio-devel - kdoctools-devel - kdelibs4-support-devel - kxmlgui-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kfloppy/pspec.xml - - - kfloppy - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/share/doc - /usr/bin - /usr/share/icons - /usr/share/applications - - - - - 2016-04-20 - 16.04 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kde-thumbnailer-epub - http://kde-apps.org/content/show.php/KDE+ePub+Thumbnailer?content=151210 - - Pisi Linux Community - admin@pisilinux.org - - GPLv2 - library - desktop.kde.application - A KDE thumbnail generator for the ePub file format. - A KDE thumbnail generator for the ePub file format. - http://kde-apps.org/CONTENT/content-files/151210-kde-thumbnailer-epub-1.1.tar.gz - - qt5-base-devel - karchive-devel - kio-devel - extra-cmake-modules - - desktop/kde/application/kde-thumbnailer-epub/pspec.xml - - - kde-thumbnailer-epub - - qt5-base - kio - karchive - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - - - 2016-05-23 - 1.0 - First release - Stefan Gronewold - groni@pisilinux.org - - - 2016-03-14 - 1.0 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - libkgeomap - https://www.kde.org/applications/graphics/ - - Alihan Öztürk - alihan@pisilinux.org - - FDL-1.1 - GPLv2 - LGPLv2 - app:gui - desktop.kde.application - A wrapper around world map components for browsing and arranging photos on a map. - A wrapper around world map components for browsing and arranging photos on a map. - http://download.kde.org/stable/applications/16.04.0/src/libkgeomap-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-webkit-devel - ki18n-devel - kconfig-devel - kio-devel - ktextwidgets-devel - marble-devel - - desktop/kde/application/libkgeomap/pspec.xml - - - libkgeomap - A wrapper around world map components for browsing and arranging photos on a map. - - kio - ki18n - libgcc - marble - kconfig - qt5-base - qt5-webkit - kcoreaddons - - - /usr/lib - /usr/share/libkgeomap - /usr/share/doc - - - - libkgeomap-devel - Developments files for libkgeomap. - - libkgeomap - - - /usr/include - /usr/lib/cmake - - - - - 2016-06-09 - 16.04.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - plasma-applet-distrowatcher - http://kde-apps.org/content/show.php/Distro+Watcher+?content=157314 - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv3 - app:gui - desktop.kde.application - Distrowatcher watch the latest Realeases of Linux distributions from Distrowatch - The specific plasmoid displays the latest releases of Linux distributions and packages, as published in distrowatch.com. In order to retrieve the relative data, RSS feeds from distrowatch are being used. - https://github.com/dimkard/distrowatcher/archive/v1.0.3.tar.gz - - qt5-base-devel qt5-xmlpatterns-devel - qt5-quick1-devel - kdelibs4-support-devel - plasma-framework-devel - extra-cmake-modules - - desktop/kde/application/plasma-applet-distrowatcher/pspec.xml - - - plasma-applet-distrowatcher - - qt5-base - - - /usr/share - /usr/share/doc - /usr/share/icons - /usr/share/locale - - - - - 2016-05-23 - 1.0.3 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-03-14 - 1.0.3 - 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. - mirrors://kde/stable/applications/16.04.0/src/kamera-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - messagelib - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - KDE PIM library providing support for mail applications - KDE PIM library providing support for mail applications - mirrors://kde/stable/applications/16.04.0/src/messagelib-16.04.0.tar.xz - - qt5-base-devel - extra-cmake-modules - boost-devel - kdoctools-devel - mailimporter-devel - libgravatar-devel - kdepim-apps-libs-devel - kidentitymanagement-devel - kmailtransport-devel - kmailtransport-devel - kmbox-devel - akonadi-devel - kjobwidgets-devel - solid-devel - kitemmodels-devel - kdelibs4-support-devel - qt5-webkit-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kmime-devel - kcontacts-devel - kcalcore-devel - kdewebkit-devel - gpgmepp-devel - akonadi-calendar-devel - akonadi-search-devel - kpimtextedit-devel - kimap-devel - kldap-devel - grantleetheme-devel - pimcommon-devel - libkleo-devel - libkdepim-devel - gpgme-devel - grantlee-qt5-devel - openldap-client - cyrus-sasl-devel - - desktop/kde/application/messagelib/pspec.xml - - - messagelib - - qt5-base - libgcc - libkdepim - mailimporter - kio - ki18n - kmbox - kmime - sonnet - akonadi - gpgmepp - kcodecs - kconfig - kxmlgui - libkleo - karchive - kcalcore - kservice - kcontacts - kdewebkit - pimcommon - kdepimlibs - kitemviews - qt5-webkit - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kjobwidgets - libgravatar - grantlee-qt5 - kpimtextedit - ktextwidgets - grantleetheme - kwindowsystem - akonadi-search - kconfigwidgets - kmailtransport - knotifications - kwidgetsaddons - kdepim-apps-libs - kidentitymanagement - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - messagelib-devel - Development files for messagelib - - messagelib - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2016-05-20 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/kblocks-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libgravatar - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - KDE PIM library providing Gravatar support - KDE PIM library providing Gravatar support - mirrors://kde/stable/applications/16.04.0/src/libgravatar-16.04.0.tar.xz - - qt5-base-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - pimcommon-devel - cmake - extra-cmake-modules - openldap-client - cyrus-sasl-devel - kitemviews-devel - kio-devel kdelibs4-support-devel kdesignerplugin kdoctools-devel @@ -57802,2333 +58228,84 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kitemmodels-devel kinit-devel kunitconversion-devel - kmime-devel - kcontacts-devel - kcalcore-devel - kldap-devel - libkdepim-devel - extra-cmake-modules - akonadi-calendar-devel - akonadi-search-devel - qt5-webkit-devel - grantlee-qt5-devel - kdoctools-devel + ktexteditor-devel knewstuff-devel - kpimtextedit-devel - kimap-devel - akonadi-devel - boost-devel - - desktop/kde/application/libgravatar/pspec.xml - - - libgravatar - - qt5-base - kxmlgui - ki18n - libgcc - kconfig - kservice - kcoreaddons - pimcommon - ktextwidgets - kwidgetsaddons - - - /usr/lib - /usr/bin - /usr/share - /usr/share/icons - /etc - - - - libgravatar-devel - Development files for libgravatar - - libgravatar - qt5-base-devel - kxmlgui-devel - ki18n-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-04-25 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcolorchooser - http://www.kde.org/applications/graphics/kcolorchooser - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A simple color chooser application - Basit bir renk seçme uygulaması - KColorChooser is a simple color chooser application. - KColorChooser, basit bir renk seçme uygulamasıdır. - kcolorchooser - http://download.kde.org/stable/applications/16.04.0/src/kcolorchooser-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - - desktop/kde/application/kcolorchooser/pspec.xml - - - kcolorchooser - - ki18n - libgcc - kxmlgui - qt5-base - kcoreaddons - - - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/doc - - - - - 2016-04-20 - 16.04 - First release - Alihan Öztürk - alihan@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 - mirrors://kde/stable/applications/16.04.0/src/ktp-auth-handler-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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. - mirrors://kde/stable/applications/16.04.0/src/picmi-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/knetwalk-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/ktp-contact-list-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/libkipi-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kcalutils-16.04.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 - kidentitymanagement-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 - kidentitymanagement - - - /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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/kaccounts-providers-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdepim-apps-libs - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.application - KDE PIM mail related libraries - KDE PIM mail related libraries - mirrors://kde/stable/applications/16.04.0/src/kdepim-apps-libs-16.04.0.tar.xz - - qt5-base-devel - boost-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kmime-devel - kcontacts-devel - kcalcore-devel - kldap-devel - extra-cmake-modules - libkleo-devel - grantlee-qt5-devel - pimcommon-devel - akonadi-devel - grantleetheme-devel - kdelibs4-support-devel - qt5-webkit-devel - kdewebkit-devel - gpgmepp-devel - akonadi-calendar-devel - akonadi-search-devel - kpimtextedit-devel - kimap-devel - openldap-client - cyrus-sasl-devel - - desktop/kde/application/kdepim-apps-libs/pspec.xml - - - kdepim-apps-libs - - qt5-base - kio - ki18n - libgcc - kcodecs - kmime - kldap - kxmlgui - kcalcore - kcontacts - kconfig - libxml2 - kservice - kguiaddons - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - ktextwidgets - kconfigwidgets - kwidgetsaddons - sonnet - libkleo - kdewebkit - pimcommon - kdepimlibs - qt5-webkit - grantlee-qt5 - kpimtextedit - grantleetheme - akonadi - - - /etc/xdg - /usr/lib - /usr/share/doc - /usr/mkspecs/ - /usr/bin - /usr/share - - - - kdepim-apps-libs-devel - Development package for kdepim-apps-libs libraries - Contains development tools and header files for kdepim-apps-libs - - qt5-base-devel - boost-devel - kdepim-apps-libs - - - /usr/lib/cmake - /usr/include - /usr/lib/gpgmepp - /usr/share/kde4/apps/cmake - - - - - 2016-04-25 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kdepimlibs-16.04.0.tar.xz - - qt5-base-devel - qt5-webkit-devel - grantlee-qt5-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 - qt5-webkit - grantlee-qt5 - 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 - /usr/share/akonadicontact - - - - 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 - - - - - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/signon-kwallet-extension-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/kdiamond-16.04.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 - docbook-xsl - - 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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kbruch-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/ksquares-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdgantt2 - https://community.kde.org/KDE_PIM - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.application - Library providing gantt support - Library providing gantt support - http://download.kde.org/stable/applications/16.04.0/src/kdgantt2-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - - desktop/kde/application/kdgantt2/pspec.xml - - - kdgantt2 - Library providing gantt support - - libgcc - qt5-base - - - /etc - /usr/lib/qt5 - /usr/lib - - - - kdgantt2-devel - Development files for kdgantt2 - - kdgantt2 - - - /usr/include - /usr/lib/cmake - - - - - 2016-05-22 - 16.04.0 - 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. - mirrors://kde/stable/applications/16.04.0/src/libkface-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/dragon-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - calendarsupport - https://community.kde.org/KDE_PIM - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.application - Calendar support library - Calendar support library - http://download.kde.org/stable/applications/16.04.0/src/calendarsupport-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - akonadi-devel - kmime-devel - ki18n-devel - kcodecs-devel - kcompletion-devel - kjobwidgets-devel - kcoreaddons-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdelibs4-support-devel - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - boost-devel - kdepimlibs-devel - kcalutils-devel - kcalcore-devel - kidentitymanagement-devel - kholidays-devel - akonadi-calendar-devel - kcontacts-devel - pimcommon-devel - kimap-devel - cyrus-sasl-devel - kdepim-apps-libs-devel - - desktop/kde/application/calendarsupport/pspec.xml - - - calendarsupport - Calendar support library - - kio - ki18n - kmime - libgcc - akonadi - kcodecs - kconfig - kcalcore - qt5-base - kcalutils - kholidays - pimcommon - kguiaddons - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - kwidgetsaddons - akonadi-calendar - kdelibs4-support - kdepim-apps-libs - kidentitymanagement - - - /etc - /usr/lib/qt5 - /usr/lib - /usr/share/kservicetypes5 - - - - calendarsupport-devel - Development files for calendarsupport - - calendarsupport - - - /usr/include - /usr/lib/cmake - - - - - 2016-05-22 - 16.04.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kmahjongg - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Mahjongg Solitaire - Mahjongg oyunu - KMahjongg is a fun board game created after the famous oriental game of Mahjong. Unlike the original however, KMahjongg is a tile matching game for one or two players, a variation usually known as Mahjong Solitaire. - Mahjong Solitaire oyununa benzer KMahjongg bir veya iki oyuncunun birlekte oynayabileceği bir parça eşleştirme oyunudur. - kmahjongg - http://download.kde.org/stable/applications/16.04.0/src/kmahjongg-16.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - kdeclarative-devel - kdoctools-devel - knewstuff-devel - kxmlgui-devel - libkdegames-devel - libkmahjongg-devel - - desktop/kde/application/kmahjongg/pspec.xml - - - kmahjongg - - ki18n - kcrash - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - libkmahjongg - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2016-04-20 - 16.04 - First release - Alihan Öztürk - alihan@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. - mirrors://kde/stable/applications/16.04.0/src/kteatime-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/ktp-desktop-applets-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/dolphin-plugins-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - mirrors://kde/stable/applications/16.04.0/src/kjumpingcube-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/ark-16.04.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 + analitza-devel + libqalculate-devel + cln-devel - desktop/kde/application/ark/pspec.xml + desktop/kde/application/cantor/pspec.xml - ark + cantor - qt5-base - libarchive - karchive - kconfig + cln kio - unrar kpty - khtml ki18n + kparts libgcc + kconfig kxmlgui + analitza + karchive kservice + qt5-base + knewstuff kcompletion kcoreaddons - kdbusaddons kiconthemes - kjobwidgets - kwidgetsaddons - kparts + ktexteditor + ktextwidgets + libqalculate kconfigwidgets + kwidgetsaddons + qt5-xmlpatterns + kdelibs4-support - /etc/xdg - /usr/bin + /etc /usr/share - /usr/share/locale /usr/lib - /usr/share/icons /usr/share/man /usr/share/doc - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kontactinterface-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/akonadi-16.04.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 - kitemmodels-devel - kdesignerplugin - kio-devel - extra-cmake-modules - - desktop/kde/application/akonadi/pspec.xml - - - akonadi - app:console - - qt5-base - kio - sqlite - libgcc - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-postgresql - postgresql-server - kitemmodels - kdesignerplugin - mariadb-client - mariadb-server - - - /etc/xdg /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/mime - /usr/share - /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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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 - mirrors://kde/stable/applications/16.04.0/src/ktp-approver-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - skrooge - http://skrooge.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:gui - desktop.kde.application - Personal finances manager - Kişisel finansal yönetici - Skrooge allows you to manage your personal finances, powered by KDE. Thanks to its many features, it is one of the most powerful way to enter, follow, and analyze your expenses. - Skrooge, kişisel finans akışınızı kontrol altında tutmanızı sağlayan bir uygulamadır. - skrooge - http://download.kde.org/stable/skrooge/skrooge-2.4.0.tar.xz - - qt5-base-devel - extra-cmake-modules - qt5-webkit-devel - qt5-script-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - qt5-designer-devel - qt5-svg-devel - qt5-location-devel - grantlee-qt5-devel - karchive-devel - kconfig-devel - kcoreaddons-devel - ki18n-devel - kitemviews-devel - kwidgetsaddons-devel - kwindowsystem-devel - kcompletion-devel - kdoctools-devel - kjobwidgets-devel - kconfigwidgets-devel - kdesignerplugin - kiconthemes-devel - kio-devel - knewstuff-devel - kparts-devel - kwallet-devel - kxmlgui-devel - sqlcipher-devel - qca2-qt5-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kactivities-devel - knotifyconfig-devel - krunner-devel - libofx-devel - - desktop/kde/application/skrooge/pspec.xml - - - skrooge - - kio - ki18n - kparts - libgcc - libofx - kconfig - krunner - kwallet - kxmlgui - qt5-svg - karchive - kservice - qca2-qt5 - qt5-base - knewstuff - sqlcipher - kitemviews - qt5-script - qt5-webkit - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - grantlee-qt5 - ktextwidgets - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - qt5-declarative - kdelibs4-support - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share/appdata - /usr/share/applications - /usr/share/config.kcfg - /usr/share/doc - /usr/share/icons - /usr/share/knotifications5 - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/kxmlgui5 /usr/share/locale - /usr/share/mime - /usr/share/skrooge + + + + cantor-devel + Development files for cantor + cantor için geliştirme dosyaları + + cantor + + + /usr/include + /usr/share/kde5/apps/cmake - 2016-05-23 - 2.4.0 - Version bump - Alihan Öztürk - alihan@pisilinux.org + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org - 2016-03-22 - 2.3.0 + 2016-03-20 + 15.12.3 First release - Alihan Öztürk - alihan@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - spectacle + partitionmanager http://www.kde.org Pisi Linux Admins @@ -60137,85 +58314,71 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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/16.04.0/src/spectacle-16.04.0.tar.xz + 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/2.1.0/src/partitionmanager-2.1.0.tar.xz qt5-base-devel + libatasmart-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 + 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 - kdeclarative-devel - knotifications-devel - qt5-declarative-devel + kdoctools-devel + kpmcore-devel - desktop/kde/application/spectacle/pspec.xml + desktop/kde/application/partitionmanager/pspec.xml - spectacle + partitionmanager qt5-base - kio - libkscreen - xcb-util-cursor - ki18n libgcc + libutil-linux + kio + ki18n kconfig kxmlgui - libkipi - kdeclarative kservice kcoreaddons - kwindowsystem + kiconthemes + kjobwidgets kconfigwidgets - knotifications kwidgetsaddons - kdbusaddons - libxcb - xcb-util - qt5-x11extras - xcb-util-image - qt5-declarative + kpmcore + kcrash /usr/bin /usr/share + /usr/lib + /usr/lib/qt5 /usr/share/doc - - ksnapshot - - - ksnapshot - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org + 2016-05-23 + 2.1.0 + Release bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2016-03-31 - 15.12.3 - First release + 2016-01-17 + 2.1.0 + First Release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -60223,78 +58386,45 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kmix - http://kde.org/applications/multimedia/kmix/ + ffmpegthumbs + https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs PisiLinux Community admins@pisilinux.org GPLv2 - app:gui + library 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/16.04.0/src/kmix-16.04.0.tar.xz + 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. + mirrors://kde/stable/applications/16.04.0/src/ffmpegthumbs-16.04.0.tar.xz + extra-cmake-modules 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 + kio-devel + ffmpeg-devel - desktop/kde/application/kmix/pspec.xml + desktop/kde/application/ffmpegthumbs/pspec.xml - kmix + ffmpegthumbs - qt5-base - alsa-lib - libcanberra - pulseaudio-libs - kdelibs4-support - ki18n - kconfig - kxmlgui - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons + kio + ffmpeg libgcc - plasma-framework + qt5-base - /etc /usr/share /usr/lib - /usr/lib/qt5 /usr/share/doc - /usr/include - /usr/bin - 2016-05-19 + 2016-06-20 16.04.0 Version bump. Burak Ertürk @@ -60311,7 +58441,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - granatier + kollision http://games.kde.org PisiLinux Community @@ -60320,26 +58450,29 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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/16.04.0/src/granatier-16.04.0.tar.xz + 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 + mirrors://kde/stable/applications/16.04.0/src/kollision-16.04.0.tar.xz extra-cmake-modules qt5-base-devel - mesa-devel + qt5-declarative-devel qt5-svg-devel kcoreaddons-devel kconfig-devel - kdbusaddons-devel kwidgetsaddons-devel + kdbusaddons-devel ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel kxmlgui-devel + kio-devel + knotifyconfig-devel knewstuff-devel libkdegames-devel - qt5-declarative-devel kdelibs4-support-devel kdesignerplugin kdoctools-devel @@ -60348,27 +58481,23 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kinit-devel kunitconversion-devel - desktop/kde/application/granatier/pspec.xml + desktop/kde/application/kollision/pspec.xml - granatier + kollision ki18n libgcc kconfig kxmlgui - qt5-svg qt5-base - knewstuff kcoreaddons kdbusaddons libkdegames - kconfigwidgets kwidgetsaddons /usr/share - /usr/lib /usr/share/doc /usr/bin @@ -60390,292 +58519,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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/16.04.0/src/gpgmepp-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kross-interpreters-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - 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/16.04.0/src/kblog-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/umbrello-16.04.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 - - - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - libkomparediff2 @@ -60907,6 +58750,88 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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/16.04.0/src/umbrello-16.04.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 + + + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + lokalize @@ -60997,20 +58922,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-nb + kde-l10n-zh_CN http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:nb + locale:zh_CN 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/16.04.0/src/kde-l10n/kde-l10n-nb-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-zh_CN-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -61023,1081 +58948,17 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kde4.patch - desktop/kde/l10n/kde-l10n-nb/pspec.xml + desktop/kde/l10n/kde-l10n-zh_CN/pspec.xml - kde-l10n-nb + kde-l10n-zh_CN system.locale - lang-nb + lang-zh_CN /usr/share/locale /usr/share/apps /usr/share/khangman /usr/share/klettres - /usr/share/kturtle - /usr/share/katepart - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-bs-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-cs-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-hr-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-pt_BR-16.04.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 - /usr/share/autocorrect - - - - kde-l10n-pt_BR-doc - Brazilian Portuguese documentation files for KDE - KDE5 için Brezilya Portekizcesi belgeler - - /usr/share/man - /usr/share/doc - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ro-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-eu-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-zh_TW-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-da-16.04.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 - - - - kde-l10n-da-doc - Danish documentation files for KDE - - /usr/share/man - /usr/share/doc - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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/16.04.0/src/kde-l10n/kde-l10n-he-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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/16.04.0/src/kde-l10n/kde-l10n-is-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-sv-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-km-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-lt-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-et-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-en_GB-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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/16.04.0/src/kde-l10n/kde-l10n-ru-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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/16.04.0/src/kde-l10n/kde-l10n-es-16.04.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 @@ -62184,1148 +59045,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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/16.04.0/src/kde-l10n/kde-l10n-pa-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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/16.04.0/src/kde-l10n/kde-l10n-id-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ca@valencia-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-zh_CN-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-nn-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-tr-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-pl-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-sk-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ug-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ar-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ko-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-lv-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-sl-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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/16.04.0/src/kde-l10n/kde-l10n-bg-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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/16.04.0/src/kde-l10n/kde-l10n-kk-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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/16.04.0/src/kde-l10n/kde-l10n-ia-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-nds-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - 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/16.04.0/src/kde-l10n/kde-l10n-eo-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-de-16.04.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 - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - kde-l10n-it @@ -63396,20 +59115,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-hi + kde-l10n-fa http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:hi + locale:fa 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/16.04.0/src/kde-l10n/kde-l10n-hi-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-fa-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -63421,12 +59140,12 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kde4.patch - desktop/kde/l10n/kde-l10n-hi/pspec.xml + desktop/kde/l10n/kde-l10n-fa/pspec.xml - kde-l10n-hi + kde-l10n-fa system.locale - lang-hi + lang-fa /usr/share/locale /usr/share/apps @@ -63453,20 +59172,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-ca + kde-l10n-ga http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:ca + locale:ga 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/16.04.0/src/kde-l10n/kde-l10n-ca-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-ga-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -63479,23 +59198,82 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kde4.patch - desktop/kde/l10n/kde-l10n-ca/pspec.xml + desktop/kde/l10n/kde-l10n-ga/pspec.xml - kde-l10n-ca + kde-l10n-ga system.locale - lang-ca + lang-ga /usr/share/locale /usr/share/apps /usr/share/khangman + /usr/share/klettres /usr/share/ktuberling + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-pl-16.04.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-ca-doc - Catalan documentation files for KDE - KDE5 için Katalan belgeler + 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 @@ -63520,20 +59298,18 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-fr + kde-l10n-de http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:fr + locale:de 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/16.04.0/src/kde-l10n/kde-l10n-fr-16.04.0.tar.xz + German KDE5 internationalization package + kde-l10n-de is the KDE5 internationalization package that provides German translations for KDE5 applications. + mirrors://kde/stable/applications/16.04.0/src/kde-l10n/kde-l10n-de-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -63546,25 +59322,23 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kde4.patch - desktop/kde/l10n/kde-l10n-fr/pspec.xml + desktop/kde/l10n/kde-l10n-de/pspec.xml - kde-l10n-fr + kde-l10n-de system.locale - lang-fr + lang-de /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 + kde-l10n-de-doc + German documentation files for KDE /usr/share/man /usr/share/doc @@ -63589,20 +59363,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-gl + kde-l10n-bg http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:gl + locale:bg 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/16.04.0/src/kde-l10n/kde-l10n-gl-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-bg-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -63610,32 +59384,21 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol qt5-linguist extra-cmake-modules kdoctools-devel - docbook-xsl kde4.patch - desktop/kde/l10n/kde-l10n-gl/pspec.xml + desktop/kde/l10n/kde-l10n-bg/pspec.xml - kde-l10n-gl + kde-l10n-bg system.locale - lang-gl + lang-bg /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 + /usr/share/khangman + /usr/share/klettres @@ -63657,20 +59420,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-uk + kde-l10n-km http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:uk + locale:km 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/16.04.0/src/kde-l10n/kde-l10n-uk-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-km-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -63683,27 +59446,17 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kde4.patch - desktop/kde/l10n/kde-l10n-uk/pspec.xml + desktop/kde/l10n/kde-l10n-km/pspec.xml - kde-l10n-uk + kde-l10n-km system.locale - lang-uk + lang-km /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 + /usr/share/khangman + /usr/share/klettres @@ -63725,20 +59478,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-el + kde-l10n-es http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:el + locale:es 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/16.04.0/src/kde-l10n/kde-l10n-el-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-es-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -63751,12 +59504,12 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kde4.patch - desktop/kde/l10n/kde-l10n-el/pspec.xml + desktop/kde/l10n/kde-l10n-es/pspec.xml - kde-l10n-el + kde-l10n-es system.locale - lang-el + lang-es /usr/share/locale /usr/share/apps @@ -63766,77 +59519,9 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-el-doc - Greek documentation files for KDE - KDE5 için Yunan belgeler - - /usr/share/man - /usr/share/doc - - - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-pt-16.04.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 + kde-l10n-es-doc + Spanish documentation files for KDE + KDE5 için İspanyolca belgeler /usr/share/man /usr/share/doc @@ -63931,20 +59616,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-ga + kde-l10n-pt_BR http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:ga + locale:pt_BR 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/16.04.0/src/kde-l10n/kde-l10n-ga-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-pt_BR-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -63957,12 +59642,566 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kde4.patch - desktop/kde/l10n/kde-l10n-ga/pspec.xml + desktop/kde/l10n/kde-l10n-pt_BR/pspec.xml - kde-l10n-ga + kde-l10n-pt_BR system.locale - lang-ga + lang-pt_BR + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/autocorrect + + + + kde-l10n-pt_BR-doc + Brazilian Portuguese documentation files for KDE + KDE5 için Brezilya Portekizcesi belgeler + + /usr/share/man + /usr/share/doc + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ca-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-sv-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-tr-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-eu-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ug-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + 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/16.04.0/src/kde-l10n/kde-l10n-eo-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + 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/16.04.0/src/kde-l10n/kde-l10n-he-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-sk-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-sl-16.04.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 @@ -63990,20 +60229,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-wa + kde-l10n-pt http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:wa + locale:pt 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/16.04.0/src/kde-l10n/kde-l10n-wa-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-pt-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -64016,12 +60255,149 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kde4.patch - desktop/kde/l10n/kde-l10n-wa/pspec.xml + desktop/kde/l10n/kde-l10n-pt/pspec.xml - kde-l10n-wa + kde-l10n-pt system.locale - lang-wa + 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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + 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/16.04.0/src/kde-l10n/kde-l10n-ru-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ro-16.04.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 @@ -64049,20 +60425,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-fa + kde-l10n-mr http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:fa + locale:mr 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/16.04.0/src/kde-l10n/kde-l10n-fa-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-mr-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -64070,16 +60446,703 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-cs-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ca@valencia-16.04.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-fa/pspec.xml + desktop/kde/l10n/kde-l10n-ca-valencia/pspec.xml - kde-l10n-fa + kde-l10n-ca-valencia system.locale - lang-fa + lang-ca@valencia + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/ktuberling + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + 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/16.04.0/src/kde-l10n/kde-l10n-fr-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-pa-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-da-16.04.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 + + + + kde-l10n-da-doc + Danish documentation files for KDE + + /usr/share/man + /usr/share/doc + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + 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/16.04.0/src/kde-l10n/kde-l10n-id-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-lt-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + 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/16.04.0/src/kde-l10n/kde-l10n-ia-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ko-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-uk-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + 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/16.04.0/src/kde-l10n/kde-l10n-is-16.04.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 @@ -64162,6 +61225,491 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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/16.04.0/src/kde-l10n/kde-l10n-lv-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-nn-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-hi-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-en_GB-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-nds-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-zh_TW-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-et-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-ar-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + kde-l10n-hu @@ -64221,20 +61769,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - kde-l10n-mr + kde-l10n-kk http://l10n.kde.org Stefan Gronewold (groni) groni@pisilinux.org GPLv2 - locale:mr + locale:kk 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/16.04.0/src/kde-l10n/kde-l10n-mr-16.04.0.tar.xz + 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/16.04.0/src/kde-l10n/kde-l10n-kk-16.04.0.tar.xz qt5-base-devel ki18n-devel @@ -64247,12 +61795,272 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol kde4.patch - desktop/kde/l10n/kde-l10n-mr/pspec.xml + desktop/kde/l10n/kde-l10n-kk/pspec.xml - kde-l10n-mr + kde-l10n-kk system.locale - lang-mr + 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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + 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/16.04.0/src/kde-l10n/kde-l10n-wa-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-gl-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-el-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@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/16.04.0/src/kde-l10n/kde-l10n-bs-16.04.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 @@ -64279,697 +62087,55 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - orbit2 - http://www.gnome.org/ + kde-l10n-hr + http://l10n.kde.org - PisiLinux Community - admins@pisilinux.org + Stefan Gronewold (groni) + groni@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 + 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/16.04.0/src/kde-l10n/kde-l10n-hr-16.04.0.tar.xz - 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 - - - - - 2016-06-09 - 2.14.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-21 - 2.14.19 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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-* - - - - - 2016-06-09 - 2.44.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-21 - 2.44.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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.13.tar.xz - - libcroco-devel - gtk3-devel - pango-devel - vala-devel - python-devel - gdk-pixbuf-devel - gtk-doc - gobject-introspection-devel - - - bgo759084.patch - - 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 - - - - - 2016-06-09 - 2.40.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 2.40.13 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - service-manager - http://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.pisilinux - System Service configuration GUI - Servis yönetim arayüzü - Le gestionnaire de Service est utilisé pour administrer les services lancés dans Pisi Linux. - This system service configuration software is developed for Pisi Linux. It provides managing system services. - Servis yöneticisi, Pisi Linux'da çalışan sunucu ve servislerin yönetilmesini sağlar - https://github.com/PisiLinuxNew/service-manager/archive/3.1.0.tar.gz - - pisilinux-desktop-services - docutils - python-qt5-devel - - desktop/pisilinux/service-manager/pspec.xml - - - service-manager - - python-qt5 - pisilinux-desktop-services - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/applications - - - - - 2016-06-03 - 3.1.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - kaptan - http://pisilinux.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.pisilinux - Kaptan, Pisi Linux workspace configuration wizard - Pisi Linux Kaptan - Pisi Linux Kaptan - Kaptan lets you configure your workspace on first login. - Kaptan, bilgisayarınız ilk defa açıldığında çalışma ortamınızı kişiselleştirmenize yardımcı olur. - Kaptan, el asistente de inicio de Pisi Linux que le ayudará a personalizar su entorno de trabajo. - kaptan - https://github.com/PisiLinuxNew/kaptan/archive/5.0-beta3.tar.gz - - python3-setuptools - python3-qt5-devel - python3-devel - qt5-linguist - - desktop/pisilinux/kaptan/pspec.xml - - - kaptan - - python3-qt5 - - - /usr/bin - /usr/lib/kaptan - /usr/lib/python3.4/site-packages - /usr/share/applications - /usr/share/icons - /usr/share/doc - /usr/share/kaptan/languages - /etc - - - - - 2016-06-09 - 5.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-29 - 5.1.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-17 - 5.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 5.0 - First release - Metehan Özbek - admins@pisilinux.org - - - - - - pisilinux-desktop-services - http://www.pisilinux.org - - pisilinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.pisilinux - Pisi Linux Desktop Services - Pisi Linux Masaüstü Hizmetleri - pisilinux-desktop-services is a wrapper python module for integrating various desktop environments using PyQt. - pisilinux-desktop-services, Pisi Linux Uygulamalarının farklı masaüstü ortamları ile bütünleşik bir şekilde çalışmasını sağlayan bir Python modülüdür. - https://github.com/PisiLinuxNew/pds/archive/2.0.0.tar.gz - - python-qt5-devel - - - environment.patch - - desktop/pisilinux/pisilinux-desktop-services/pspec.xml - - - pisilinux-desktop-services - - python-qt5 - - - /usr/lib - /usr/share/ - - - - - 2016-06-09 - 2.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-03 - 2.0.0 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-04-28 - 2.0.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - package-manager - http://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.pisilinux - PiSi graphical user interface - PiSi kullanıcı grafik arayüzü - PiSi est une interface graphique permettant d'effectuer l'installation, la suppression et la mise à jour de paquet PiSi depuis un environnement graphique. - Package Manager is PiSi's easy-to-use graphical user interface. - PiSi paket yöneticisine ait paket kurma, kaldırma ve güncelleme gibi işlerin grafik ortamda yapılabilmesini sağlayan PiSi grafik arayüzü. - https://github.com/PisiLinuxNew/package-manager/archive/package-manager.4.1.1.tar.gz - - docutils - python-qt5-devel - python-sip - - desktop/pisilinux/package-manager/pspec.xml - - - package-manager - - pisi - python-qt5 - python-sip - pisilinux-desktop-services - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/applications - /usr/share/icons - /usr/share/doc - - - - - 2016-06-09 - 4.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-28 - 4.1.1 - ported pyqt5 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - history-manager - http://ish.kodzilla.org/pardus/history-manager/ - - Metehan Özbek - admin@pisilinux.org - - GPLv2 - app:gui - desktop.pisilinux - KDE5 port of History Manager Tool - Pisi Geçmiş Yöneticisi uygulaması - History manager is a graphical interface to pisi snapshot facilities. - Pisi ile yapılan işlem geçmişini gösterme, sistemi belirli noktaya döndürme, yeni görüntü alma gibi geçmiş yönetimi işlemleri yapmayı sağlayan araç. - https://github.com/PisiLinuxNew/history-manager/archive/0.2.8.0-Beta.tar.gz - - python-qt5-devel - pypolkit qt5-base-devel - python-setuptools + ki18n-devel + kconfig-devel qt5-linguist - - desktop/pisilinux/history-manager/pspec.xml - - - history-manager - - python-qt5 - pypolkit - - - /usr/bin - /usr/share/locale - /usr/lib/python* - /usr/share - - - - - 2016-06-18 - 0.2.8.0b - First release - Metehan Özbek - admin@pisilinux.org - - - - - - desktop-file-utils - http://www.freedesktop.org/software/desktop-file-utils/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - 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 - - - desktop-file-utils - - glib2 - - - /usr/bin - /usr/share/doc - /usr/share/man/man1/ - - - System.PackageHandler - - - - - 2016-06-09 - 0.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-09-07 - 0.21 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 0.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 0.12 - First release - Serdar Soytetir - kaptan@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 - libxslt - lynx + extra-cmake-modules + kdoctools-devel - enable-other-xdg.patch - xfce-detection.patch - drop-xmlto-stuff.patch + kde4.patch - desktop/misc/xdg-utils/pspec.xml + desktop/kde/l10n/kde-l10n-hr/pspec.xml - xdg-utils + kde-l10n-hr + system.locale + lang-hr - /usr/bin - /usr/share/man + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres - 2016-06-09 - 1.1.0_20140207 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org - 2014-02-16 - 1.1.0_20140207 + 2016-03-24 + 15.12.3 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -64978,167 +62144,178 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - at-spi2-atk - http://www.linuxfoundation.org/collaborate/workgroups/accessibility + 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/16.04.0/src/kde-l10n/kde-l10n-nb-16.04.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 + + + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libdmtx + http://www.libdmtx.org 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.18/at-spi2-atk-2.18.1.tar.xz - - at-spi2-core-devel - glib2-devel - atk-devel - libX11-devel - dbus-devel - libXtst-devel - - desktop/misc/at-spi2-atk/pspec.xml + 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. + mirrors://sourceforge/libdmtx/libdmtx/0.7.4/libdmtx-0.7.4.tar.gz + desktop/kde/addon/libdmtx/pspec.xml - at-spi2-atk - - atk - dbus - glib2 - at-spi2-core - + libdmtx /usr/lib /usr/share/doc - at-spi2-atk-32bit - 32-bit shared libraries for at-spi2-atk - emul32 - emul32 - - at-spi2-core-32bit - atk-32bit - dbus-32bit - glib2-32bit - + libdmtx-devel + Development files for libdmtx + libdmtx için geliştirme dosyaları - atk-32bit - dbus-32bit - glib2-32bit - at-spi2-core-32bit + libdmtx - /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 - glib2-devel - at-spi2-core-devel - - - /usr/lib32/pkgconfig - /usr/lib/pkgconfig /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 - - 2016-06-09 - 2.18.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2016-05-25 - 2.18.1 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2016-05-22 + 0.7.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2016-01-26 - 2.18.1 + 2015-06-05 + 0.7.4 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - shared-mime-info - http://freedesktop.org/wiki/Software/shared-mime-info + qrencode + http://fukuchi.org/works/qrencode/index.en.html - PisiLinux Community - admins@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@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 + 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 - libxml2-devel - glib2-devel - intltool + libsdl-devel + m4 + gettext-devel + libpng-devel - - shared-mime-info-xz.patch - - desktop/misc/shared-mime-info/pspec.xml + desktop/kde/addon/qrencode/pspec.xml - shared-mime-info + qrencode - libxml2 - glib2 + libpng - /etc/X11/xinit - /usr/bin - /usr/share/applications - /usr/share/mime - /usr/share/pkgconfig - /usr/share/locale/ + /usr/lib + /usr/bin/qrencode + /usr/share/man/man1 /usr/share/doc - /usr/share/man - - System.PackageHandler - System.Package - - - update-mime-database.sh - defaults.list - mimeapps.list - mimetypefixes.xml - + + + qrencode-devel + Development files for qrencode + qrencode için geliştirme dosyaları + + qrencode + + + /usr/include + /usr/lib/pkgconfig + - 2016-06-09 - 1.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2016-05-22 + 3.4.4 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com - 2015-11-05 - 1.5 + 2015-02-22 + 3.4.4 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -65147,263 +62324,370 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xdg-user-dirs - http://freedesktop.org/wiki/Software/xdg-user-dirs + prison-qt5 + http://www.kde.org - PisiLinux Community - admins@pisilinux.org + Pisi Linux Admins + admin@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 + 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. + http://download.lunar-linux.org/lunar/mirrors/prison-frameworks-1.2.1.tar.xz - docbook-xsl - libxml2-devel - libxslt-devel + qt5-base-devel + libdmtx-devel + qrencode-devel + extra-cmake-modules + mesa-devel - - defaults.patch - tr.patch - xdg-user-dirs-0.15-libiconv.patch - - desktop/misc/xdg-user-dirs/pspec.xml + desktop/kde/addon/prison-qt5/pspec.xml - xdg-user-dirs + prison-qt5 + + qt5-base + libgcc + mesa + libdmtx + qrencode + - /etc/X11 - /etc/xdg - /usr/bin - /usr/share/locale + /usr/lib/*.so.* + /usr/lib/qt5/mkspecs/modules /usr/share/doc - /usr/share/man - - xdg-user-dirs.sh - + + + 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 + - 2016-06-09 - 0.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2016-05-22 + 1.2.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org - 2014-05-01 - 0.15 + 2016-01-17 + 1.2.1 First release - Serdar Soytetir - kaptan@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - at-spi2-core - http://www.linuxfoundation.org/collaborate/workgroups/accessibility + 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. + http://download.kde.org/stable/phonon/4.9.0/phonon-4.9.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-designer-devel + qt5-quick1-devel + alsa-lib-devel + gst-plugins-base-devel + pulseaudio-libs-devel + gstreamer-devel + mesa-devel + + 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 + /usr/share/phonon4qt5 + + + + 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 + + + + + 2016-05-16 + 4.9.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-03 + 4.9.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 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.9.0/phonon-backend-vlc-0.9.0.tar.xz + + qt5-base-devel + qt5-phonon-devel + pulseaudio + vlc-devel + extra-cmake-modules + + 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 + + + + + 2016-05-17 + 0.9.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-04-02 + 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+ - 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.18/at-spi2-core-2.18.3.tar.xz + 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. + http://download.kde.org/stable/phonon/phonon-backend-gstreamer/4.9.0/phonon-backend-gstreamer-4.9.0.tar.xz - libXtst-devel - libXi-devel - gettext-devel - dbus-devel - glib2-devel - intltool + extra-cmake-modules + qt5-x11extras-devel + qt5-base-devel + qt5-phonon-devel + gstreamer-devel + gstreamer-next-devel + gst-plugins-base-devel + gst-plugins-base-next-devel + mesa-devel + libxml2-devel - desktop/misc/at-spi2-core/pspec.xml + desktop/kde/phonon/qt5-phonon-backend-gstreamer/pspec.xml - at-spi2-core + qt5-phonon-backend-gstreamer - libXtst - libX11 - dbus + qt5-base + qt5-x11extras + qt5-phonon + mesa glib2 + libgcc + gstreamer-next + gst-plugins-base-next - /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 - - - dbus-32bit - glib2-32bit - libX11-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 + /usr/lib/qt5 + /usr/share - 2016-06-09 - 2.18.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2016-05-16 + 4.9.0 + rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org - 2016-05-25 - 2.18.3 - Release Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2016-05-03 + 4.9.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2016-01-26 - 2.18.3 + 2015-08-18 + 4.8.2 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - wxGTK - http://www.wxwidgets.org/ + qtcreator + http://qt-project.org/ - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + 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/4.0/4.0.0/qt-creator-opensource-src-4.0.0.tar.gz - 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 + libgcc + libX11-devel + cmake + git + mesa-devel + openssh + qt5-base-devel + qt5-declarative-devel + qt5-linguist + qt5-quickcontrols2 + 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 - - make-abicheck-non-fatal.patch - - desktop/toolkit/wxGTK/pspec.xml + desktop/toolkit/qtcreator/pspec.xml - wxGTK + qtcreator + Lightweight, cross-platform integrated development environment - gtk2 - mesa - tiff - zlib - cairo - expat - glib2 - pango - libSM - libX11 libgcc - libpng - gstreamer - gdk-pixbuf - libXxf86vm - webkit-gtk2 - libjpeg-turbo - gst-plugins-base + qt5-svg + qt5-base + qt5-base-devel + qt5-script + qt5-webkit + qt5-designer + qt5-assistant + qt5-declarative - /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 + /usr/libexec/qtcreator + /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 + - + 2016-06-09 - 3.0.2 + 4.0.0 Release Bump Pisi Linux Community admin@pisilinux.org + + 2016-05-22 + 4.0.0 + version bump and fixed prefix path + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + - 2016-02-23 - 3.0.2 + 2016-04-21 + 3.6.1 First release - İbrahim KARAGÜZEL - ibrahimkaraguzel@windowslive.com + Yusuf Aydemir + yusuf.aydemir@pisilinux.org @@ -65538,7 +62822,357 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - qt5-doc + 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 + 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 + + + + + 2016-06-09 + 2.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-08-17 + 2.3.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + wxGTK2.8 + 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 + 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. + mirrors://sourceforge/wxwindows/wxGTK-2.8.12.tar.bz2 + + gst-plugins-base-devel + gstreamer-devel + gtk2-devel + libjpeg-turbo-devel + libSM-devel + libXinerama-devel + libXxf86vm-devel + libsdl-devel + mesa-devel + mesa-glu-devel + pango-devel + tiff-devel + + + make-abicheck-non-fatal.patch + wxGTK-collision.patch + wxGTK-2.8.10-CVE-2009-XXXX.diff + + desktop/toolkit/wxGTK2.8/pspec.xml + + + wxGTK2.8 + + gst-plugins-base + gstreamer + gtk2 + libjpeg-turbo + libSM + libXinerama + libXxf86vm + libsdl + mesa + pango + tiff + glib2 + libX11 + libgcc + libpng + gdk-pixbuf + wxBase + + + /usr/bin/wx-config-2.8 + /usr/bin/wxconfig + /usr/lib/libwx_gtk* + /usr/lib/wx/config/gtk2-unicode-release-2.8 + + + + wxGTK2.8-devel + wxGTK-devel is the development files for wxGTK + + wxBase-devel + wxGTK2.8 + + + /usr/lib/wx/include + + + + wxBase + wxBase is the GUI independent part of wxWidgets + wxWidgets/wxGTK için arayüz bağımsız olan kitaplıklar + + libunwind + zlib + expat + libgcc + + + /usr/bin/wxrc + /usr/bin/wxrc-2.8 + /usr/share/doc + /usr/share/bakefile + /usr/share/locale + /usr/lib/libwx_base* + + + + wxBase-devel + wxBase-devel is the development files for wxBase + wxBase sınıfları için geliştirme dosyaları + + wxGTK2.8 + wxBase + zlib-devel + expat-devel + + + /usr/include + + + + + 2016-06-09 + 2.8.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-05 + 2.8.12 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + glib2-devel + polkit-devel + + + /usr/lib/pkgconfig + /usr/include/polkit-qt5-1 + + + + + 2016-06-09 + 0.112 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 0.112 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 0.112 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 0.112 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-declarative http://qt.digia.com/ Ayhan Yalçınsoy @@ -65546,52 +63180,301 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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.6/5.6.0/submodules/qtdoc-opensource-src-5.6.0.tar.xz + 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.6/5.6.0/submodules/qtdeclarative-opensource-src-5.6.0.tar.xz qt5-base-devel + libxkbcommon-devel + mesa-devel + qt5-xmlpatterns-devel + qt5-assistant-devel qt5-sql-sqlite - qt5-assistant - qt5-multimedia-docs - qt5-quickcontrols-docs - qt5-quickcontrols2-docs - qt5-x11extras-docs - qt5-webchannel-docs - qt5-webkit-docs - qt5-xmlpatterns-docs - qt5-svg-docs - qt5-script-docs - qt5-sensors-docs - qt5-translations - qt5-graphicaleffects-docs - qt5-imageformats-docs - qt5-websockets-docs - qt5-serialport-docs - qt5-location-docs - qt5-connectivity-docs - qt5-enginio-docs - desktop/toolkit/qt5/qt5-doc/pspec.xml + desktop/toolkit/qt5/qt5-declarative/pspec.xml - qt5-doc + 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 + + + + qt5-declarative-docs qt5-base - qt5-script - qt5-svg - qt5-xmlpatterns - qt5-assistant + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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.6/5.6.0/submodules/qtxmlpatterns-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + + 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 + + + + qt5-xmlpatterns-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-15 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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.6/5.6.0/submodules/qtenginio-opensource-src-1.6.0.tar.xz + + libgcc + qt5-base-devel + qt5-declarative-devel + qt5-assistant-devel + qt5-sql-sqlite + + 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/ + + + + qt5-enginio-docs + + qt5-base + + /usr/share/doc/qt5 + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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.6/5.6.0/submodules/qttranslations-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + qt5-linguist + + desktop/toolkit/qt5/qt5-translations/pspec.xml + + + qt5-translations + + qt5-base + + + /usr/share/qt5 + /usr/share/licenses/ + + 2016-06-09 @@ -65623,6 +63506,691 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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.6/5.6.0/submodules/qtgraphicaleffects-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-assistant-devel + 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 + + + + qt5-graphicaleffects-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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.6/5.6.0/submodules/qtwebsockets-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-assistant-devel + qt5-sql-sqlite + + 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 + + + + qt5-websockets-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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.6/5.6.0/submodules/qtwebchannel-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-assistant-devel + qt5-sql-sqlite + + 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 + + + + qt5-webchannel-docs + + libgcc + qt5-base + qt5-declarative + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-webengine + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides support for web applications using the Chromium browser project + Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar + Provides support for web applications using the Chromium browser project + Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar + http://download.qt.io/official_releases/qt/5.6/5.6.0/submodules/qtwebengine-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-location-devel + qt5-sensors-devel + qt5-webchannel-devel + bison + ninja + gperf + snappy-devel + gobject-introspection-devel + expat-devel + glib2-devel + fontconfig-devel + freetype-devel + mesa-devel + eudev-devel + libpng-devel + webp-devel + harfbuzz-devel + json-c-devel + protobuf-devel + libdrm-devel + libopus-devel + libevent-devel + zlib-devel + libxml2-devel + libxslt-devel + libX11-devel + libXi-devel + libXcursor-devel + libXext-devel + libXfixes-devel + libXrender-devel + libXdamage-devel + libXcomposite-devel + libXtst-devel + libXrandr-devel + libXScrnSaver-devel + libcap-devel + pulseaudio-libs-devel + alsa-lib-devel + pciutils-devel + dbus-devel + perl + python-devel + libvpx-devel + libjpeg-turbo-devel + x264-devel + zlib-devel + git + + + qt5-webengine-fno-delete-null-pointer-checks.patch + + desktop/toolkit/qt5/qt5-webengine/pspec.xml + + + qt5-webengine + + nss + dbus + nspr + webp + glib2 + libX11 + libgcc + libpng + snappy + freetype + libXi + libXext + libXtst + libxslt + libopus + libxml2 + qt5-base + alsa-lib + harfbuzz + libevent + libXfixes + fontconfig + libXcursor + libXdamage + libXrender + qt5-location + libXcomposite + libjpeg-turbo + qt5-webchannel + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/qt5/translations + /usr/share/qt5 + /usr/share/doc + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-webengine-devel + + qt5-webengine + qt5-base-devel + qt5-declarative-devel + qt5-location-devel + qt5-webchannel-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2016-06-15 + 5.6.0 + 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.6/5.6.0/submodules/qtmultimedia-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-assistant-devel + qt5-sql-sqlite + pulseaudio-libs-devel + openal-devel + mesa-devel + gstreamer-next-devel + gst-plugins-base-next-devel + alsa-lib-devel + + desktop/toolkit/qt5/qt5-multimedia/pspec.xml + + + qt5-multimedia + + libgcc + mesa + openal + alsa-lib + qt5-base + gstreamer-next + pulseaudio-libs + qt5-declarative + gst-plugins-base-next + 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 + + + + qt5-multimedia-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump. + PisiLinux Community + admin@pisilinux.org + + + 2016-05-08 + 5.6.0 + Release Bump. + PisiLinux Community + admin@pisilinux.org + + + 2015-04-17 + 5.6.0 + 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.6/5.6.0/submodules/qtlocation-opensource-src-5.6.0.tar.xz + + geoclue-devel + glib2-devel + mesa-devel + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + qt5-quick1-devel + qt5-sql-sqlite + + 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 + + + + qt5-location-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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 + qt5-assistant-devel + qt5-sql-sqlite + + 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 + + + + qt5-quick1-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.5.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.5.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.5.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2015-10-16 + 5.5.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + qt5-connectivity @@ -65715,6 +64283,764 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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.6/5.6.0/submodules/qtserialport-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + 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 + + + + qt5-serialport-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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 + + + + + 2016-06-09 + 0.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 0.3.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 0.3.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 0.3.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.6/5.6.0/submodules/qtx11extras-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + 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/ + + + + qt5-x11extras-docs + + qt5-x11extras + qt5-base + + + /usr/share/doc/qt5/ + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-15 + 5.6.0 + Release Bump for gst + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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 + + + + + 2016-06-09 + 0.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 0.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 0.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 0.6.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.6/5.6.0/submodules/qtsvg-opensource-src-5.6.0.tar.xz + + mesa-devel + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + 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 + + + + qt5-svg-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-15 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First Release. + Ayhan yYalçı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.6/5.6.0/submodules/qtquickcontrols-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quick1-devel + qt5-assistant-devel + qt5-sql-sqlite + mesa-devel + + desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml + + + qt5-quickcontrols + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses/ + + + + qt5-quickcontrols-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.5.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.5.6 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.5.6 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.5.6 + 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/community_releases/5.6/5.6.0/qtwebkit-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-sensors-devel + qt5-location-devel + qt5-declarative-devel + qt5-multimedia-devel + qt5-assistant-devel + qt5-sql-sqlite + mesa-devel + libXtst-devel + gst-plugins-base-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/ + + + + qt5-webkit-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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 + gstreamer-next-devel + gst-plugins-base-next-devel + mesa-devel + + + qt-gstreamer-1.6.patch + + 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 + + + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-03 + 1.2.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-03 + 1.2.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-21 + 1.2.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + qt5-quickcontrols2 @@ -65804,6 +65130,471 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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.6/5.6.0/submodules/qtscript-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + 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 + + + + qt5-script-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-20 + 5.6.0 + 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.6/5.6.0/submodules/qtimageformats-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + 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 + + + + qt5-imageformats-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-15 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + 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.6/5.6.0/submodules/qtdoc-opensource-src-5.6.0.tar.xz + + qt5-base-devel + qt5-sql-sqlite + qt5-assistant + qt5-multimedia-docs + qt5-quickcontrols-docs + qt5-quickcontrols2-docs + qt5-x11extras-docs + qt5-webchannel-docs + qt5-webkit-docs + qt5-xmlpatterns-docs + qt5-svg-docs + qt5-script-docs + qt5-sensors-docs + qt5-translations + qt5-graphicaleffects-docs + qt5-imageformats-docs + qt5-websockets-docs + qt5-serialport-docs + qt5-location-docs + qt5-connectivity-docs + qt5-enginio-docs + + 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 + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-20 + 5.6.0 + 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.6/5.6.0/submodules/qttools-opensource-src-5.6.0.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/qt5/bin/qdoc + /usr/bin/qdoc-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 + + + 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-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 + + + 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-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 + + + 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 + + + qdbusviewer.desktop + assistant.png + + + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + qt5-base @@ -66087,1383 +65878,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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.6/5.6.0/submodules/qtgraphicaleffects-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-assistant-devel - 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 - - - - qt5-graphicaleffects-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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 - qt5-assistant-devel - qt5-sql-sqlite - - 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 - - - - qt5-quick1-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.5.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.5.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.5.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2015-10-16 - 5.5.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.6/5.6.0/submodules/qtmultimedia-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-assistant-devel - qt5-sql-sqlite - pulseaudio-libs-devel - openal-devel - mesa-devel - gstreamer-next-devel - gst-plugins-base-next-devel - alsa-lib-devel - - desktop/toolkit/qt5/qt5-multimedia/pspec.xml - - - qt5-multimedia - - libgcc - mesa - openal - alsa-lib - qt5-base - gstreamer-next - pulseaudio-libs - qt5-declarative - gst-plugins-base-next - 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 - - - - qt5-multimedia-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump. - PisiLinux Community - admin@pisilinux.org - - - 2016-05-08 - 5.6.0 - Release Bump. - PisiLinux Community - admin@pisilinux.org - - - 2015-04-17 - 5.6.0 - 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.6/5.6.0/submodules/qtxmlpatterns-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - - 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 - - - - qt5-xmlpatterns-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-15 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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/community_releases/5.6/5.6.0/qtwebkit-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-sensors-devel - qt5-location-devel - qt5-declarative-devel - qt5-multimedia-devel - qt5-assistant-devel - qt5-sql-sqlite - mesa-devel - libXtst-devel - gst-plugins-base-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/ - - - - qt5-webkit-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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.6/5.6.0/submodules/qtx11extras-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - 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/ - - - - qt5-x11extras-docs - - qt5-x11extras - qt5-base - - - /usr/share/doc/qt5/ - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-15 - 5.6.0 - Release Bump for gst - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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.6/5.6.0/submodules/qtdeclarative-opensource-src-5.6.0.tar.xz - - qt5-base-devel - libxkbcommon-devel - mesa-devel - qt5-xmlpatterns-devel - qt5-assistant-devel - qt5-sql-sqlite - - 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 - - - - qt5-declarative-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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.6/5.6.0/submodules/qtserialport-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - 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 - - - - qt5-serialport-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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.6/5.6.0/submodules/qtscript-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - 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 - - - - qt5-script-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-20 - 5.6.0 - 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.6/5.6.0/submodules/qtwebsockets-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-assistant-devel - qt5-sql-sqlite - - 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 - - - - qt5-websockets-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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.6/5.6.0/submodules/qtsvg-opensource-src-5.6.0.tar.xz - - mesa-devel - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - 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 - - - - qt5-svg-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-15 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First Release. - Ayhan yYalçı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.6/5.6.0/submodules/qttranslations-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - qt5-linguist - - desktop/toolkit/qt5/qt5-translations/pspec.xml - - - qt5-translations - - qt5-base - - - /usr/share/qt5 - /usr/share/licenses/ - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-20 - 5.6.0 - 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.6/5.6.0/submodules/qtenginio-opensource-src-1.6.0.tar.xz - - libgcc - qt5-base-devel - qt5-declarative-devel - qt5-assistant-devel - qt5-sql-sqlite - - 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/ - - - - qt5-enginio-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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.6/5.6.0/submodules/qtimageformats-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - 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 - - - - qt5-imageformats-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-15 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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.6/5.6.0/submodules/qtwebchannel-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-assistant-devel - qt5-sql-sqlite - - 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 - - - - qt5-webchannel-docs - - libgcc - qt5-base - qt5-declarative - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - qt5-sensors @@ -67552,1152 +65966,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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.6/5.6.0/submodules/qtquickcontrols-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quick1-devel - qt5-assistant-devel - qt5-sql-sqlite - mesa-devel - - desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml - - - qt5-quickcontrols - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses/ - - - - qt5-quickcontrols-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.5.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.5.6 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.5.6 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.5.6 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-webengine - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides support for web applications using the Chromium browser project - Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar - Provides support for web applications using the Chromium browser project - Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar - http://download.qt.io/official_releases/qt/5.6/5.6.0/submodules/qtwebengine-opensource-src-5.6.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-location-devel - qt5-sensors-devel - qt5-webchannel-devel - bison - ninja - gperf - snappy-devel - gobject-introspection-devel - expat-devel - glib2-devel - fontconfig-devel - freetype-devel - mesa-devel - eudev-devel - libpng-devel - webp-devel - harfbuzz-devel - json-c-devel - protobuf-devel - libdrm-devel - libopus-devel - libevent-devel - zlib-devel - libxml2-devel - libxslt-devel - libX11-devel - libXi-devel - libXcursor-devel - libXext-devel - libXfixes-devel - libXrender-devel - libXdamage-devel - libXcomposite-devel - libXtst-devel - libXrandr-devel - libXScrnSaver-devel - libcap-devel - pulseaudio-libs-devel - alsa-lib-devel - pciutils-devel - dbus-devel - perl - python-devel - libvpx-devel - libjpeg-turbo-devel - x264-devel - zlib-devel - git - - - qt5-webengine-fno-delete-null-pointer-checks.patch - - desktop/toolkit/qt5/qt5-webengine/pspec.xml - - - qt5-webengine - - nss - dbus - nspr - webp - glib2 - libX11 - libgcc - libpng - snappy - freetype - libXi - libXext - libXtst - libxslt - libopus - libxml2 - qt5-base - alsa-lib - harfbuzz - libevent - libXfixes - fontconfig - libXcursor - libXdamage - libXrender - qt5-location - libXcomposite - libjpeg-turbo - qt5-webchannel - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/qt5/translations - /usr/share/qt5 - /usr/share/doc - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-webengine-devel - - qt5-webengine - qt5-base-devel - qt5-declarative-devel - qt5-location-devel - qt5-webchannel-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2016-06-15 - 5.6.0 - 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.6/5.6.0/submodules/qtlocation-opensource-src-5.6.0.tar.xz - - geoclue-devel - glib2-devel - mesa-devel - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - qt5-quick1-devel - qt5-sql-sqlite - - 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 - - - - qt5-location-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - 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 - - - - - 2016-06-09 - 0.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 0.3.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 0.3.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 0.3.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 - gstreamer-next-devel - gst-plugins-base-next-devel - mesa-devel - - - qt-gstreamer-1.6.patch - - 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 - - - - - 2016-06-09 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-03 - 1.2.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-03 - 1.2.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-21 - 1.2.0 - First release - Stefan Gronewold (groni) - groni@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 - glib2-devel - polkit-devel - - - /usr/lib/pkgconfig - /usr/include/polkit-qt5-1 - - - - - 2016-06-09 - 0.112 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 0.112 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 0.112 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 0.112 - 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 - - - - - 2016-06-09 - 0.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 0.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 0.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 0.6.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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.6/5.6.0/submodules/qttools-opensource-src-5.6.0.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/qt5/bin/qdoc - /usr/bin/qdoc-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 - - - 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-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 - - - 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-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 - - - 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 - - - qdbusviewer.desktop - assistant.png - - - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - - - 2016-06-09 - 0.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-17 - 0.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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-32bit - emul32 - emul32 - - zlib-32bit - libX11-32bit - libgcc - libpng-32bit - mesa-32bit - libXft-32bit - libXext-32bit - mesa-glu-32bit - libXfixes-32bit - libXcursor-32bit - fontconfig-32bit - libXinerama-32bit - libjpeg-turbo-32bit - - - fltk - zlib-32bit - libX11-32bit - libpng-32bit - mesa-32bit - libXft-32bit - libXext-32bit - mesa-glu-32bit - libXfixes-32bit - libXcursor-32bit - fontconfig-32bit - libXinerama-32bit - libjpeg-turbo-32bit - - - /usr/lib32 - - - - 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 - - - - - 2016-06-09 - 1.3.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-09 - 1.3.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 2.0.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-20 - 2.0.16 - First release - Alihan Öztürk - alihan@pisilinux.org - - - atk @@ -68791,79 +66059,146 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - pangomm - http://www.gtkmm.org/ + pango + http://www.pango.org PisiLinux Community admins@pisilinux.org - GPLv2 LGPLv2.1 + FTL 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 + 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.38/pango-1.38.1.tar.xz - grep - libtool - doxygen - boost-devel - glib2-devel - pango-devel - glibmm-devel - cairomm-devel - libsigc++-devel + libX11-devel + freetype-devel + cairo-devel + libXft-devel + harfbuzz-devel + graphite2-devel + fontconfig-devel + libXrender-devel + gtk-doc + gobject-introspection-devel + glib2-devel - desktop/toolkit/gtk/pangomm/pspec.xml + desktop/toolkit/gtk/pango/pspec.xml - pangomm + pango - pango - glibmm - libgcc glib2 - cairomm - libsigc++ + libX11 + freetype + cairo + libXft + harfbuzz + fontconfig + libXrender - /usr/lib + /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 + - pangomm-devel - Development files for pangomm - pangomm için geliştirme dosyaları + 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 + - pangomm - cairomm-devel - glibmm-devel - pango-devel + pango + cairo-32bit + glib2-32bit + libX11-32bit + libXft-32bit + freetype-32bit + libXrender-32bit + fontconfig-32bit + libffi-32bit + harfbuzz-32bit - /usr/include - /usr/lib/pkgconfig - /usr/lib/pangomm-1.4 + /usr/bin/pango-querymodules-32 + /usr/lib32/libpango* + /usr/lib32/girepository-1.0 + /usr/lib32/pango - + 2016-06-09 - 2.34.0 + 1.38.1 Release Bump Pisi Linux Community admin@pisilinux.org + + 2016-05-27 + 1.38.1 + Release bump + Osman Erkan + osman.erkan@pisilinux.org + - 2014-05-18 - 2.34.0 + 2016-01-25 + 1.38.1 First release - Serdar Soytetir - kaptan@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org @@ -68963,160 +66298,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - - - 2016-06-09 - 2.24.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 2.24.4 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 1.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 1.10.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - gtk2 @@ -69377,6 +66558,83 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 + + + + + 2016-06-09 + 1.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 1.10.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + atkmm @@ -69453,6 +66711,226 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 + + + + + 2016-06-09 + 2.0.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-20 + 2.0.16 + First release + Alihan Öztürk + alihan@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 + glib2-32bit + libX11-32bit + pixman-32bit + libpng-32bit + libxcb-32bit + libXext-32bit + freetype-32bit + fontconfig-32bit + libXrender-32bit + + + /usr/lib32/lib* + /usr/lib32/cairo + + + + + 2016-06-09 + 1.14.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.14.2 + Release Bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-04-18 + 1.14.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + gtk3 @@ -69630,298 +67108,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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.38/pango-1.38.1.tar.xz - - libX11-devel - freetype-devel - cairo-devel - libXft-devel - harfbuzz-devel - graphite2-devel - fontconfig-devel - libXrender-devel - gtk-doc - gobject-introspection-devel - glib2-devel - - 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 - - - pango - cairo-32bit - glib2-32bit - libX11-32bit - libXft-32bit - freetype-32bit - libXrender-32bit - fontconfig-32bit - libffi-32bit - harfbuzz-32bit - - - /usr/bin/pango-querymodules-32 - /usr/lib32/libpango* - /usr/lib32/girepository-1.0 - /usr/lib32/pango - - - - - 2016-06-09 - 1.38.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.38.1 - Release bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2016-01-25 - 1.38.1 - First release - Osman Erkan - osman.erkan@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 - glib2-32bit - libX11-32bit - pixman-32bit - libpng-32bit - libxcb-32bit - libXext-32bit - freetype-32bit - fontconfig-32bit - libXrender-32bit - - - /usr/lib32/lib* - /usr/lib32/cairo - - - - - 2016-06-09 - 1.14.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.14.2 - Release Bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-04-18 - 1.14.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - gdk-pixbuf @@ -70053,6 +67239,229 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 + + + + + 2016-06-09 + 2.34.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 2.34.0 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 2.24.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 2.24.4 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 0.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-17 + 0.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + newt @@ -70123,147 +67532,149 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - openmotif - http://www.motifzone.org/ + fltk + http://www.fltk.org PisiLinux Community admins@pisilinux.org - MOTIF + LGPLv2.1 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 + 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 - libXmu-devel - libXft-devel - xbitmaps - fontconfig-devel - libXt-devel - libXext-devel - libjpeg-turbo-devel + 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 - 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 + tigervnc.patch + fltk-config-dynlibs.patch - desktop/toolkit/motif/openmotif/pspec.xml + desktop/toolkit/fltk/pspec.xml - openmotif + fltk - libXmu - libXft - libXp - libSM - libICE - fontconfig - libXt - libXext - libjpeg-turbo + zlib libX11 + libgcc libpng + mesa + libXft + libXext + mesa-glu + libXfixes + libXcursor + fontconfig + libXinerama + libjpeg-turbo - /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 + fltk-32bit emul32 emul32 - libSM-32bit - libXt-32bit - libXp-32bit - libXmu-32bit - libpng-32bit + zlib-32bit libX11-32bit - libICE-32bit + libgcc + libpng-32bit + mesa-32bit libXft-32bit libXext-32bit + mesa-glu-32bit + libXfixes-32bit + libXcursor-32bit fontconfig-32bit + libXinerama-32bit libjpeg-turbo-32bit - openmotif - libSM-32bit - libXt-32bit - libXp-32bit - libXmu-32bit - libpng-32bit + fltk + zlib-32bit libX11-32bit - libICE-32bit + libpng-32bit + mesa-32bit libXft-32bit libXext-32bit + mesa-glu-32bit + libXfixes-32bit + libXcursor-32bit fontconfig-32bit + libXinerama-32bit libjpeg-turbo-32bit /usr/lib32 + + 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 + + 2016-06-09 - 2.3.4 + 1.3.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2013-08-17 - 2.3.4 + 2016-04-09 + 1.3.3 First release - Osman Erkan - osman.erkan@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - wxGTK2.8 + wxGTK http://www.wxwidgets.org/ PisiLinux Community @@ -70276,96 +67687,67 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 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. - mirrors://sourceforge/wxwindows/wxGTK-2.8.12.tar.bz2 + 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 - gst-plugins-base-devel - gstreamer-devel - gtk2-devel - libjpeg-turbo-devel - libSM-devel - libXinerama-devel - libXxf86vm-devel - libsdl-devel - mesa-devel - mesa-glu-devel - pango-devel + 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 - wxGTK-collision.patch - wxGTK-2.8.10-CVE-2009-XXXX.diff - desktop/toolkit/wxGTK2.8/pspec.xml + desktop/toolkit/wxGTK/pspec.xml - wxGTK2.8 + wxGTK - gst-plugins-base - gstreamer gtk2 - libjpeg-turbo - libSM - libXinerama - libXxf86vm - libsdl mesa - pango tiff + zlib + cairo + expat glib2 + pango + libSM libX11 libgcc libpng + gstreamer gdk-pixbuf - wxBase + libXxf86vm + webkit-gtk2 + libjpeg-turbo + gst-plugins-base - /usr/bin/wx-config-2.8 - /usr/bin/wxconfig - /usr/lib/libwx_gtk* - /usr/lib/wx/config/gtk2-unicode-release-2.8 + /usr/lib/ + /usr/bin + /usr/share/doc/ + /usr/share/aclocal/ + /usr/share/bakefile/ + /usr/lib/wx/config + /usr/share/locale/ - wxGTK2.8-devel + wxGTK-devel wxGTK-devel is the development files for wxGTK + wxGTK araç seti için geliştirme dosyaları - wxBase-devel - wxGTK2.8 - - - /usr/lib/wx/include - - - - wxBase - wxBase is the GUI independent part of wxWidgets - wxWidgets/wxGTK için arayüz bağımsız olan kitaplıklar - - libunwind - zlib - expat - libgcc - - - /usr/bin/wxrc - /usr/bin/wxrc-2.8 - /usr/share/doc - /usr/share/bakefile - /usr/share/locale - /usr/lib/libwx_base* - - - - wxBase-devel - wxBase-devel is the development files for wxBase - wxBase sınıfları için geliştirme dosyaları - - wxGTK2.8 - wxBase - zlib-devel - expat-devel + wxGTK /usr/include @@ -70374,1943 +67756,257 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 2.8.12 + 3.0.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-01-05 - 2.8.12 + 2016-02-23 + 3.0.2 First release - Ertuğrul Erata - ertugrulerata@gmail.com + İbrahim KARAGÜZEL + ibrahimkaraguzel@windowslive.com - 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/4.0/4.0.0/qt-creator-opensource-src-4.0.0.tar.gz - - libgcc - libX11-devel - cmake - git - mesa-devel - openssh - qt5-base-devel - qt5-declarative-devel - qt5-linguist - qt5-quickcontrols2 - 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 - - libgcc - qt5-svg - qt5-base - qt5-base-devel - qt5-script - qt5-webkit - qt5-designer - qt5-assistant - qt5-declarative - - - /usr/bin - /usr/libexec/qtcreator - /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 - - - - - 2016-06-09 - 4.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-22 - 4.0.0 - version bump and fixed prefix path - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-04-21 - 3.6.1 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-04 - 1.0.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gtk2-engines-murrine - http://cimitan.com/murrine/project/murrine + librsvg + http://librsvg.sourceforge.net/ PisiLinux Community admins@pisilinux.org - GPLv2 + LGPLv2.1 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 + 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.13.tar.xz - gtk2-devel - glib2-devel - cairo-devel + libcroco-devel + gtk3-devel pango-devel - pixman-devel + vala-devel + python-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 - - - - - 2016-06-09 - 0.98.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-07 - 0.98.2 - First release - Serdar Soytetir - kaptan@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. - https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.15.tar.xz - desktop/lookandfeel/icon-theme-hicolor/pspec.xml - - - icon-theme-hicolor - - /usr/share/doc - /usr/share/icons - - - - - 2016-06-09 - 0.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-09 - 0.15 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - icon-theme-adwaita - http://www.gnome.org - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.lookandfeel - Adwaita icon theme - Adwaita icon theme - ftp://ftp.gnome.org/pub/gnome/sources/adwaita-icon-theme/3.20/adwaita-icon-theme-3.20.tar.xz - - intltool - - desktop/lookandfeel/icon-theme-adwaita/pspec.xml - - - icon-theme-adwaita - Adwaita icon theme - - / - - - - - 2016-06-09 - 3.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-07 - 3.20 - First release - Alihan Öztürk - alihan@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 - /etc/X11/xinit/xinitrc.d/35-example-content.sh - - - 35-example-content.sh - - - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-21 - 1.2 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 2.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-06 - 2.03 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - pisilinux-theme-maia - http://www.pisilinux.org/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.lookandfeel - PisiLinux için görsel çalışmaları. - PisiLinux için simge seti, şifre ekranı, açılış ekranı ve kilit ekranı. - https://github.com/alihanozturk/pisilinux-theme-maia/archive/0.2.tar.gz - - extra-cmake-modules - qt5-base-devel - plasma-framework-devel - - desktop/lookandfeel/pisilinux-theme-maia/pspec.xml - - - pisilinux-theme-maia - PisiLinux için görsel çalışmaları. - - /usr/share - /usr/share/color-schemes - /usr/share/icons - /usr/share/kservices5 - /usr/share/plasma - /usr/share/sddm - /usr/share/wallpapers - /usr/share/doc - - - - - 2016-06-09 - 0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-19 - 0.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-04-20 - 0.1 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 8.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-23 - 8.11 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - noto-fonts-cjk - http://www.google.com/get/noto - - Osman Erkan - osman.erkan@pisilinux.org - - CUSTOM:SIL - data:font - desktop.font - Google Noto CJK fonts - Google Noto CJK yazı tipleri - noto-fonts-cjk, Google Noto CJK fonts. - Google Noto CJK yazı tipleri. - https://github.com/googlei18n/noto-cjk/archive/v1.004.tar.gz - desktop/font/noto-fonts-cjk/pspec.xml - - - noto-fonts-cjk - noto-fonts-cjk, Google Noto CJK fonts - - /usr/share/fonts/noto/*.ttc - /usr/share/doc/noto-fonts-cjk/ - - - - - 2016-06-09 - 0.0_20100919 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-22 - 0.0_20100919 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - dejavu-fonts - http://www.dejavu-fonts.org - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - as-is - data:font - desktop.font - DejaVu yazıtipleri - DejaVu fonts - DejaVu fonts - DejaVu yazıtipleri - Les fontes DejaVu basées sur des fontes Bitstream avec des améliorations. - Contains DejaVu fonts that are based on Bitstream fonts, with improvements. - Bevat de DejaVu fonts die zijn gebasserd op de Bitstream fonts, met verbeteringen. - mirrors://sourceforge/dejavu/2.34/dejavu-fonts-2.34.tar.bz2 - - fontforge - perl-Font-TTF - perl-IO-String - unicode-ucd - - desktop/font/dejavu-fonts/pspec.xml - - - dejavu-fonts - - /etc/fonts - /etc/X11/fontpath.d/dejavu - /usr/share/fonts - /usr/share/doc - - - - - 2016-06-09 - 2.34 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-27 - 2.34 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - droid-fonts - http://www.droidfonts.com - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - Apache-2.0 - data:font - desktop.font - Droid, TrueType font ailesi - Droid is a TrueType font family intended for use on the small screens of mobile handsets - Droid is een TrueType font familie gemaakt voor gebruik op de kleine schermen van mobiele telefoons - Android platformunda kullanılmak üzere oluşturulmuş font ailesi. - Droid is a font family created by Ascender Corporation for use by the Open Handset Alliance platform, Android. The font families, known simply as Droid, are Droid Sans, Droid Serif, and Droid Sans Mono. - Droid is een TrueType font familie gemaakt voor gebruik op de kleine schermen van mobiele telefoons - http://pardusarchives.googlecode.com/files/droid_fonts_20100815.tar.gz - desktop/font/droid-fonts/pspec.xml - - - droid-fonts - - /etc/fonts - /usr/share/fonts - /usr/share/doc - - - 65-droid-fonts-sans-fontconfig.conf - 60-droid-fonts-sans-mono-fontconfig.conf - 59-droid-fonts-serif-fontconfig.conf - - - - - 2016-06-09 - 0.0_20100821 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-28 - 0.0_20100821 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - noto-fonts - http://www.google.com/get/noto - - Osman Erkan - osman.erkan@pisilinux.org - - Apache - data:font - desktop.font - Google Noto TTF fonts - Google Noto TTF yazı tipleri - Noto fonts are open source. All Noto fonts are published under the SIL Open Font License, Version 1.1. Language data and some sample texts are from the Unicode CLDR project. - Tüm diller/karakterlerin desktelendiği yazı tipidir. - https://github.com/googlei18n/noto-fonts/archive/v2015-09-29-license-adobe.tar.gz - desktop/font/noto-fonts/pspec.xml - - - noto-fonts - - /usr/share/doc - /usr/share/fonts/noto - - - - noto-fonts-ttf-croscore - noto-fonts-ttf-croscore, Chrome OS core fonts - noto-fonts-ttf-croscore, Chrome OS için temel yazı tipleri - - /usr/share/fonts/TTF - - - - - 2016-06-09 - 20150929 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-12 - 20150929 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - liberation-fonts - https://fedorahosted.org/liberation-fonts/ - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - GPLv2 - data:font - desktop.font - Font collection similar to ones found in Microsoft Windows - Microsoft Windows fontlarına benzeyen bir dizi font ailesi - A set of fonts similar to Microsoft Windows fonts. There are three sets: Sans (a substitute for Arial, Albany, Helvetica, Nimbus Sans L, and Bitstream Vera Sans), Serif (a substitute for Times New Roman, Thorndale, Nimbus Roman, and Bitstream Vera Serif) and Mono (a substitute for Courier New, Cumberland, Courier, Nimbus Mono L, and Bitstream Vera Sans Mono). - liberation-fonts MS Windows fontlarına benzer bir yazı tipi ailesidir. Sans, serif ve mono olmak üzere 3 setten oluşur. - http://dev-www.libreoffice.org/src/cfbf1ac6f61bf6cf45342a0cc9381be5-liberation-fonts-ttf-2.00.0.tar.gz - - fontforge - - desktop/font/liberation-fonts/pspec.xml - - - liberation-fonts - - /usr/share/fonts - /usr/share/doc - - - - - 2016-06-09 - 2.00.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 - 2.00.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 + gtk-doc + gobject-introspection-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 + bgo759084.patch - desktop/font/fontconfig/pspec.xml + desktop/gnome2/librsvg/pspec.xml - fontconfig + librsvg - freetype - expat + glib2 + libxml2 + cairo + pango + libcroco + gdk-pixbuf - /etc/fonts + /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 - /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 + librsvg-devel + Development files for librsvg + librsvg için geliştirme dosyaları - fontconfig - freetype-devel - expat-devel + librsvg + gdk-pixbuf-devel + cairo-devel + glib2-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 - - - fontconfig - expat-32bit - freetype-32bit - - - /usr/lib32 - - - - - 2016-06-09 - 2.11.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 2.11.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-17 - 2.11.1 - First release - Alihan Öztürk - alihan@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 - - 2016-06-09 - 6.3.0 + 2.40.13 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-01-27 - 6.3.0 + 2016-03-23 + 2.40.13 First release - Serdar Soytetir - kaptan@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - harfbuzz - http://www.freedesktop.org/software/harfbuzz + orbit2 + http://www.gnome.org/ PisiLinux Community admins@pisilinux.org GPLv2 + LGPLv2 library - desktop.font - OpenType text shaping engine - The Harfbuzz package contains an OpenType text shaping engine. - http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-1.2.6.tar.bz2 + 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 - cairo-devel + libIDL-devel + grep glib2-devel - icu4c-devel - graphite2-devel - freetype-devel - expat-devel + gtk-doc - desktop/font/harfbuzz/pspec.xml + + fedora/ORBit2-allow-deprecated.patch + + desktop/gnome2/orbit2/pspec.xml - harfbuzz + orbit2 - cairo + libIDL glib2 - icu4c - libgcc - freetype - graphite2 + /usr/bin /usr/lib /usr/share/doc - /usr/bin - /usr/share/gir-1.0 + /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 - - harfbuzz-devel - - glib2-devel - icu4c-devel - graphite2-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 - cairo-32bit - - - cairo-32bit - glib2-32bit - icu4c-32bit - freetype-32bit - - - /usr/lib32 - - - - - 2016-06-09 - 1.2.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-02 - 1.2.6 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-06 - 1.2.6 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - 2016-06-09 - 5.4.3 + 2.14.19 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-11-11 - 5.4.3 + 2014-05-21 + 2.14.19 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Kamil Atlı + suvarice@gmail.com - fontforge - http://fontforge.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - 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 - - 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 - - - fontforge - - zlib - glib2 - libX11 - libpng - python - libxml2 - freetype - readline - libtool-ltdl - tiff - cairo - libXi - pango - libXft - giflib - libspiro - libjpeg-turbo - - - /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 - - - - - 2016-06-09 - 2.0.20150824 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-28 - 2.0.20150824 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ode - http://www.ode.org/ + glibmm + http://gtkmm.sourceforge.net/ 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 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - gcompris - http://gcompris.net/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:gui - game.misc - Full featured educational application for children from 2 to 10 - 2-10 yaş arası çocuklar için eğitici uygulamalar - GCompris is an educational software suite comprising of numerous activities for children aged 2 to 10. Some of the activities are game orientated, but nonetheless still educational. - GCompris, 2-10 yaş arası çocuklar için bir çok etkinliği kapsayan eğitim amaçlı bir yazılım paketidir. Bazı etkinlikler, eğitim amaçlı oyunlardan oluşmaktadır. - http://gcompris.net/download/gcompris-15.10.tar.bz2 + 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 - intltool - gtk2-devel - librsvg-devel - libxml2-devel + libsigc++-devel glib2-devel - texinfo - texi2html - gstreamer-devel - sqlite-devel - - game/misc/gcompris/pspec.xml - - - gcompris - - atk - gtk2 - cairo - glib2 - pango - sqlite - librsvg - libxml2 - gstreamer - gdk-pixbuf - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - /usr/share/pixmaps - /usr/share/gcompris - /usr/share/applications - /usr/share/locale - - - gcompris-edit.desktop - gcompris.desktop - gcompris-edit.png - gcompris.png - - - - - 2016-02-07 - 15.10 - First release - Alihan Öztürk - alihan@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 - First release - Stefan Gronewold (groni) - groni@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 + desktop/gnome2/glibmm/pspec.xml - dustrac + glibmm - 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 - - - - - - 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 - - - - - 2016-06-09 - 5.100.138 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-17 - 5.100.138 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 018 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-04 - 018 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 1.0.29 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-03-04 - 1.0.29 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-12 - 1.3 - 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 - - - - - 2016-06-09 - 5.33 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-16 - 5.33 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - splix - http://splix.sf.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - app:console - hardware.printer - A set of CUPS printer drivers for SPL (Samsung Printer Language) printers - SPL (Samsung Yazıcı Dili) için CUPS sürücüleri - The Splix drivers are usable by all printer devices which understand the SPL II language. It covers several Samsung, Xerox, Dell and Ricoh printers. - splix, SPL II dilini anlayabilen tüm yazıcılar tarafından kullanılabilen sürücüleri içerir. Bu sürücü bazı Samsung, Xerox, Dell ve Ricoh yazıcıları desteklemektedir. - http://source.pisilinux.org/1.0/splix_2.0.0+20110720.orig.tar.gz - http://splix.ap2c.org/samsung_cms.tar.bz2 - - cups-devel - jbigkit-devel - - - splix-1.1.0-fix-makefile.patch - splix-nostrip.patch - install-english-only.patch - - hardware/printer/splix/pspec.xml - - - splix - - cups libgcc - jbigkit + libsigc++ - /usr/lib/cups - /usr/share/cups - /usr/share/doc - - - - - 2016-06-09 - 2.0.0_20110720 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-10 - 2.0.0_20110720 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 1.6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-23 - 1.6.4 - First release - Stefan Gronewold(groni) - groni@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 - - - 2016-06-09 - 4.0.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-24 - 4.0.12 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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+nmu4.tar.gz - 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ı + glibmm-devel + Development files for glibmm + glibmm için geliştirme dosyaları - libpaper + glibmm + glib2-devel + libsigc++-devel /usr/include - /usr/share/man/man3 + /usr/lib/glibmm-* + /usr/lib/giomm-* + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/glibmm-* 2016-06-09 - 1.1.24 + 2.44.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-23 - 1.1.24 + 2015-07-21 + 2.44.0 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -72319,5333 +68015,179 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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-20160609.tar.gz - - cleanup-script - - hardware/printer/foomatic-db/pspec.xml - - - foomatic-db - - pnm2ppa - - - /usr/share - - - - - 2016-06-09 - 4.0.20160609 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 4.0.20160326 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - hplip - http://hplip.sourceforge.net/ + kaptan + http://pisilinux.org Pisi Linux Admins admins@pisilinux.org - GPLv2+ - MIT - hardware.printer - HP Linux Imaging and Printing System - HP Linux yazıcı ve tarayıcı sistemi - HP Linux Imaging and Printing (HPLIP) System includes printer and scanner drivers and related service tools. - HP yazıcı ve tarayıcıları için sürücüler, yazılım eklentileri ve yönetim araçları - mirrors://sourceforge/hplip/hplip/3.16.5/hplip-3.16.5.tar.gz - - patch-ppds.sh - fedora/copy-deviceids.py - fedora/hplip-deviceIDs-ppd.patch - fedora/hplip-ppd-ImageableArea.patch - + GPLv2 + app:gui + desktop.pisilinux + Kaptan, Pisi Linux workspace configuration wizard + Pisi Linux Kaptan + Pisi Linux Kaptan + Kaptan lets you configure your workspace on first login. + Kaptan, bilgisayarınız ilk defa açıldığında çalışma ortamınızı kişiselleştirmenize yardımcı olur. + Kaptan, el asistente de inicio de Pisi Linux que le ayudará a personalizar su entorno de trabajo. + kaptan + https://github.com/PisiLinuxNew/kaptan/archive/5.0-beta3.tar.gz - libjpeg-turbo-devel - foomatic-db - net-snmp-devel - sane-backends-devel - cups-devel + python3-setuptools + python3-qt5-devel python3-devel - python-devel - libusb-devel - dbus-devel - desktop-file-utils + qt5-linguist - - fedora/hplip-avahi-parsing.patch - fedora/hplip-bad-low-ink-warning.patch - fedora/hplip-clear-old-state-reasons.patch - fedora/hplip-deviceIDs-drv.patch - fedora/hplip-dj990c-margin.patch - fedora/hplip-hpcups-sigpipe.patch - fedora/hplip-hpijs-marker-supply.patch - fedora/hplip-lineart.patch - fedora/hplip-log-stderr.patch - fedora/hplip-logdir.patch - fedora/hplip-no-asm.patch - fedora/hplip-no-write-bytecode.patch - fedora/hplip-retry-open.patch - fedora/hplip-scan-tmp.patch - fedora/hplip-silence-ioerror.patch - fedora/hplip-snmp-quirks.patch - fedora/hplip-strncpy.patch - fedora/hplip-udev-rules.patch - fedora/hplip-strstr-const.patch - pisilinux/desktop-i18n.patch - pisilinux/desktop-i18n-1.patch - pisilinux/add-pisilinux-support.patch - pisilinux/fix-polkit-directory.patch - pisilinux/suppress-module-warnings.patch - pisilinux/hp-systray-consume-session-param.patch - - hardware/printer/hplip/pspec.xml + desktop/pisilinux/kaptan/pspec.xml - hplip - app:console - library - driver + kaptan - libjpeg-turbo - net-snmp - foomatic-db - sane-backends - cups - dbus - libgcc - libusb - openssl + python3-qt5 - /etc/sane.d/dll.d - /etc/hp/hplip.conf /usr/bin - /usr/lib/cups/backend - /usr/lib/cups/filter - /usr/lib - /var/lib/hp - /usr/share/cups - /usr/share/hplip - /usr/share/dbus-1 - /usr/share/PolicyKit - /usr/share/hplip/prnt/plugins - /var/log/hp - /lib/udev/rules.d - /etc/cron.daily/ + /usr/lib/kaptan + /usr/lib/python3.4/site-packages + /usr/share/applications + /usr/share/icons + /usr/share/doc + /usr/share/kaptan/languages + /etc - - System.Package - - - fedora/hpcups-update-ppds.sh - hpaio - hplip_tr.qm - - - hplip-gui - A set of useful utilities written in Qt for managing HP devices - Qt ile yazılmış, HP cihazları yönetmek için kullanılan bir dizi kullanışlı araç + + + 2016-06-09 + 5.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-29 + 5.1.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-17 + 5.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 5.0 + First release + Metehan Özbek + admins@pisilinux.org + + + + + + history-manager + http://ish.kodzilla.org/pardus/history-manager/ + + Metehan Özbek + admin@pisilinux.org + + GPLv2 app:gui - hplip + desktop.pisilinux + KDE5 port of History Manager Tool + Pisi Geçmiş Yöneticisi uygulaması + History manager is a graphical interface to pisi snapshot facilities. + Pisi ile yapılan işlem geçmişini gösterme, sistemi belirli noktaya döndürme, yeni görüntü alma gibi geçmiş yönetimi işlemleri yapmayı sağlayan araç. + https://github.com/PisiLinuxNew/history-manager/archive/0.2.8.0-Beta.tar.gz + + python-qt5-devel + pypolkit + qt5-base-devel + python-setuptools + qt5-linguist + + desktop/pisilinux/history-manager/pspec.xml + + + history-manager + + python-qt5 + pypolkit + + + /usr/bin + /usr/share/locale + /usr/lib/python* + /usr/share + + + + + 2016-06-18 + 0.2.8.0b + First release + Metehan Özbek + admin@pisilinux.org + + + + + + pisilinux-desktop-services + http://www.pisilinux.org + + pisilinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.pisilinux + Pisi Linux Desktop Services + Pisi Linux Masaüstü Hizmetleri + pisilinux-desktop-services is a wrapper python module for integrating various desktop environments using PyQt. + pisilinux-desktop-services, Pisi Linux Uygulamalarının farklı masaüstü ortamları ile bütünleşik bir şekilde çalışmasını sağlayan bir Python modülüdür. + https://github.com/PisiLinuxNew/pds/archive/2.0.0.tar.gz + + python-qt5-devel + + + environment.patch + + desktop/pisilinux/pisilinux-desktop-services/pspec.xml + + + pisilinux-desktop-services - hplip - python-pygobject python-qt5 - /usr/bin/hp-toolbox - /usr/bin/hp-systray - /usr/bin/hp-print - /usr/share/hplip/toolbox.py - /usr/share/hplip/systray.py - /usr/share/hplip/print.py - /etc/xdg/autostart - /usr/share/applications/*.desktop - /usr/share/hplip/data/images - /usr/share/hplip/plugins - /usr/share/hplip/ui4 - /usr/share/pixmaps - - - hplip.png - - - - hplip-docs - Documentation files for HPLIP - data:doc - - hplip - - - /usr/share/doc + /usr/lib + /usr/share/ 2016-06-09 - 3.16.5 + 2.0.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-05-09 - 3.16.5 - Version bump - Kamil Atlı - suvari@pisilinux.org + 2016-06-03 + 2.0.0 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-05-08 - 3.15.11 - First release - Alihan Öztürk - alihan@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.5.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 - openldap-client - avahi-devel - avahi-glib-devel - 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-filters-devel - Development files for cups-filters - Cups-filters için geliştirme dosyaları - - cups-filters - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-23 - 1.5.0 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 1.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 1.13 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - system-config-printer - http://cyberelk.net/tim/software/system-config-printer - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - A printer administration tool - Yazıcı yapılandırma altyapısı - system-config-printer is a graphical user interface that allows the user to configure a CUPS print server. - system-config-printer, Python ile yazılmış ve otomatik yazıcı tanıma sürecinde kullanılan altyapıyı oluşturan bir kütüphanedir. - http://cyberelk.net/tim/data/system-config-printer/1.5/system-config-printer-1.5.7.tar.xz - - tr.po - - - util-linux - xmlto - libxslt-devel - intltool - python3-devel - cups-devel - eudev-devel - glib2-devel - libusb-devel - libgnome-keyring-devel - desktop-file-utils - - - fix-icon.patch - system-config-printer-shbang.patch - - hardware/printer/system-config-printer/pspec.xml - - - system-config-printer - - eudev - glib2 - libusb - libgnome-keyring - python-cups - python-smbc - dbus-python - python-pygobject3 - cups - - - /usr/lib - /etc/dbus-1 - /etc/cupshelpers - /usr/share/doc - /lib/udev/rules.d - /usr/share/dbus-1 - /usr/share/system-config-printer/debug.py - /usr/share/appdata/system-config-printer.appdata.xml - /usr/share/system-config-printer/smburi.py - /usr/share/system-config-printer/config.py - /usr/share/system-config-printer/ppdippstr.py - /lib/systemd/system/configure-printer@.service - /run/udev-configure-printer - /lib/udev - /usr/libexec - /usr/lib/tmpfiles.d/system-config-printer.conf - - - tmpfiles.conf - - - - system-config-printer-gtk - GTK+ frontend of system-config-printer - system-config-printer için GTK+ önyüzü - - python-gtk - notify-python - python-pygobject - python-pygobject3 - system-config-printer - - - /usr/share/man - /usr/share/system-config-printer - /etc/xdg/autostart - /usr/share/applications - /usr/bin - /usr/share/locale - - - - - 2016-06-09 - 1.5.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.5.7 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-08 - 1.5.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - foomatic-db-nonfree - http://www.linuxprinting.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - Custom - app:console - hardware.printer - Foomatic printer database nonfree - Foomatic - database extension consisting of manufacturer-supplied PPD files released under non-free licenses. - http://www.openprinting.org/download/foomatic/foomatic-db-nonfree-20160609.tar.gz - - cups-devel - foomatic-db - - hardware/printer/foomatic-db-nonfree/pspec.xml - - - foomatic-db-nonfree - - foomatic-db - - - /usr/share/foomatic/db/ - /usr/share/doc/foomatic-db-nonfree - - - - - 2016-06-09 - 20160609 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 20160326 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gutenprint - http://gimp-print.sourceforge.net/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - data - hardware.printer - High quality printer drivers - Yüksek kaliteli yazıcı sürücüleri - gutenprint contains drivers for Canon, Epson, Lexmark, Sony, Olympus, and PCL printers for use with Ghostscript, CUPS, Foomatic, and the Gimp. - Canon, Epson, Lexmark, Sony, Olympus ve PCL türü yazıcılar için Gimp, CUPS, Foomatic yazıcı sürücüleri - mirrors://sourceforge/gimp-print/gutenprint-5.2/5.2.11/gutenprint-5.2.11.tar.bz2 - - fedora/cups-genppdupdate.py.in - - - cups-devel - foomatic-db - ghostscript-devel - cups - python-cups - ghostscript - atk-devel - gtk2-devel - zlib-devel - cairo-devel - glib2-devel - pango-devel - libusb-devel - - - fedora/gutenprint-build.patch - fedora/gutenprint-menu.patch - fedora/gutenprint-O6.patch - fedora/gutenprint-postscriptdriver.patch - - hardware/printer/gutenprint/pspec.xml - - - gutenprint - - cups - ghostscript - gtk2 - zlib - glib2 - libusb - ncurses - freetype - fontconfig - - - /usr/lib/cups - /usr/bin - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/man/ - /usr/share/cups - /usr/share/foomatic - /usr/share/gutenprint - /usr/share/locale - /usr/include/gutenprintui2/ - /etc/cups/command.types - - - System.Package - - - fedora/gutenprint-foomaticppdupdate - - - - gutenprint-devel - Development files for gutenprint - gutenprint için geliştirme dosyaları - - gutenprint - - - /usr/include/gutenprint - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2016-06-09 - 5.2.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-13 - 5.2.11 - First release - Ali Algul - alialgul@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.1.3/cups-2.1.3-source.tar.bz2 - http://source.pisilinux.org/1.0/cups-tr.tar - - acl-devel - pam-devel - dbus-devel - libpcre-devel - zlib-devel - python-devel - libusb-devel - libgcc - avahi-libs - avahi-devel - 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 - archlinux/cups-1.6.0-fix-install-perms.patch - fedora/cups-enum-all.patch - fedora/cups-final-content-type.patch - fedora/cups-res_init.patch - fedora/cups-hp-deviceid-oid.patch - fedora/cups-logrotate.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 - avahi - avahi-libs - 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 - - zlib-32bit - openssl-32bit - - - zlib-32bit - openssl-32bit - libgcc - cups - - - /usr/bin/cups-config-32bit - /usr/lib32 - - - - - 2016-06-09 - 2.1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 2.1.3 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-23 - 2.1.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - simpleburn - http://simpleburn.tuxfamily.org/ - - Stefan Gronewold - groni@pisilinux.org - - Cecill-2 license - app:gui - hardware.optical - A simple GTK+ application for burning CDs and DVDs - SimpleBurn is a minimalistic application for burning and extracting CDs and DVDs. It basically is a Cdrtools frontend and is designed in two parts: the GUI (GTK) and a BASH script that handle the requested actions. - simpleburn - https://sourceforge.net/projects/pisilinux/files/source/simpleburn-1.6.5.tar.bz2 - - gtk2-devel - cdparanoia-devel - mpg123-devel - pkgconfig - cmake - libisoburn-devel - libburn-devel - libisofs-devel - libcdio-devel - cdrkit - util-linux - libutil-linux-devel - - hardware/optical/simpleburn/pspec.xml - - - simpleburn - - gtk2 - glib2 - lame - cdparanoia - libisoburn - cdrdao - libcdio - mpg123 - vorbis-tools - cdrkit - libcdio - - - /usr/bin - /usr/share/pixmaps - /usr/share/locale - /usr/share/simpleburn - /usr/share/applications - /usr/doc - - - - - 2016-06-09 - 1.6.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-20 - 1.6.5 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-04-19 - 1.6.5 + 2016-04-28 + 2.0.0 Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libisoburn - http://libburnia-project.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - app:console - hardware.optical - Frontend for libraries libburn and libisofs - Libburn ve libisofs kütüphanelerini kullanmak için bir arayüz. - Frontend for libraries libburn and libisofs - libisoburn, libburn ve libisofs kütüphanelerini kullanmak için bir arayüzdür. - http://files.libburnia-project.org/releases/libisoburn-1.4.2.tar.gz - - libburn-devel - libisofs-devel - readline-devel - zlib-devel - acl-devel - - hardware/optical/libisoburn/pspec.xml - - - libisoburn - - acl - zlib - readline - libburn - libisofs - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - libisoburn-devel - Development files for libisoburn - libisoburn için geliştirme dosyaları - - libisoburn - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-15 - 1.4.2 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - libburn - http://libburnia-project.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - app:console - hardware.optical - A library for reading, mastering and writing optical discs - Optik diskleri okumak, idare etmek ve yazmak için kitaplıklar - Libburn is an open-source library for reading, mastering and writing optical discs. - libburn, optik diskleri okumak, idare etmek ve yazmak için yazılmış, açık kaynak kodlu bir kitaplıktır. - http://files.libburnia-project.org/releases/libburn-1.4.2.tar.gz - hardware/optical/libburn/pspec.xml - - - libburn - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libburn-devel - Development files for libburn - libburn için geliştirme dosyaları - - libburn - - - /usr/include - /usr/lib/pkgconfig/libburn-1.pc - - - - - 2016-06-09 - 1.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 1.4.2 - First release - Stefan Gronewold - groni@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 - 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 - - - - - 2016-06-25 - 1.1.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-09-14 - 1.1.11 - First release - Burak Fazıl Ertürk - burakerturk@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 - - - - - 2016-06-09 - 3.10.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 3.10.2 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 0.90_p1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-25 - 0.90_p1 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - lsdvd - http://untrepid.com/lsdvd - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.optical - Small application for listing the contents of DVDs - DVD bilgilerini toplamaya yarayan bir araç - lsdvd is a small application which lists the contents of DVDs to your terminal. - lsdvd, terminal üzerinden DVD'lerin içeriğini görüntülemeye yarayan basit bir araçtır. - mirrors://sourceforge/lsdvd/lsdvd-0.17.tar.gz - - libdvdread-devel - - hardware/optical/lsdvd/pspec.xml - - - lsdvd - - libdvdread - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 0.17 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 0.17 - First release - Stefan Gronewold - groni@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 - - - - - 2016-06-09 - 0.92 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.92 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - cdrdao - http://cdrdao.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.optical - Burn CDs in disk-at-once mode - CDlerinizi DAO modunda yazar - cdrdao records audio or data CD-Rs in disk-at-once (DAO) mode based on a textual description of the CD contents. - mirrors://sourceforge/cdrdao/cdrdao-1.2.3.tar.bz2 - - lame-devel - libao-devel - libmad-devel - libvorbis-devel - - - cdrdao-1.2.3-version.patch - cdrdao-1.2.3-stat.patch - cdrdao-1.2.3-autoconf-update.patch - - hardware/optical/cdrdao/pspec.xml - - - cdrdao - - lame - libmad - libvorbis - libao - - - /usr/bin - /usr/share/cdrdao - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 1.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-19 - 1.2.3 - 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 - - - - - 2016-06-09 - 2.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 2.1.0 - First release - Serdar Soytetir - kaptan@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 - scons - doxygen - - - 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 - - - - - 2016-06-10 - 2.2.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-28 - 2.2.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - libxml2-devel - 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 - - - - - 2016-06-09 - 1.0.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-24 - 1.0.11 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 0.5.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-31 - 0.5.4 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 - 1.2.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 2.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-13 - 2.2.3 - First release - Stefan Gronewold(groni) - groni@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 - https://sources.archlinux.org/other/sane/sane-backends-1.0.25.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 - - - 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.23-udev.patch - archlinux/network.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 - - - - - 2016-06-09 - 1.0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-01 - 1.0.25 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - sane-frontends - http://www.sane-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - hardware.scanner - Graphical frontend to SANE - SANE için grafiksel arayüz paketi - sane-frontends includes the scanadf and xcam programs. - sane-frontends, scanadf ve xcam grafiksel araçlarını içerir. - ftp://ftp.uwsg.indiana.edu/linux/gentoo/distfiles/sane-frontends-1.0.14.tar.gz - - sane-backends-devel - gimp-devel - gtk2-devel - - - sane-frontends-1.0.14-array-out-of-bounds.patch - sane-frontends-1.0.14-sane-backends-1.0.20.patch - - hardware/scannner/sane-frontends/pspec.xml - - - sane-frontends - - sane-backends - gtk2 - glib2 - - - /usr/bin - /usr/share/doc/sane-frontends - /usr/share/man - - - - - 2016-06-09 - 1.0.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-10 - 1.0.14 - First release - Varol Maksutoğlu - waroi@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 - - - - - 2016-06-09 - 1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 1.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - dkms - http://linux.dell.com/dkms - - Ertan Güven - ertan@pisilinux.org - - 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 - - kernel-headers - - hardware/misc/dkms/pspec.xml - - - dkms - - kernel-headers - - - /etc - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/man - /var/lib - - - - - 2016-06-09 - 2.2.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-01 - 2.2.0.3 - First release - Stefan Gronewold(groni) - groni@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 - - libmtdev - - - /usr/lib32 - - - - - 2016-06-09 - 1.1.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.5 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - chrpath - - - 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 - - - - - 2016-06-09 - 0.2.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-10 - 0.2.11 - First release - Varol Maksutoğlu - waroi@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 - - - - - 2016-06-09 - 1.20.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 1.20.7 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 2.5.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-02 - 2.5.8 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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.2.tar.bz2 - - cmake - doxygen - libusb-devel - boost-devel - python-devel - swig - - - fix-udev-group_and_usb_name.patch - - hardware/misc/libftdi/pspec.xml - - - libftdi - - libusb - libgcc - - - /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 - - - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 1.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - 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.1.11/libmtp-1.1.11.tar.gz - - doxygen - libusb-devel - libgcrypt-devel - - hardware/misc/libmtp/pspec.xml - - - libmtp - - libusb - libgcrypt - - - /usr/bin - /usr/lib/libmtp.* - /lib/udev - /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 - - - - - 2016-06-09 - 1.1.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-10 - 1.1.11 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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.3.0/libsmbios-2.3.0.tar.bz2 - - libxml2-devel - chrpath - doxygen - - 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 - - - - - 2016-06-09 - 2.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-01 - 2.3.0 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 1.1 - First release - PisiLinux Community - admins@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 - - - - - 2016-06-09 - 1.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-31 - 1.11 - First release - PisiLinux Community - admins@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 - - - - - 2016-06-09 - 1.1.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-25 - 1.1.7 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 1.0.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 1.0.9 - First release - PisiLinux Community - 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.99.4.tar.xz - - tr.po - - - dbus-devel - glib2-devel - polkit-devel - dbus-glib-devel - libgudev-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 - libgudev - 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/gir-1.0 - /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 - libgudev-devel - libplist-devel - libimobiledevice-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 0.99.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-18 - 0.99.4 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-01-26 - 0.9.23 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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://dev.gentoo.org/~bircoph/distfiles/suspend-1.0_p20120915.tar.xz - - lzo-devel - pciutils-devel - libx86-devel - libgcrypt-devel - - - suspend-1.0_p20150810.patch.xz - - hardware/powermanagement/suspend/pspec.xml - - - suspend - - lzo - libx86 - pciutils - - - /etc/suspend.conf - /etc/suspend.key - /usr/sbin - /usr/share/doc - /usr/share/man - - - suse/configure-suspend-encryption.sh - - - - - 2016-06-09 - 1.0_p20120915 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.0_p20120915 - First release - Varol Maksutoğlu - waroi@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 - - - - - 2016-06-09 - 1.4.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-31 - 1.4.1 - First release - PisiLinux Community - 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://pkgs.fedoraproject.org/repo/pkgs/lm_sensors/lm_sensors-3.4.0.tar.bz2/c03675ae9d43d60322110c679416901a/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 - - - - - 2016-06-09 - 3.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-02 - 3.4.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.0_20130117 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-05 - 0.0_20130117 - First release - Osman Erkan - osman.erkan@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.1.1.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 - - /usr/lib32 - - - - - 2016-06-09 - 1.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-03 - 1.1.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-03-04 - 1.0.29 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - 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.1.0.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 - - - - - 2016-06-09 - 1.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-03 - 1.1.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-03-04 - 1.0.29 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - 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.1.1.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 - - - - - 2016-06-09 - 1.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-03 - 1.1.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2015-03-04 - 1.0.29 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - sshfs - http://fuse.sourceforge.net/sshfs.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - A filesystem client based on the SSH FTP - SSH FTP alanı dosyasistemi - sshfs allows mounting remote SSH accounts as a filesystem. - sshfs, SSH dosya aktarım protokülünü kullanarak bir dosyasistemi oluşturmanıza olanak verir. Böylece, uzak sistemdeki SSH FTP alanınızı diskinizin bir parçasıymış gibi kullanabilirsiniz. - https://github.com/libfuse/sshfs/releases/download/sshfs_2_5/sshfs-fuse-2.5.tar.gz - - fuse-devel - glib2-devel - - hardware/disk/sshfs/pspec.xml - - - sshfs - - fuse - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 2.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 2.5 - First release - Stefan Gronewold - groni@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 - - - - - 2016-06-09 - 3.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-08-09 - 3.2 - First release - Serdar Soytetir - kaptan@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.6.0 - - 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/ - - - - - 2016-06-09 - 0.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-31 - 0.6.0 - First release - Ali Algul - alialgul@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. - https://github.com/dosfstools/dosfstools/archive/v3.0.26.tar.gz - hardware/disk/dosfstools/pspec.xml - - - dosfstools - - /sbin - /usr/share/doc - /usr/share/man - - - - - 2016-06-10 - 3.0.26 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-04-03 - 3.0.26 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 1.0.0_rc16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-17 - 1.0.0_rc16 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - smartmontools - http://smartmontools.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - hardware.disk - Programs to control and monitor storage systems using the Self-Monitoring - Hard disk kontrol ve durumunu gösteren programlar - The smartmontools package contains two utility programs (smartctl and smartd) to control and monitor storage systems using the Self-Monitoring, Analysis and Reporting Technology System (SMART) built into most modern ATA and SCSI hard disks. - smartctl ve smartd adlı ATA ve SCSI diskleri kontrol ve durumlarını gösterir iki program. - mirrors://sourceforge/smartmontools/6.4/smartmontools-6.4.tar.gz - - libutil-linux-devel - libcap-ng-devel - - hardware/disk/smartmontools/pspec.xml - - - smartmontools - - libgcc - libcap-ng - - - /etc - /lib/systemd/system - /usr/sbin - /usr/share/doc - /usr/share/man - /usr/share/smartmontools - - - System.Service - - - smartmontools.sysconf - - - - - 2016-06-09 - 6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 6.4 - First release - Stefan Gronewold - groni@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 - - libutil-linux-devel - xfsprogs - - - /usr/include - /usr/share/man/man3 - - - - - 2016-06-09 - 3.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-04 - 3.2.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 4.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-20 - 4.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.19 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - - libutil-linux-devel - - hardware/disk/reiserfsprogs/pspec.xml - - - reiserfsprogs - - /sbin - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 3.6.24 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-13 - 3.6.24 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 9.43 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 9.43 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libisofs - http://libburnia-project.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - hardware.optical - A library for creating ISO disc images - ISO kalıbı oluşturmak için gerekli kitaplıklar - libisofs is a library that handles creating ISO disc image files. It is intended to work together with libburn to write these images to discs - libisofs, ISO kalıbını oluşturmak için gerekli kitaplıkları içeren pakettir. Bu paket ayrıca Libburn'u kullanarak, ISO kalıplarını CD, DVD veya benzeri disklere yazdırmanıza olanağı sağlar. - http://files.libburnia-project.org/releases/libisofs-1.4.2.tar.gz - - acl-devel - zlib-devel - - hardware/disk/libisofs/pspec.xml - - - libisofs - - acl - zlib - - - /usr/lib - /usr/share/doc - - - - libisofs-devel - Development files for libisofs - libisofs için geliştirme dosyaları - - libisofs - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/libisofs/Tutorial - /usr/share/doc/libisofs/checksums.txt - /usr/share/doc/libisofs/susp_aaip_2_0.txt - /usr/share/doc/libisofs/susp_aaip_isofs_names.txt - /usr/share/doc/libisofs/zisofs_format.txt - - - - - 2016-06-09 - 1.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 1.4.2 - First release - Stefan Gronewold(groni) - groni@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. - https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2016.2.22.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 - - - - - 2016-06-27 - 2016.2.22 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2015.3.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-30 - 2015.3.14 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-28 - 1.0.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - libutil-linux-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 - - - - - 2016-06-09 - 2.2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-22 - 2.2.12 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - fsarchiver - http://www.fsarchiver.org/Main_Page - - marcin bojara - marcin@pisilinux.org - - GPLv2 - app:console - hardware.disk - Sicherung und Wiederherstellung von Dateisystemen - Safe and flexible file-system backup/deployment tool. - Bezpieczne i elastyczne narzędzie do tworzenia kopii zapasowej systemu plików. - fsarchiver ist ein Konsolenprogramm zum Sichern und Wiederherstellen von Partitionen und Verzeichnissen. - FSArchiver is a system tool that allows you to save the contents of a file-system to a compressed archive file. - FSArchiver jest narzędziem systemowym, które pozwala na zapisanie zawartości systemu plików w skompresowanym pliku. - https://github.com/fdupoux/fsarchiver/releases/download/0.6.21/fsarchiver-0.6.21.tar.gz - - lzo-devel - xz-devel - zlib-devel - bzip2 - e2fsprogs-devel - libgcrypt-devel - attr-devel - libutil-linux-devel - - hardware/disk/fsarchiver/pspec.xml - - - fsarchiver - - lzo - xz - zlib - bzip2 - e2fsprogs - libgcrypt - libutil-linux - - - /usr/sbin - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 0.6.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 0.6.21 - First release - Stefan Gronewold - groni@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 - - - - - 2016-06-09 - 1.41 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-19 - 1.41 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 - 4.2 - First release - Varol Maksutoğlu - waroi@pisilinux.org - - - - - - exfat-utils - http://code.google.com/p/exfat - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - app:gui - hardware.disk - Utilities for exFAT file system - This project aims to provide a full-featured exFAT file system implementation for GNU/Linux and other Unix-like systems as a FUSE module and a set of utilities. - https://github.com/relan/exfat/releases/download/v1.2.3/exfat-utils-1.2.3.tar.gz - hardware/disk/exfat-utils/pspec.xml - - - exfat-utils - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/sbin - - - - - 2016-06-09 - 1.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 1.2.3 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - fuse-exfat - http://code.google.com/p/exfat/ - - PisiLinux Community - admin@pisilinux.org - - GPLv3 - app - hardware.disk - exFAT filesystem fuse module - exFAT dosya sistemi bağlamak için araçlar - exFAT filesystem fuse module - exFAT dosya sistemi bağlamak için araçlar - https://github.com/relan/exfat/releases/download/v1.2.3/fuse-exfat-1.2.3.tar.gz - - exfat-utils - fuse-devel - - hardware/disk/fuse-exfat/pspec.xml - - - fuse-exfat - - fuse - exfat-utils - - - /usr/bin - /usr/sbin - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 1.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 1.2.3 - First release - Stefan Gronewold - groni@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 - libgudev-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 - libgudev - 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 - - - - - 2016-06-09 - 2.1.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 2.1.6 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gkrellm - http://www.gkrellm.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - service - hardware.info - 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://gkrellm.srcbox.net/releases/gkrellm-2.3.5.tar.bz2 - - 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 - - - - - 2016-06-09 - 2.3.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-01 - 2.3.5 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - media-player-info - http://cgit.freedesktop.org/media-player-info - - PisiLinux Community - admins@pisilinux.org - - BSD - hardware.info - 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 - - - - - 2016-06-09 - 22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 22 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - dmidecode - http://www.nongnu.org/dmidecode/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.info - 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 - - - - - 2016-06-09 - 2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-22 - 2.12 - First release - Stefan Gronewold(groni) - groni@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 - python3-devel - - 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 - - - - - 2016-06-09 - 0.9.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 0.9.3 - Release bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-05-08 - 0.9.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 20140122 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-06 - 20140122 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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.1.0.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 - - - - - 2016-06-09 - 1.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 1.1.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.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 - - - - - 2016-06-09 - 2.4.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-31 - 2.4.1 - First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -77653,391 +68195,207 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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 - - - - - 2016-06-09 - 1.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-31 - 1.3.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - virt-wrapper + package-manager 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 + GPLv2 + app:gui + desktop.pisilinux + PiSi graphical user interface + PiSi kullanıcı grafik arayüzü + PiSi est une interface graphique permettant d'effectuer l'installation, la suppression et la mise à jour de paquet PiSi depuis un environnement graphique. + Package Manager is PiSi's easy-to-use graphical user interface. + PiSi paket yöneticisine ait paket kurma, kaldırma ve güncelleme gibi işlerin grafik ortamda yapılabilmesini sağlayan PiSi grafik arayüzü. + https://github.com/PisiLinuxNew/package-manager/archive/package-manager.4.1.2.tar.gz + + docutils + python-qt5-devel + python-sip + + desktop/pisilinux/package-manager/pspec.xml - virt-wrapper + package-manager + + pisi + python-qt5 + python-sip + pisilinux-desktop-services + - /usr/libexec + /usr/bin + /usr/share /usr/share/locale + /usr/share/applications + /usr/share/icons /usr/share/doc + + 2016-07-01 + 4.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + 2016-06-09 - 0.1.1 + 4.1.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-11-23 - 0.1.1 - First release - Osman Erkan - osman.erkan@pisilinux.org + 2016-05-28 + 4.1.1 + ported pyqt5 + Ayhan Yalçınsoy + ayhanyalcinsoy@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.1.0_BETA2/VirtualBox-5.1.0_BETA2.tar.bz2 - - LocalConfig.kmk - - - dev86 - cdrkit - acpica - mesa-devel - curl-devel - python-devel - pam-devel - device-mapper-devel - libcap-devel - 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 - qt5-x11extras-devel - libxcb-devel - qt5-base-devel - qt5-linguist - - - wrapper.patch - 002-dri-driver-path.patch - 003-ogl-include-path.patch - 008-root-window.patch - 004-xorg.patch - - hardware/virtualization/virtualbox/pspec.xml - - - virtualbox - - qt5-base - libxcb - mesa - libXt - gsoap - libvpx - libXmu - libsdl - libXext - libXcursor - libXinerama - virt-wrapper - libvncserver - curl - zlib - libX11 - libgcc - libpng - python - libxml2 - openssl - device-mapper - qt5-x11extras - module-virtualbox - - - /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 - - - - - 2016-06-17 - 5.1.0b - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-12 - 5.0.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-09 - 5.0.12 - First release - ali algul - alialgul@pisilinux.org - - - - - - libvirt - http://www.libvirt.org/ + service-manager + http://www.pisilinux.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 + GPLv2 + app:gui + desktop.pisilinux + System Service configuration GUI + Servis yönetim arayüzü + Le gestionnaire de Service est utilisé pour administrer les services lancés dans Pisi Linux. + This system service configuration software is developed for Pisi Linux. It provides managing system services. + Servis yöneticisi, Pisi Linux'da çalışan sunucu ve servislerin yönetilmesini sağlar + https://github.com/PisiLinuxNew/service-manager/archive/3.1.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 + pisilinux-desktop-services + docutils + python-qt5-devel - hardware/virtualization/libvirt/pspec.xml + desktop/pisilinux/service-manager/pspec.xml - libvirt + service-manager - dbus - yajl - audit - eudev - libnl - netcf - gnutls - parted - libcap - libxml2 - numactl - readline - libcap-ng - avahi-libs - cyrus-sasl - libpciaccess - device-mapper - libutil-linux + python-qt5 + pisilinux-desktop-services - /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 /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 + /usr/share/applications - + + 2016-06-03 + 3.1.0 + First release + Pisi Linux Admins + 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.18/at-spi2-atk-2.18.1.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 + + at-spi2-core-32bit + atk-32bit + dbus-32bit + glib2-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 + glib2-devel + at-spi2-core-devel + + + /usr/lib32/pkgconfig + /usr/lib/pkgconfig + /usr/include + + + + 2016-06-09 - 1.3.0 + 2.18.1 Release Bump Pisi Linux Community admin@pisilinux.org + + 2016-05-25 + 2.18.1 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + - 2015-12-31 - 1.3.0 + 2016-01-26 + 2.18.1 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -78046,206 +68404,103 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - docker - http://docker.io + desktop-file-utils + http://www.freedesktop.org/software/desktop-file-utils/ - Ertuğrul Erata - ertugrulerata@gmail.com + PisiLinux Community + admins@pisilinux.org - 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.10.3.tar.gz + GPLv2 + 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 - git - golang - btrfs-progs-devel - device-mapper-devel - sqlite-devel + glib2-devel - hardware/virtualization/docker/pspec.xml + desktop/misc/desktop-file-utils/pspec.xml - docker + desktop-file-utils - git - sqlite - device-mapper - btrfs-progs - bridge-utils - iproute2 - iptables + glib2 - /etc - /usr/bin/ - /usr/lib/docker - /usr/share/ - /lib/udev/rules.d + /usr/bin + /usr/share/doc + /usr/share/man/man1/ - System.Service - System.Package + System.PackageHandler - - cgroupfs-mount - cgroupfs-umount - docker.confd - - - 2016-06-28 - 1.10.3 + + 2016-06-09 + 0.21 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-25 - 1.10.3 - Release bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - 2016-05-25 - 1.10.3 - First release. - Ertuğrul Erata - ertugrulerata@gmail.com + 2013-09-07 + 0.21 + First release + Marcin Bojara + marcin@pisilinux.org - hdf5 - http://www.hdfgroup.org/HDF5/ + xdg-utils + http://portland.freedesktop.org/wiki/ PisiLinux Community admins@pisilinux.org - BSD - NCSA-HDF - library - science.misc - NCSA Hierarchical Data Format (HDF) Software Library and Utilities - NCSA hiyerarşik veri biçimi (Hierarchical Data Format - HDF) kütüphanesi ve araçları. - HDF5 est une librairie généraliste ainsi qu'un format de fichier pour stocker des informations scientifiques. - HDF5 is a general purpose library and file format for storing scientific data. - HDF5, bilimsel verileri saklamak için kullanılan bir dosya biçimi tanımını ve bu dosyaları kullanmak için gerekli kütüphane ve araçları sağlar. - HDF5 es una librería de uso general y un formato de archivos para almacenar datos científicos - http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.17.tar.bz2 + 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 - time - libgfortran - zlib-devel - net-tools + xmlto + docbook-xsl + util-linux + libxslt + lynx - science/misc/hdf5/pspec.xml + + enable-other-xdg.patch + xfce-detection.patch + drop-xmlto-stuff.patch + + desktop/misc/xdg-utils/pspec.xml - hdf5 - - zlib - libgcc - libgfortran - + xdg-utils /usr/bin - /usr/lib - /usr/share/doc/hdf5 - /usr/share/hdf5_examples - - - - hdf5-devel - Development files for hdf5 - hdf5 için geliştirme dosyaları - - hdf5 - - - /usr/include - - - - - 2016-06-10 - 1.8.17 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.8.16 - Version Bump - Alihan Öztürk - alihan@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 + /usr/share/man 2016-06-09 - 2.0.1 + 1.1.0_20140207 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-25 - 2.0.1 + 2014-02-16 + 1.1.0_20140207 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -78254,442 +68509,195 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - coin - http://www.coin3d.org/ + xdg-user-dirs + http://freedesktop.org/wiki/Software/xdg-user-dirs PisiLinux Community - admin@pisilinux.org + admins@pisilinux.org GPLv2 app:console - science.misc - Coin3D is a high-level 3D graphics toolkit. - 3D Üst düzey grafiksel araç takımı - Is a high-level 3D graphics toolkit, fully compatible with SGI Open Inventor 2.1. - coin,SGI Open Inventor 2.1 ile tam uyumlu grafiksel 3D araç takımı - https://bitbucket.org/Coin3D/coin/downloads/Coin-3.1.3.tar.gz + 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 - libXext-devel - mesa-devel - libSM-devel - libICE-devel - doxygen - libglade-devel + docbook-xsl + libxml2-devel + libxslt-devel - clang-name-lookup.diff - fix_gcc_4_8_1.patch - Coin-2.5.0-inttypes.patch - Coin-2.4.6-man3.diff + defaults.patch + tr.patch + xdg-user-dirs-0.15-libiconv.patch - science/misc/coin/pspec.xml + desktop/misc/xdg-user-dirs/pspec.xml - coin - - libXext - mesa - libSM - libICE - libglade - + xdg-user-dirs + /etc/X11 + /etc/xdg /usr/bin - /usr/lib + /usr/share/locale + /usr/share/doc /usr/share/man - /usr/share/Coin - - - - coin-devel - Development files for coin - coin için geliştirme dosyaları - - coin - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - coin-docs - Documents for Coin - coin belgeleri - - /usr/share/doc + + xdg-user-dirs.sh + 2016-06-09 - 3.1.3 + 0.15 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-06-14 - 3.1.3 + 2014-05-01 + 0.15 First release - Osman Erkan - osman.erkan@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org - wcslib - http://www.atnf.csiro.au/people/Mark.Calabretta/WCS/ + startup-notification + http://www.freedesktop.org/software/startup-notification/ PisiLinux Community admins@pisilinux.org - GPLv3 + LGPLv2.1 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 + 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 - gcc - flex - libgfortran - cfitsio-devel + libX11-devel + libxcb-devel + xcb-util-devel - science/misc/wcslib/pspec.xml + desktop/misc/startup-notification/pspec.xml - wcslib + startup-notification - cfitsio + libX11 + libxcb + xcb-util - /usr/bin /usr/lib /usr/share/doc - /usr/share/man/man1 - wcslib-devel - Development files for wcslib + startup-notification-devel + Development files for startup-notification + startup-notification için geliştirme dosyaları - wcslib + startup-notification /usr/include /usr/lib/pkgconfig + /usr/share/doc/*/*.txt 2016-06-09 - 5.12 + 0.12 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-11-18 - 5.12 + 2014-05-18 + 0.12 First release - Stefan Gronewold (groni) - groni@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org - cfitsio - http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html + shared-mime-info + http://freedesktop.org/wiki/Software/shared-mime-info PisiLinux Community admins@pisilinux.org - as-is - library + GPLv2 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 - - - - - 2016-06-09 - 3.370 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-18 - 3.370 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - muparser - http://muparser.beltoforion.de/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - science.misc - Mathematical expressions parser library - Matematiksel ifade ayrıştırma kitaplığı - muparser is a mathematical expressions parser library. It is based on transforming an expression into a bytecode and precalculating constant parts of it. - muparser, matematiksel ifadelerin ayrıştırılmasında kullanılan bir kitaplıktır. - https://github.com/beltoforion/muparser/archive/v2.2.5.tar.gz - science/misc/muparser/pspec.xml - - - muparser - - libgcc - - - /usr/lib - /usr/share/doc - - - - muparser-devel - Development files for muparser - muparser için geliştirme dosyaları - - muparser - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 2.2.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-08 - 2.2.5 - First release - Stefan Gronewold(groni) - groni@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://downloads.sourceforge.net/project/indi/libindi_1.2.0.tar.gz + 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 - libnova-devel - cfitsio-devel - gsl-devel - curl-devel - libjpeg-turbo-devel - libusb-devel - boost-devel - zlib-devel - pkgconfig - cmake + libxml2-devel + glib2-devel + intltool - science/misc/libindi/pspec.xml + + shared-mime-info-xz.patch + + desktop/misc/shared-mime-info/pspec.xml - libindi + shared-mime-info - libnova - cfitsio - gsl - curl - libjpeg-turbo - libusb - gsl - libgcc - zlib + libxml2 + glib2 + /etc/X11/xinit /usr/bin - /usr/lib - /lib/udev/rules.d - /usr/share/indi + /usr/share/applications + /usr/share/mime + /usr/share/pkgconfig + /usr/share/locale/ /usr/share/doc + /usr/share/man - - - libindi-devel - Development files for libindi - - libindi - - - /usr/include - /usr/lib/pkgconfig - + + System.PackageHandler + System.Package + + + update-mime-database.sh + defaults.list + mimeapps.list + mimetypefixes.xml + 2016-06-09 - 1.2.0 + 1.5 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-11-18 - 1.2.0 - First release - Stefan Gronewold (groni) - groni@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 - - - - - 2016-06-09 - 0.14.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 0.14.0 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 3.2.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-23 - 3.2.5 + 2015-11-05 + 1.5 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -78698,40 +68706,974 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - proj - http://trac.osgeo.org/proj/ + at-spi2-core + http://www.linuxfoundation.org/collaborate/workgroups/accessibility PisiLinux Community admins@pisilinux.org - MIT - library - app:console - science.gis - Cartographic Projections library - Kartografik görüntüleme kütüphanesi - Proj.4 cartographic projection software with updated NAD27 grids. - Güncellenmiş NAD27 gridlerini de içeren kartografik görüntüleme yazılımı. - http://download.osgeo.org/proj/proj-4.9.2.tar.gz - http://download.osgeo.org/proj/proj-datumgrid-1.5.zip - science/gis/proj/pspec.xml + 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.18/at-spi2-core-2.18.3.tar.xz + + libXtst-devel + libXi-devel + gettext-devel + dbus-devel + glib2-devel + intltool + + desktop/misc/at-spi2-core/pspec.xml - proj + at-spi2-core + + libXtst + libX11 + dbus + glib2 + - /usr/bin - /usr/share/proj + /etc /usr/lib - /usr/share/man /usr/share/doc + /usr/share/dbus-1 + /usr/share/gtk-doc + /usr/libexec + /usr/share/gir-1.0 + /usr/share/locale - proj-devel - Development files for proj - proj için geliştirme dosyaları + at-spi2-core-32bit + 32-bit shared libraries for at-spi2-core + emul32 + emul32 + + dbus-32bit + glib2-32bit + libXi-32bit + libX11-32bit + libXtst-32bit + - proj + dbus-32bit + glib2-32bit + libX11-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 + + + + + 2016-06-09 + 2.18.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 2.18.3 + Release Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-01-26 + 2.18.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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. + mirrors://sourceforge/mmm-mode/mmm-mode-0.5.4.tar.gz + + emacs + gtk2-devel + + 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 + + + + + 2016-06-09 + 0.5.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-02 + 0.5.4 + First release + Ilker Manap + ilkermanap@gmail.com + + + + + + 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 + gnutls-devel + imagemagick-devel + + editor/emacs/emacs /pspec.xml + + + emacs + + gpm + tiff + gtk2 + zlib + glib2 + libX11 + libpng + ncurses + freetype + 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 + + + site-start.el + pisi-spec.rnc + 80-nxml-mode.el + emacs.desktop + + + + + 2016-06-09 + 24.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 24.5 + First release + Ilker Manap + ilkermanap@gmail.com + + + + + + 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 + + + + + 2016-06-10 + 1.17.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.17.0 + First release + Ilker Manap + ilkermanap@gmail.com + + + + + + 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/share/doc + /usr/share/emacs + /etc/emacs/site-lisp + + + 80-pymacs.el + + + + + 2016-06-09 + 0.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-24 + 0.25 + First release + Ilker Manap + ilkermanap@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 6.2.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-05 + 6.2.1 + First release + Ilker Manap + ilkermanap@gmail.com + + + + + + emacs-color-theme + http://www.emacswiki.org/cgi-bin/wiki?ColorTheme + + 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 + + + emacs-color-theme + + emacs + + + /usr/share/doc + /etc/emacs/site-lisp + /usr/share/emacs/site-lisp/color-theme + + + 80-color-theme.el + + + + + 2016-06-09 + 6.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-24 + 6.6.0 + First release + Ilker Manap + ilkermanap@gmail.com + + + + + + libmspub + http://www.freedesktop.org/wiki/Software/libmspub + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + MPLv1.1 + app:gui + editor + Library parsing the Microsoft Publisher documents + Libmspub is library providing ability to interpret and import Microsoft Publisher content into various applications. You can find it being used in libreoffice. + http://dev-www.libreoffice.org/src/libmspub-0.1.2.tar.bz2 + + boost-devel + doxygen + help2man + icu4c-devel + librevenge-devel + zlib-devel + + editor/libmspub/pspec.xml + + + libmspub + + icu4c + librevenge + + + /usr/bin + /usr/share/doc + /usr/lib + + + + libmspub-devel + libmspub için geliştirme dosyaları + libmspub için geliştirme dosyaları + + icu4c-devel + librevenge-devel + libmspub + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-10 + 0.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-24 + 0.1.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + gpm + ctags + python-devel + acl-devel + gtk2-devel + libSM-devel + libXt-devel + pango-devel + libICE-devel + ruby-devel + ncurses-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 + + editor/vi/vim/pspec.xml + + + vim + app:console + + gpm + ctags + perl + acl + ncurses + + + /usr/bin/vi* + /usr/bin/rvi* + /usr/bin/ex + /usr/bin/xxd + /bin + /usr/share/vim + /usr/share/man + /usr/share/doc + /etc/vim + + + 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 + + acl + perl + glib2 + libX11 + ncurses + gtk2 + gpm + libSM + libXt + pango + libICE + vim + gdk-pixbuf + + + /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 + + + + + 2016-06-10 + 0.7.4.909 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-05 + 0.7.4.909 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + nano + http://www.nano-editor.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 + + + nano + + ncurses + file + + + /etc + /usr/share/locale + /usr/share/doc/nano + /usr/share/man + /usr/share/info + /usr/share/nano + /usr/bin + /bin + + + + + 2016-06-10 + 2.5.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-02 + 2.5.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + bluefish + http://bluefish.openoffice.nl/index.html + + Pisi Linux Admins + admin@pisilinux.org + + 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 + + enchant + glib2-devel + gtk2-devel + libxml2-devel + intltool + gettext-devel + + editor/bluefish/pspec.xml + + + Bluefish + + atk + desktop-file-utils + cairo + gdk-pixbuf + gtk3 + pango + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + + + + + 2016-06-09 + 2.2.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-19 + 2.2.7 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + medit + http://mooedit.sourceforge.net/ + + Stefan Gronewold(groni) + groni@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 + + 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 + + + desktop-tr.patch + fix_help_dir.patch + + editor/medit/pspec.xml + + + medit + + gtk2 + atk + glib2 + libX11 + libgcc + python + libxml2 + cairo + pango + libSM + libICE + gdk-pixbuf + + + /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 + + + + + 2016-06-15 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 1.2.0 + First release + 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/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + cln-devel + Development files for cln + cln için geliştirme dosyaları + + cln + gmp-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 1.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-29 + 1.3.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + netcdf + http://my.unidata.ucar.edu/content/software/netcdf/index.html + + PisiLinux Community + admins@pisilinux.org + + UCAR-Unidata + library + science.mathematics + Librairie scientifique et interface pour l'accès aux données orientées tableaux. + Scientific library and interface for array oriented data access + Dizi (array) odaklı veri erişimi için arayüz ve bilimsel kütüphane + netcdf (network common data form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. + ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.4.0.tar.gz + + hdf5-devel + curl-devel + libgfortran + + science/mathematics/netcdf/pspec.xml + + + netcdf + + hdf5 + curl + libgfortran + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/info + + + + netcdf-devel + Development files for netcdf + netcdf için geliştirme dosyaları + + netcdf + hdf5-devel + curl-devel /usr/include @@ -78742,20 +69684,740 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 4.9.2 + 4.4.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-02-24 - 4.9.2 + 2016-02-25 + 4.4.0 First release Ertuğrul Erata ertugrulerata@gmail.com + + + 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://ftp.heanet.ie/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 + + + + + 2016-06-09 + 2.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 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 + + + + + 2016-06-09 + 3.5.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-23 + 3.5.0 + First release + PisiLinux Community + admins@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 + + + + + 2016-06-09 + 3.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 3.3.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libqalculate + http://qalculate.sourceforge.net/ + + 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 + + cln-devel + gmp-devel + libxml2-devel + glib2-devel + gettext-devel + intltool + + + libqalculate-0.9.6-check-fix.patch + libqalculate-0.9.6-gcc4.3.patch + + science/mathematics/libqalculate/pspec.xml + + + libqalculate + + cln + libxml2 + glib2 + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/qalculate + + + + libqalculate-devel + Development files for libqalculate + libqalculate için geliştirme dosyaları + + libqalculate + cln-devel + libxml2-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 0.9.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 0.9.7 + First release + PisiLinux Community + 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 + + + + + 2016-06-09 + 20071029 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 20071029 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 1.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-30 + 1.16 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 0.76 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.76 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + SuiteSparse + http://www.cise.ufl.edu/research/sparse + + 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 + + + SuiteSparse + + lapack + blas + libgcc + + + /usr/lib + /usr/share/doc + + + + SuiteSparse-devel + Development files for SuiteSparse + SuiteSparse için geliştirme dosyaları + + SuiteSparse + + + /usr/include + + + + + 2016-06-09 + 4.4.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-11 + 4.4.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 1.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 1.3.0 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 2.4.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-09-15 + 2.4.11 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + libgeotiff @@ -79126,6 +70788,186 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + postgis + http://postgis.refractions.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.gis + Adds support for geographic objects to PostgreSQL + Coğrafi nesneler için PostgreSQL eklentisi + PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. + postgis, PostgreSQL nesne yönelimli veritabanı için coğrafi nesneler ekleme desteği sağlayan bir pakettir. Gerçekte postgis, coğrafi bilgi sistemleri için kullanılan spatial veritabanı bağlayıcısında olduğu gibi (daha çok ESRI'nin SDE'sine veya Oracle'in Spatial eklentisine benzer) PostgreSQL sunucusunda da benzer işleri yapabilmenizi sağlar. + http://download.osgeo.org/postgis/source/postgis-2.2.1.tar.gz + + proj-devel + gdal-devel + geos-devel + json-c-devel + postgresql-lib + libxslt-devel + libxml2-devel + + science/gis/postgis/pspec.xml + + + postgis + + proj + gdal + geos + zlib + libxml2 + libpcre + json-c + postgresql-lib + postgresql-server + + + /etc + /usr/bin + /usr/include + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share + + + + + 2016-06-09 + 2.2.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-25 + 2.2.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + proj + http://trac.osgeo.org/proj/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + science.gis + Cartographic Projections library + Kartografik görüntüleme kütüphanesi + Proj.4 cartographic projection software with updated NAD27 grids. + Güncellenmiş NAD27 gridlerini de içeren kartografik görüntüleme yazılımı. + http://download.osgeo.org/proj/proj-4.9.2.tar.gz + http://download.osgeo.org/proj/proj-datumgrid-1.5.zip + science/gis/proj/pspec.xml + + + proj + + /usr/bin + /usr/share/proj + /usr/lib + /usr/share/man + /usr/share/doc + + + + proj-devel + Development files for proj + proj için geliştirme dosyaları + + proj + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2016-06-09 + 4.9.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-24 + 4.9.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libfreexl + https://www.gaia-gis.it/fossil/freexl/index + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.gis + Library to extract valid data from within an Excel (.xls) spreadsheet + FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet. + http://www.gaia-gis.it/gaia-sins/freexl-1.0.2.tar.gz + science/gis/libfreexl/pspec.xml + + + libfreexl + + /usr/lib + /usr/share/doc/* + + + + libfreexl-devel + Development files for libfreexl + + libfreexl + + + /usr/include/* + /usr/lib/pkgconfig/freexl.pc + /usr/lib/libfreexl.so + + + + + 2016-06-09 + 1.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-25 + 1.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + libspatialite @@ -79203,200 +71045,43 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libfreexl - https://www.gaia-gis.it/fossil/freexl/index - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.gis - Library to extract valid data from within an Excel (.xls) spreadsheet - FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet. - http://www.gaia-gis.it/gaia-sins/freexl-1.0.2.tar.gz - science/gis/libfreexl/pspec.xml - - - libfreexl - - /usr/lib - /usr/share/doc/* - - - - libfreexl-devel - Development files for libfreexl - - libfreexl - - - /usr/include/* - /usr/lib/pkgconfig/freexl.pc - /usr/lib/libfreexl.so - - - - - 2016-06-09 - 1.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-25 - 1.0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - postgis - http://postgis.refractions.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.gis - Adds support for geographic objects to PostgreSQL - Coğrafi nesneler için PostgreSQL eklentisi - PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. - postgis, PostgreSQL nesne yönelimli veritabanı için coğrafi nesneler ekleme desteği sağlayan bir pakettir. Gerçekte postgis, coğrafi bilgi sistemleri için kullanılan spatial veritabanı bağlayıcısında olduğu gibi (daha çok ESRI'nin SDE'sine veya Oracle'in Spatial eklentisine benzer) PostgreSQL sunucusunda da benzer işleri yapabilmenizi sağlar. - http://download.osgeo.org/postgis/source/postgis-2.2.1.tar.gz - - proj-devel - gdal-devel - geos-devel - json-c-devel - postgresql-lib - libxslt-devel - libxml2-devel - - science/gis/postgis/pspec.xml - - - postgis - - proj - gdal - geos - zlib - libxml2 - libpcre - json-c - postgresql-lib - postgresql-server - - - /etc - /usr/bin - /usr/include - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share - - - - - 2016-06-09 - 2.2.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-25 - 2.2.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - opencv - http://opencv.willowgarage.com/wiki + ilmbase + http://www.openexr.com 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 + 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 - opencv + ilmbase - 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 + /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 + ilmbase-devel + Development files for ilmbase + ilmbase için geliştirme dosyaları - opencv + ilmbase /usr/include @@ -79406,888 +71091,14 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 2.4.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-09-15 - 2.4.11 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - - - 2016-06-09 - 1.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 1.3.0 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 20071029 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 20071029 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - netcdf - http://my.unidata.ucar.edu/content/software/netcdf/index.html - - PisiLinux Community - admins@pisilinux.org - - UCAR-Unidata - library - science.mathematics - Librairie scientifique et interface pour l'accès aux données orientées tableaux. - Scientific library and interface for array oriented data access - Dizi (array) odaklı veri erişimi için arayüz ve bilimsel kütüphane - netcdf (network common data form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. - ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.4.0.tar.gz - - hdf5-devel - curl-devel - libgfortran - - science/mathematics/netcdf/pspec.xml - - - netcdf - - hdf5 - curl - libgfortran - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/info - - - - netcdf-devel - Development files for netcdf - netcdf için geliştirme dosyaları - - netcdf - hdf5-devel - curl-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2016-06-09 - 4.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-25 - 4.4.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - SuiteSparse - http://www.cise.ufl.edu/research/sparse - - 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 - - - SuiteSparse - - lapack - blas - libgcc - - - /usr/lib - /usr/share/doc - - - - SuiteSparse-devel - Development files for SuiteSparse - SuiteSparse için geliştirme dosyaları - - SuiteSparse - - - /usr/include - - - - - 2016-06-09 - 4.4.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-11 - 4.4.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - - - 2016-06-09 - 1.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-30 - 1.16 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libqalculate - http://qalculate.sourceforge.net/ - - 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 - - cln-devel - gmp-devel - libxml2-devel - glib2-devel - gettext-devel - intltool - - - libqalculate-0.9.6-check-fix.patch - libqalculate-0.9.6-gcc4.3.patch - - science/mathematics/libqalculate/pspec.xml - - - libqalculate - - cln - libxml2 - glib2 - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/locale - /usr/share/qalculate - - - - libqalculate-devel - Development files for libqalculate - libqalculate için geliştirme dosyaları - - libqalculate - cln-devel - libxml2-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 0.9.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 0.9.7 - First release - PisiLinux Community - 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 - - - - - 2016-06-09 - 0.76 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.76 - First release - Serdar Soytetir - kaptan@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://ftp.heanet.ie/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 - - - - - 2016-06-09 - 2.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 2.6 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 3.3.4 + 2.0.1 Release Bump Pisi Linux Community admin@pisilinux.org 2014-05-25 - 3.3.4 - First release - Alihan Öztürk - alihan@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/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - cln-devel - Development files for cln - cln için geliştirme dosyaları - - cln - gmp-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-29 - 1.3.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 3.5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-23 - 3.5.0 - First release - PisiLinux Community - admins@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 - - 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 - - - - - 2016-06-09 - 0.23.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 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. - https://www.mercurial-scm.org/release/mercurial-3.8.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 - - - - - 2016-06-09 - 3.8.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-04 - 3.3.3 + 2.0.1 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -80296,298 +71107,8534 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - git - http://git-scm.com/ + 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 + + + + + 2016-06-09 + 3.2.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-23 + 3.2.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + muparser + http://muparser.beltoforion.de/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + science.misc + Mathematical expressions parser library + Matematiksel ifade ayrıştırma kitaplığı + muparser is a mathematical expressions parser library. It is based on transforming an expression into a bytecode and precalculating constant parts of it. + muparser, matematiksel ifadelerin ayrıştırılmasında kullanılan bir kitaplıktır. + https://github.com/beltoforion/muparser/archive/v2.2.5.tar.gz + science/misc/muparser/pspec.xml + + + muparser + + libgcc + + + /usr/lib + /usr/share/doc + + + + muparser-devel + Development files for muparser + muparser için geliştirme dosyaları + + muparser + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 2.2.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-08 + 2.2.5 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + hdf5 + http://www.hdfgroup.org/HDF5/ + + PisiLinux Community + admins@pisilinux.org + + BSD + NCSA-HDF + library + science.misc + NCSA Hierarchical Data Format (HDF) Software Library and Utilities + NCSA hiyerarşik veri biçimi (Hierarchical Data Format - HDF) kütüphanesi ve araçları. + HDF5 est une librairie généraliste ainsi qu'un format de fichier pour stocker des informations scientifiques. + HDF5 is a general purpose library and file format for storing scientific data. + HDF5, bilimsel verileri saklamak için kullanılan bir dosya biçimi tanımını ve bu dosyaları kullanmak için gerekli kütüphane ve araçları sağlar. + HDF5 es una librería de uso general y un formato de archivos para almacenar datos científicos + http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.17.tar.bz2 + + time + libgfortran + zlib-devel + net-tools + + science/misc/hdf5/pspec.xml + + + hdf5 + + zlib + libgcc + libgfortran + + + /usr/bin + /usr/lib + /usr/share/doc/hdf5 + /usr/share/hdf5_examples + + + + hdf5-devel + Development files for hdf5 + hdf5 için geliştirme dosyaları + + hdf5 + + + /usr/include + + + + + 2016-06-10 + 1.8.17 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.8.16 + Version Bump + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 3.370 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-18 + 3.370 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-09 + 0.14.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 0.14.0 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 5.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-18 + 5.12 + First release + Stefan Gronewold (groni) + groni@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://downloads.sourceforge.net/project/indi/libindi_1.2.0.tar.gz + + libnova-devel + cfitsio-devel + gsl-devel + curl-devel + libjpeg-turbo-devel + libusb-devel + boost-devel + zlib-devel + pkgconfig + cmake + + science/misc/libindi/pspec.xml + + + libindi + + libnova + cfitsio + gsl + curl + libjpeg-turbo + libusb + gsl + libgcc + zlib + + + /usr/bin + /usr/lib + /lib/udev/rules.d + /usr/share/indi + /usr/share/doc + + + + libindi-devel + Development files for libindi + + libindi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-18 + 1.2.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + coin + http://www.coin3d.org/ + + PisiLinux Community + admin@pisilinux.org + + GPLv2 + app:console + science.misc + Coin3D is a high-level 3D graphics toolkit. + 3D Üst düzey grafiksel araç takımı + Is a high-level 3D graphics toolkit, fully compatible with SGI Open Inventor 2.1. + coin,SGI Open Inventor 2.1 ile tam uyumlu grafiksel 3D araç takımı + https://bitbucket.org/Coin3D/coin/downloads/Coin-3.1.3.tar.gz + + libXext-devel + mesa-devel + libSM-devel + libICE-devel + doxygen + libglade-devel + + + clang-name-lookup.diff + fix_gcc_4_8_1.patch + Coin-2.5.0-inttypes.patch + Coin-2.4.6-man3.diff + + science/misc/coin/pspec.xml + + + coin + + libXext + mesa + libSM + libICE + libglade + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/Coin + + + + coin-devel + Development files for coin + coin için geliştirme dosyaları + + coin + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + coin-docs + Documents for Coin + coin belgeleri + + /usr/share/doc + + + + + 2016-06-09 + 3.1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 3.1.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + mesa + http://www.mesa3d.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + x11.library + Mesa graphics libraries and utilities + Mesa grafik kitaplıkları ve yardımcı uygulamalar + Mesa biblioteki graficzne i narzędzia + Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. + Mesa, OpenGL belirtiminin (etkileşimli 3B grafiklerin gerçeklenmesi için bir sistem) açık kaynaklı bir uyarlamasıdır. + Mesa jest open-source'ową implementacją specyfikacji OpenGL do renderowania trójwymiarowej grafiki. + https://mesa.freedesktop.org/archive/11.2.1/mesa-11.2.1.tar.xz + + xorg-proto + openssl-devel + expat-devel + libdrm-devel + libXext-devel + wayland-devel + wayland-server + wayland-client + libvdpau-devel + libXfixes-devel + libtalloc-devel + libXdamage-devel + libomxil-bellagio-devel + libXxf86vm-devel + libXvMC-devel + libXv-devel + eudev-devel + python-mako + llvm + llvm-libs + llvm-clang-devel + libxshmfence-devel + + x11/library/mesa/pspec.xml + + + mesa + + elfutils + libdrm-amd + alternatives + libX11 + libgcc + libxcb + expat + libdrm + libXext + libXfixes + libXdamage + libXxf86vm + libXv + libXvMC + libdrm-intel + libdrm-radeon + libdrm-nouveau + wayland-client + wayland-server + libomxil-bellagio + libxshmfence + llvm + llvm-clang + llvm-libs + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + + + System.Package + + + drirc + + + + mesa-devel + Development files for mesa + mesa için geliştirme dosyaları + + eudev-devel + libX11-devel + libxcb-devel + libdrm-devel + libXext-devel + wayland-devel + libXfixes-devel + libXdamage-devel + libXxf86vm-devel + libxshmfence-devel + mesa + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + mesa-32bit + 32-bit shared libraries for mesa + mesa için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + elfutils-32bit + expat-32bit + libXt-devel + libXv-32bit + libX11-32bit + libcap-32bit + libdrm-32bit + libXext-32bit + libXvMC-32bit + eudev-32bit + openssl-32bit + wayland-32bit + libvdpau-32bit + libXfixes-32bit + libXdamage-32bit + libXxf86vm-32bit + libdrm-intel-32bit + libdrm-radeon-32bit + libdrm-amd-32bit + libdrm-nouveau-32bit + libxshmfence-32bit + llvm-32bit + + + elfutils-32bit + openssl-32bit + alternatives + libgcc + libxcb-32bit + expat-32bit + libX11-32bit + libdrm-32bit + libxcb-32bit + libXext-32bit + libXfixes-32bit + libXdamage-32bit + libXxf86vm-32bit + libXv-32bit + libXvMC-32bit + libdrm-intel-32bit + libxshmfence-32bit + libdrm-radeon-32bit + libdrm-amd-32bit + libdrm-nouveau-32bit + wayland-32bit + mesa + llvm-32bit + + + /usr/lib32 + + + System.Package + + + + + 2016-04-27 + 11.2.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-28 + 11.2.0 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + libX11 + libxcb-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.6.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 1.6.3 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-04-30 + 1.1.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.4 + 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.34.0.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 + + pixman + + + /usr/lib32 + + + + + 2016-05-02 + 0.34.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2014-08-31 + 0.32.6 + 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 + + + libXfixes + libX11-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 5.0.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 5.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.13.0/glew-1.13.0.tgz + + mesa-glu-devel + + 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 + libX11-32bit + glew + + + /usr/lib32 + + + + + 2016-04-27 + 1.13.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-15 + 1.12.0 + First release + Osman Erkan + osman.erkan@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 + + libX11-32bit + libXext-32bit + + + libXScrnSaver + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.2.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.2.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + 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 + https://www.freedesktop.org/software/libevdev/libevdev-1.4.6.tar.xz + x11/library/libevdev/pspec.xml + + + libevdev + + /usr/bin + /usr/lib + /usr/include + /usr/share + /usr/share/doc + + + + + 2016-05-02 + 1.4.6 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-01-25 + 1.3.2 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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.9.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 + + + + + 2016-04-27 + 1.0.9 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-16 + 1.0.8 + First release + Marcin Bojara + marcin@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 + + libX11-32bit + libXext-32bit + libXrender-32bit + + + libXrandr + libX11-32bit + libXext-32bit + libXrender-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.5.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.5.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + /usr/lib + /usr/share/doc + + + + libdmx-devel + Development files for libdmx + libdmx için geliştirme dosyaları + + libdmx + libXext-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man + + + + + 2016-04-30 + 1.1.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXcursor + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + 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 + + util-macros + libX11-devel + xorg-proto + libXfixes-devel + libXrender-devel + + x11/library/libXcursor/pspec.xml + + + libXcursor + + libX11 + libXfixes + libXrender + + + /usr/lib + /usr/share/doc + + + + libXcursor-devel + Development files for libXcursor + libXcursor için geliştirme dosyaları + + libXcursor + libXfixes-devel + libX11-devel + libXrender-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXcursor-32bit + 32-bit shared libraries for libXcursor + libXcursor için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + libXfixes-32bit + libXrender-32bit + + + libXcursor + libX11-32bit + libXfixes-32bit + libXrender-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.1.14 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.14 + First release + Marcin Bojara + marcin@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 + + libX11-32bit + + + libXrender + libX11-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 0.9.9 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 0.9.9 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.6.1.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 + + + libxkbcommon + libxcb-32bit + + + /usr/lib32 + + + + + 2016-04-27 + 0.6.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-03-04 + 0.5.0 + First release + Stefan Gronewold(groni) + groni@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 + + libpciaccess + + + /usr/lib32 + + + + + 2016-04-30 + 0.13.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-05-05 + 0.13.4 + First release + Marcin Bojara + marcin@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 + + + mesa-glu + mesa-32bit + libgcc + + + /usr/lib32 + + + + + 2016-04-30 + 9.0.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-01-22 + 9.0.0 + First release + Ergün Salman + Poyraz76@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 + + + libXext + libX11-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.3.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-08-31 + 1.3.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + 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 + + + libXpm + libXext-32bit + libXt-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 3.5.11 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 3.5.11 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libxkbfile + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie xkbfile de X.Org + X.Org xkbfile library + X.Org xkbfile kitaplığı + X.Org xkbfile Bibliothek + Libxkbfile provides an interface to read and manipulate description files for XKB, the X11 keyboard configuration extension. + mirrors://xorg/individual/lib/libxkbfile-1.0.9.tar.bz2 + + util-macros + libX11-devel + xorg-proto + + x11/library/libxkbfile/pspec.xml + + + libxkbfile + + libX11 + + + /usr/lib + /usr/share/doc + + + + libxkbfile-devel + Development files for libxkbfile + libxkbfile için geliştirme dosyaları + + libxkbfile + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2016-04-30 + 1.0.9 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.0.9 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + libxcb-32bit + + + libxcb-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 0.3.9 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-09-01 + 0.3.9 + 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 + libX11-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 + + libX11-32bit + libXext-32bit + + + libXv + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.0.10 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.0.10 + 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.4.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 + + + + + 2016-04-27 + 1.1.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-16 + 1.1.3 + First release + Marcin Bojara + marcin@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 + + + + + 2016-04-30 + 1.1.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.1.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + /usr/lib32 + + + + + 2016-04-30 + 1.0.8 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-06-01 + 1.0.8 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + wayland + http://wayland.freedesktop.org/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv2 + library + x11.library + Wayland Compositor Infrastructure + Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol. + https://wayland.freedesktop.org/releases/wayland-1.10.0.tar.xz + + libffi-devel + expat-devel + libxml2-devel + + x11/library/wayland/pspec.xml + + + wayland + + libxml2 + expat + + + /usr/bin + /usr/share/doc/ + /usr/share/aclocal + /usr/share/wayland + /usr/share/man + + + + wayland-client + Wayland client library + + libffi + wayland + + + /usr/lib/libwayland-client* + + + + wayland-cursor + Wayland cursor library + + wayland + wayland-client + + + /usr/lib/libwayland-cursor* + + + + wayland-server + Wayland server library + + libffi + wayland + + + /usr/lib/libwayland-server* + + + + wayland-devel + Development files for wayland + + expat-devel + wayland + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/pkgconfig + + + + wayland-32bit + 32-bit shared libraries for wayland + emul32 + emul32 + + libffi-32bit + expat-32bit + libxml2-32bit + + + wayland + expat-32bit + libffi-32bit + libxml2-32bit + + + /usr/lib32 + + + + + 2016-05-01 + 1.10.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-11-05 + 1.9.0 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + libXaw + libXext-32bit + libXmu-32bit + libXpm-32bit + libXt-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.0.13 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.0.13 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libXtst + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xtst de X.Org + X.Org Xtst library + X.Org Xtst kitaplığı + X.Org Xtst Bibliothek + libXtst provides an X Window System client interface to the Record extension to the X protocol. The Record extension allows X clients to synthesise input events, which is useful for automated testing. + mirrors://xorg/individual/lib/libXtst-1.2.2.tar.bz2 + + libXext-devel + libXi-devel + util-macros + + x11/library/libXtst/pspec.xml + + + libXtst + + libXext + libX11 + + + /usr/lib + /usr/share/X11 + /usr/share/doc + + + + libXtst-32bit + 32-bit shared libraries for libXtst + libXtst için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libXi-32bit + libX11-32bit + + + libX11-32bit + libXext-32bit + libXtst + + + /usr/lib32 + + + + libXtst-devel + Development files for libXtst + libXtst için geliştirme dosyaları + + libXi-devel + libXext-devel + libXtst + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + /usr/share/doc/*/*.xml + /usr/share/man + + + + + 2016-04-30 + 1.2.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.2.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + 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 + + + xcb-util-32bit + libxcb-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 0.4.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-12-13 + 0.4.0 + First release + Kamil Atlı + suvari@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 + + + libxcb + libXau-32bit + libXdmcp-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.11.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-08 + 1.11.1 + First release + Alihan Öztürk + alihan@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 + + libICE + + + /usr/lib32 + + + + + 2016-04-30 + 1.0.9 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-08-31 + 1.0.9 + First release + Marcin Bojara + marcin@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. + https://www.freedesktop.org/software/vaapi/releases/libva/libva-1.7.0.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 + + + libva + libdrm-32bit + wayland-32bit + libXext-32bit + libXfixes-32bit + libX11-32bit + mesa-32bit + + + /usr/lib32 + + + + + 2016-04-27 + 1.7.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-05-10 + 1.5.1 + First release + Burak Ertürk + burakerturk@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 + + libX11-32bit + libSM-32bit + + + libXt + libX11-32bit + libSM-32bit + libICE-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.1.5 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.1.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + ghostscript-devel + + x11/library/libexplain/pspec.xml + + + libexplain + + acl + libcap + ghostscript + + + /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ı + + acl-devel + libcap-devel + libexplain + + + /usr/lib/pkgconfig + /usr/include + + + + + 2016-04-30 + 1.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-01-09 + 1.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libdrm + http://dri.freedesktop.org/libdrm/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Userspace interface to kernel DRM services + Çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz + libdrm is a library providing the userspace interface to kernel DRM services. + libdrm, çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz sağlayan bir kitaplıktır. + http://dri.freedesktop.org/libdrm/libdrm-2.4.67.tar.bz2 + + libpciaccess-devel + util-macros + + x11/library/libdrm/pspec.xml + + + libdrm + + libpciaccess + + + /etc + /usr/lib/libdrm.* + /lib/udev/rules.d + /usr/share/doc + /usr/share/man + + + 91-drm-modeset.rules + + + + libdrm-intel + Userspace interface to kernel DRM services for intel + Çekirdekteki intel DRM servisleri için kullanıcı düzeyi arayüz + + libdrm + libpciaccess + + + /usr/lib/libdrm_intel.* + + + + libdrm-nouveau + Userspace interface to kernel DRM services for nouveau + Çekirdekteki nouveau DRM servisleri için kullanıcı düzeyi arayüz + + libdrm + + + /usr/lib/libdrm_nouveau.* + + + + libdrm-radeon + Userspace interface to kernel DRM services for radeon + Çekirdekteki radeon DRM servisleri için kullanıcı düzeyi arayüz + + libdrm + + + /usr/lib/libdrm_radeon.* + + + + libdrm-amd + Userspace interface to kernel DRM services for amdgpu + + libdrm + + + /usr/lib/libdrm_amdgpu.* + + + + libkms + Userspace library for kernel mode setting + Çekirdekteki ekran modu değiştirme servisleri için kullanıcı düzeyi arayüz + + libdrm + + + /usr/lib/libkms.* + + + + libdrm-devel + Development files for libdrm + libdrm için geliştirme dosyaları + + libdrm + libdrm-intel + libdrm-nouveau + libdrm-radeon + libdrm-amd + libkms + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libdrm-32bit + 32-bit shared libraries for libdrm + libdrm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libpciaccess-32bit + + + libdrm + libpciaccess-32bit + + + /usr/lib32/libdrm.* + + + + libdrm-intel-32bit + 32-bit shared libraries for libdrm-intel + libdrm-intel için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libdrm-intel + libdrm-32bit + libpciaccess-32bit + + + /usr/lib32/libdrm_intel.* + + + + libdrm-nouveau-32bit + 32-bit shared libraries for libdrm-nouveau + libdrm-nouveau için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libdrm-nouveau + libdrm-32bit + + + /usr/lib32/libdrm_nouveau.* + + + + libdrm-radeon-32bit + 32-bit shared libraries for libdrm-radeon + libdrm-radeon için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libdrm-radeon + libdrm-32bit + + + /usr/lib32/libdrm_radeon.* + + + + libdrm-amd-32bit + 32-bit shared libraries for libdrm-amdgpu + emul32 + emul32 + + libdrm-amd + libdrm-32bit + + + /usr/lib32/libdrm_amdgpu.* + + + + libkms-32bit + 32-bit shared libraries for libkms + libkms için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libkms + libdrm-32bit + + + /usr/lib32/libkms.* + + + + + 2016-04-30 + 2.4.67 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-27 + 2.4.67 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + libXmu + libXt-32bit + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.1.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + Xaw3d + http://freshmeat.net/projects/xaw3d/ + + PisiLinux Community + admins@pisilinux.org + + X11 + library + x11.library + Replacement of the Xaw widget set that comes with X + XPM imajlarına 3D görüntüsü ve desteği ekleyen bir kütüphanedir + Xaw3d est globalement le remplaçant de la boîte à outils Athena. Il ajoute une apparence 3D ainsi que le support des images XMP. + Xaw3d is a general-purpose replacement for the Athena toolkit that adds a 3D appearance and support for XPM images. + Xaw3d, Athena araçlarının yerini alması amaçlanarak hazırlanmıştır. Ek olarak 3B görünüş sağlar ve XPM resimlerini destekler. + http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-1.6.2.tar.gz + + util-macros + libXt-devel + libXmu-devel + libXpm-devel + + + Xaw3d-1.6.1-3Dlabel.patch + Xaw3d-1.6.1-fontset.patch + Xaw3d-1.6.1-hsbar.patch + + x11/library/Xaw3d/pspec.xml + + + Xaw3d + + libXt + libX11 + libXmu + libXpm + libXext + + + /usr/lib + /usr/share/doc + + + + Xaw3d-devel + Development files for Xaw3d + Xaw3d için geliştirme dosyaları + + Xaw3d + libXt-devel + libX11-devel + libXmu-devel + libXext-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-04-30 + 1.6.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-21 + 1.6.2 + First release + Marcin Bojara + marcin@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 + + + xcb-util + libxcb-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 0.4.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-12-13 + 0.4.0 + First release + Kamil Atlı + suvari@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 + + + libXinerama + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.1.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.3 + First release + Marcin Bojara + marcin@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 + + + libXcomposite + libX11-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 0.4.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 0.4.4 + 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 + + + libXft + freetype-32bit + fontconfig-32bit + libXrender-32bit + zlib-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 2.3.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-08-31 + 2.3.2 + First release + Marcin Bojara + marcin@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.3.1.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 + + libX11-32bit + mesa-32bit + + + /lib32 + /usr/lib32 + + + + + 2016-04-30 + 1.3.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-08 + 1.3.1 + First release + Stefan Gronewold(groni) + groni@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 + + + /usr/lib32 + + + + + 2016-04-30 + 1.0.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-11-13 + 1.0.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libXres + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xres de X.Org + X.Org Xres library + X.Org Xres kitaplığı + X.Org Xres Bibliothek + X-Resource is an extension that allows a client to query the X server about its usage of various resources. + mirrors://xorg/individual/lib/libXres-1.0.7.tar.bz2 + + libX11-devel + libXext-devel + util-macros + + x11/library/libXres/pspec.xml + + + libXres + + libX11 + libXext + + + /usr/lib + /usr/share/doc + + + + libXres-devel + Development files for libXres + libXres için geliştirme dosyaları + + libXres + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/share/man + + + + + 2016-04-30 + 1.0.7 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.0.7 + First release + Marcin Bojara + marcin@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 + + + xcb-util-keysyms + libxcb-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 0.4.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-12-13 + 0.4.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libXfont + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xfont de X.Org + X.Org Xfont library + X.Org Xfont kitaplığı + X.Org Xfont Bibliothek + libXfont is the Xorg library that allows using various types of fonts. + mirrors://xorg/individual/lib/libXfont-1.5.1.tar.bz2 + + libfontenc-devel + util-macros + freetype-devel + xorg-proto + xtrans + zlib-devel + freetype-devel + + x11/library/libXfont/pspec.xml + + + libXfont + + libfontenc + zlib + freetype + + + /usr/lib + /usr/share/doc + + + + libXfont-devel + Development files for libXfont + libXfont için geliştirme dosyaları + + libXfont + libfontenc-devel + freetype-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2016-04-30 + 1.5.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.5.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + libICE-32bit + libutil-linux-32bit + + + libICE-32bit + libutil-linux-32bit + libSM + + + /usr/lib32 + + + + + 2016-04-30 + 1.2.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.2.2 + First release + Marcin Bojara + marcin@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 + + + /usr/lib + /usr/share/doc + + + + libXdmcp-devel + Development files for libXdmcp + libXdmcp için geliştirme dosyaları + + xorg-proto + libXdmcp + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/*/*.xml + + + + libXdmcp-32bit + 32-bit shared libraries for libXdmcp + libXdmcp için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXdmcp + + + /usr/lib32 + + + + + 2016-04-30 + 1.1.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-06-06 + 1.1.2 + First release + Osman Erkan + osman.erkan@yandex.com + + + + + + libXdamage + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + 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 + + libXfixes-devel + util-macros + + x11/library/libXdamage/pspec.xml + + + libXdamage + + libXfixes + libX11 + + + /usr/lib + /usr/share/doc + + + + libXdamage-devel + Development files for libXdamage + libXdamage için geliştirme dosyaları + + 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 + + libX11-32bit + libXfixes-32bit + + + libXdamage + libXfixes-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.1.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libtxc-dxtn + http://dri.freedesktop.org/wiki/S3TC + + Marcin Bojara + marcin@pisilinux.org + + custom + BSD + x11.library + Texture compression library for Mesa + S2TC is a patent-free S3TC compatible implementation and provides texture compression to Mesa. + http://people.freedesktop.org/~cbrill/libtxc_dxtn/libtxc_dxtn-1.0.1.tar.bz2 + + mesa-devel + + x11/library/libtxc-dxtn/pspec.xml + + + libtxc-dxtn + + /usr/lib + /usr/share/doc + + + + libtxc-dxtn-devel + + libtxc-dxtn + + + /usr/include + + + + libtxc-dxtn-32bit + emul32 + + /usr/lib32 + + + + + 2016-06-20 + 1.0.1 + First release. + Marcin Bojara + marcin@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 + + + + + 2016-04-30 + 1.0.7 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.0.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + mesa-32bit + libXi-32bit + libXxf86vm-32bit + libX11-32bit + libXrandr-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 3.0.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-04-27 + 3.0.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + xcb-util-wm + 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-wm 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-wm modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2 + + util-macros + libxcb-devel + + x11/library/xcb-util-wm/pspec.xml + + + xcb-util-wm + + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-wm-devel + Development files for xcb-util-wm + xcb-util-wm için geliştirme dosyaları + + xcb-util-wm + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-wm-32bit + 32-bit shared libraries for xcb-util-wm + xcb-util-wm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + + + xcb-util-wm + libxcb-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 0.4.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 0.4.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXi + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + 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.6.tar.bz2 + + libXext-devel + libXfixes-devel + util-macros + + x11/library/libXi/pspec.xml + + + libXi + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXi-devel + Development files for libXi + libXi için geliştirme dosyaları + + libXi + 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 + + libXext-32bit + libX11-32bit + + + libXi + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2016-04-27 + 1.7.6 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2014-08-31 + 1.7.4 + First release + Marcin Bojara + marcin@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 + + libX11-32bit + libXext-32bit + + + libxshmfence + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 1.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-05-05 + 1.2 + 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 + + + + + 2016-04-30 + 1.0.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.0.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libvdpau + http://freedesktop.org/wiki/Software/VDPAU + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Wrapper library for the Video Decode and Presentation API + Video kodu çözme ve sunma API'si için ara kitaplık + VDPAU is the Video Decode and Presentation API for UNIX. It provides an interface to video decode acceleration and presentation hardware present in modern GPUs. + VDPAU (Video Decode and Presentation API for UNIX), modern grafik işlemcilerde yer alan video kod çözümü hızlandırma ve sunma donanımına bir arayüz sağlar. + https://people.freedesktop.org/~aplattner/vdpau/libvdpau-1.1.1.tar.gz + + libXext-devel + + x11/library/libvdpau/pspec.xml + + + libvdpau + + libXext + + + /etc + /usr/lib + /usr/share/doc + + + + libvdpau-devel + Development files for libvdpau + libvdpau için geliştirme dosyaları + + libvdpau + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libvdpau-32bit + 32-bit shared libraries for libvdpau + libvdpau için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libvdpau + libXext-32bit + + + /usr/lib32 + + + + + 2016-04-27 + 1.1.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-11-20 + 1.1 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-04-30 + 0.9.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-04-07 + 0.9.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-04-30 + 0.9.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 0.9.3 + First release + Marcin Bojara + marcin@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 + + 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 + xcb-util-image-32bit + xcb-util-renderutil-32bit + + + libxcb-32bit + xcb-util-image-32bit + xcb-util-renderutil-32bit + + + /usr/lib32 + + + + + 2016-04-30 + 0.1.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-26 + 0.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-05-02 + 1.3.1 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.3.1 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + alternatives + http://git.fedorahosted.org/git/?p=chkconfig.git;a=summary 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.7.2.tar.xz + app:console + x11.util + Alternative management system + Alternatif yönetim sistemi + alternatives creates, removes, maintains and displays information about the symbolic links comprising the alternatives system. Alternatives system determines the defaults when several programs fulfilling the same or similar functions to be installed on a single system at the same time. + alternatives, alternatives sisteminin parçası olan sembolik bağlantıları oluşturan, silen, yöneten ve bunlar hakkında bilgi gösteren araçtır. Alternatives sistemi, birbirine benzer ya da aynı işlevleri sunan programların aynı anda aynı sisteme kurulduğu zamanlarda öntanımlıları belirler. + https://git.fedorahosted.org/cgit/chkconfig.git/snapshot/chkconfig-chkconfig-1.3.63.tar.xz - tcltk-devel - openssl-devel - libpcre-devel - curl-devel - zlib-devel - expat-devel - xmlto - asciidoc - perl-Error - perl - libxslt - util-linux + popt-devel + newt-devel - programming/scm/git/pspec.xml + x11/util/alternatives/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 - + alternatives - /usr/bin - /usr/libexec/git-core - /etc/bash_completion.d - /usr/share/git-core - /usr/share/locale + /etc + /usr/sbin + /usr/share/locale /usr/share/man /usr/share/doc + /var - - 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 - - - 2016-06-09 - 2.7.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2016-05-02 + 1.3.63 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-02-26 - 2.7.2 + 2016-03-05 + 1.3.63 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - subversion - http://subversion.apache.org/ + xorg-input-evdev + http://www.x.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.3.tar.bz2 + 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.10.2.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 + xorg-server-devel + libmtdev-devel + libevdev + util-macros + eudev-devel - - subversion-swig-perl-install_vendor.patch - subversion.rpath.fix.patch - dont_compile_pyc.patch - - programming/scm/subversion/pspec.xml + x11/driver/xorg-input-evdev/pspec.xml - subversion + xorg-input-evdev - file - zlib - expat - libgcc - sqlite - apr - serf - apr-util - cyrus-sasl + libmtdev + libevdev + eudev - /etc/conf.d - /etc/subversion - /etc/bash_completion.d - /usr/share/build - /usr/bin - /usr/lib + /usr/lib/xorg /usr/share/doc - /usr/share/info - /usr/share/locale /usr/share/man - /var/svn + /usr/share/X11/xorg.conf.d/10-evdev.conf - - System.Service - System.Package - - - svnserve.confd - subversion.config - - subversion-devel - Development files for subversion - Subversion için geliştirme dosyaları + xorg-input-evdev-devel + Development files for evdev driver + evdev sürücüsü için geliştirme dosyaları - openssl-devel - apr-devel - serf-devel - sqlite-devel - apr-util-devel - subversion + xorg-input-evdev /usr/include - /usr/share/pkgconfig + /usr/lib/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 - - - 2016-06-09 - 1.9.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2016-05-02 + 2.10.2 + Version bump + Burak Ertürk + burakerturk@pisilinux.org - 2016-03-06 - 1.9.3 + 2015-05-08 + 2.9.2 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.7.8 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.7.8 + First release + Burak Ertürk + burakerturk@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.1.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 + + + + + 2016-05-02 + 1.8.1 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.8.0 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.4.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.4.6 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 0.7.4 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.7.4 + First release + Burak Ertürk + burakerturk@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.8.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-sis/pspec.xml + + + xorg-video-sis + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2016-05-02 + 0.10.8 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.10.7 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 13.1.0 + Release bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 13.1.0 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 0.3.7 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.3.7 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 0.2.0 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-05-15 + 0.2.0 + First release + Osman Erkan + osman.erkan@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. + http://anduin.linuxfromscratch.org/BLFS/xf86-video-intel/xf86-video-intel-0340718.tar.xz + + 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 + libXfont-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 + + + + + 2016-05-02 + 0340718 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 2.99.917 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 0.7.8 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.7.8 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 0.4.4 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.4.4 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 2.3.8 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 2.3.8 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.5.3 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.5.3 + First release + Burak Ertürk + burakerturk@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.4.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 + + + + + 2016-05-02 + 2.3.4 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 2.3.3 + First release + Burak Ertürk + burakerturk@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.1.0.tar.bz2 + + xorg-server-devel + + 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.1.0 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 13.0.0 + First release + Burak Ertürk + burakerturk@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.3.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 + + + + + 2016-05-02 + 1.8.3 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.8.2 + First release + Burak Ertürk + burakerturk@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.7.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 + + + + + 2016-05-02 + 7.7.0 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 7.7.0 + First release + Burak Ertürk + burakerturk@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.1.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 + + + + + 2016-05-02 + 6.10.1 + Verson bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 6.10.0 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.2.9 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.2.9 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 6.9.5 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 6.9.5 + First release + Burak Ertürk + burakerturk@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.6.tar.bz2 + + xorg-server-devel + + 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 + + + + + 2016-05-02 + 4.2.6 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 4.2.5 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.4.1 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.4.1 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.5.0 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.5.0 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.2.5 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.2.5 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.9.1 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.9.1 + First release + Burak Ertürk + burakerturk@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 + util-macros + 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 + + + + + 2016-05-02 + 1.2.8 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.2.8 + First release + Burak Ertürk + burakerturk@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.4.0.tar.bz2 + + libdrm-devel + libXext-devel + libXv-devel + libXvMC-devel + xorg-server-devel + + 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 + + + + + 2016-05-02 + 0.4.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.3.3 + First release + Burak Ertürk + burakerturk@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 + + util-macros + 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 + + + + + 2016-05-02 + 0.9.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.9.6 + First release + Burak Ertürk + burakerturk@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.7.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-s3virge/pspec.xml + + + xorg-video-s3virge + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2016-05-02 + 1.10.7 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.10.6 + First release + Burak Ertürk + burakerturk@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.12.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 + + + + + 2016-05-02 + 1.0.12 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.0.12 + First release + Burak Ertürk + burakerturk@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.33.0.tar.bz2 + + libXi-devel + libXrandr-devel + xorg-server-devel + libXinerama-devel + eudev-devel + libgudev-devel + doxygen + util-macros + + 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 + + + + + 2016-05-16 + 0.33.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.32.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-05-08 + 0.29.0 + First release + Ergün Salman + Poyraz76@pisilinux.org + + + + + + xorg-input-libinput + http://www.x.org + + PisiLinux Community + admin@pisilinux.org + + MIT + driver + x11.driver + Generic input driver for the X.Org server based on libinput + Xorg sunucusu için genel giriş sürücüsü. + Generic input driver for the X.Org server based on libinput + xorg-input-libinput, libinputa dayalı Xorg sunucusu için genel giriş sürücüsüdür. + mirrors://xorg/individual/driver/xf86-input-libinput-0.19.0.tar.bz2 + + libX11-devel + eudev-devel + xorg-server-devel + libinput-devel + util-macros + + x11/driver/xorg-input-libinput/pspec.xml + + + xorg-input-libinput + + libinput + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + /usr/share/X11/xorg.conf.d + + + + xorg-input-libinput-devel + Development files for xorg-input-libinput + + xorg-input-libinput + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-05-02 + 0.19.0 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 0.18.0 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.3.7 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.3.7 + First release + Burak Ertürk + burakerturk@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.7.0.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 + + + + + 2016-05-02 + 1.7.0 + Version Bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.5.1 + First release + Burak Ertürk + burakerturk@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.4.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-mga/pspec.xml + + + xorg-video-mga + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2016-05-02 + 1.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.6.3 + First release + Burak Ertürk + burakerturk@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.5.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-i740/pspec.xml + + + xorg-video-i740 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2016-05-02 + 1.3.5 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.3.4 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.4.1 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.4.1 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.6.2 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.6.2 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.2.2 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.2.2 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.3.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.3.6 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.2.5 + Release bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.2.5 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + 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-324.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 + + + + + 2016-05-02 + 324 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-13 + 304 + First release + Alihan Öztürk + alihan@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 + intltool + harfbuzz-devel + graphite2-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 + + + + + 2016-05-02 + 0.28.2 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-16 + 0.28.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + 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.16.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 + + + + + 2016-05-02 + 1.4.16 + Version bump + Burak Erturk + burakerturk@pisilinux.org + + + 2014-05-16 + 1.4.14 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-server + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + x11.server + X.Org X Server + Serveur X X.Org + X.Org X Server + X.Org X Sunucu + X.Org X Serwer + X server is the main application that allows a graphical interface. + X sunucu, grafiksel arayüz için gerekli ana uygulamadır. + X serwer to główna aplikacja, która umożliwia interfejs graficzny. + mirrors://xorg/individual/xserver/xorg-server-1.18.3.tar.bz2 + + font-util + libjpeg-turbo-devel + libdmx-devel + libdrm-devel + libgcrypt-devel + libpciaccess-devel + libX11-devel + libXaw-devel + libXext-devel + libXfixes-devel + libXfont-devel + libXi-devel + libxkbfile-devel + libXmu-devel + libXpm-devel + libXrender-devel + libXres-devel + libXt-devel + libXtst-devel + libXv-devel + mesa-devel + pixman-devel + xorg-app + nettle-devel + libepoxy-devel + xcb-util-devel + xcb-util-image-devel + xcb-util-wm-devel + xcb-util-keysyms-devel + xcb-util-renderutil-devel + util-macros + xtrans + eudev-devel + freetype-devel + libunwind-devel + libXau-devel + libICE-devel + libSM-devel + + x11/server/xorg-server/pspec.xml + + + xorg-server-common + Common files for X servers + X sunucuları için ortak dosyalar + data + + /etc/X11/fontpath.d + /etc/dbus-1 + /usr/lib/xorg/protocol.txt + /var/lib/xkb + /usr/share/doc + /usr/share/man/man1/Xserver.1 + + + + xorg-server + app:console + + libXau + eudev + libXdmcp + mesa + libdrm + pixman + libXfont + libunwind + libpciaccess + libxshmfence + libepoxy + + + /etc/X11/xorg.conf.d + /usr/bin/X + /usr/bin/Xorg + /usr/bin/cvt + /usr/bin/gtf + /usr/libexec + /usr/lib/xorg + /usr/share/X11/DriversDB + /usr/share/X11/pci + /usr/share/X11/xorg.conf.d + /usr/share/man/man1/Xorg.1 + /usr/share/man/man1/cvt.1 + /usr/share/man/man1/gtf.1 + /usr/share/man/man4/exa.4 + /usr/share/man/man4/modesetting.4 + /usr/share/man/man4/fbdevhw.4 + /usr/share/man/man5/xorg.conf.5 + /usr/share/man/man5/xorg.conf.d.5 + + + xorg-video-modesetting + glamor-egl + + + xorg-save-xkb-config.sh + DriversDB + fedora/10-quirks.conf + + + + xorg-server-xdmx + Distributed Multihead X Server + Dağıtık, çok başlı X sunucusu + app:console + + xorg-server-common + libX11 + libXau + libXdmcp + libXi + libXt + libXmu + libdmx + libXaw + pixman + libXext + libXfont + libXfixes + libXrender + libunwind + + + /usr/bin/*dmx* + /usr/share/man/man1/*dmx* + + + + xorg-server-xwayland + Run X clients under wayland + app:console + + libXau + libXdmcp + libunwind + mesa + pixman + libdrm + libXfont + libepoxy + libxshmfence + wayland-client + xorg-server-common + + + /usr/bin/Xwayland + + + + xorg-server-xephyr + Nested X Server + Başka bir X ekranında çalışabilen X sunucusu + app:console + + libX11 + libXau + libxcb + libXdmcp + xorg-server-common + mesa + xcb-util + libunwind + pixman + libXext + libXfont + libepoxy + xcb-util-wm + libxshmfence + xcb-util-image + xcb-util-keysyms + xcb-util-renderutil + + + /usr/bin/Xephyr + /usr/share/man/man1/Xephyr.1 + + + + xorg-server-xvfb + Virtual Framebuffer X Server + Sanal framebuffer X sunucusu + app:console + GPLv2 + + libXau + libXdmcp + xorg-server-common + libXfont + pixman + mesa + libunwind + + + /usr/bin/[Xx]vfb* + /usr/share/man/man1/Xvfb.1 + + + xvfb-run.sh + + + + xorg-server-xnest + A nested X server that runs as an X application + + libX11 + libXau + libXdmcp + libXfont + libXext + libunwind + pixman + + + /usr/bin/Xnest + /usr/share/man/man1/Xnest.1 + + + + xorg-server-devel + Headers and libraries for X server driver development + X sunucusu için sürücü geliştirmede kullanılan başlık ve kitaplık dosyaları + data + library + + xorg-server + libpciaccess-devel + pixman-devel + mesa-devel + + + /usr/include/xorg + /usr/lib/libxf86config.a + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2016-05-02 + 1.18.3 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-04-08 + 1.17.2 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -80596,83 +79643,1902 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - ruby - http://www.ruby-lang.org/en/ + xorg-font + http://www.x.org/ 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 + 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 - tcltk-devel - db-devel - gmp-devel - tcl-devel - gdbm-devel - zlib-devel - libffi-devel - openssl-devel - readline-devel - libyaml-devel + font-util + xorg-app - programming/language/ruby/ruby/pspec.xml + x11/misc/xorg-font/pspec.xml - ruby + xorg-font - db - gmp - tcl - gdbm - zlib - tcltk - libffi - openssl - readline - libyaml + 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 + + + + + 2016-05-02 + 7.6 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-11-17 + 7.6 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + bumblebee + http://bumblebee-project.org + + Idris Kalp + idriskalp@gmail.com + + GPLv3 + app:gui + kernel.default.drivers + a project aiming to support NVIDIA Optimus technology under Linux. + The Bumblebee Project proudly presents version 3.0 of Bumblebee, a project aiming to support NVIDIA Optimus technology under Linux. After two months of hard work this version has finally been considered stable enough for release. + http://www.bumblebee-project.org/bumblebee-3.2.1.tar.gz + + libbsd-devel + libX11-devel + glib2-devel + + + bb-hexadecimal.patch + nv-uvm-modeset.patch + + x11/misc/bumblebee/pspec.xml + + + bumblebee + + glib2 + module-bbswitch + libX11 + libbsd + primus + virtualgl + virtualgl-32bit + + + /etc + /usr/lib/tmpfiles.d/bumblebee.conf + /usr/bin + /usr/sbin + /lib/udev/rules.d + /usr/share/man + /usr/share/doc + + + System.Service + System.Package + + + tmpfiles.conf + + + + + 2016-05-02 + 3.2.1 + Rebuild + Idris Kalp + idriskalp@pgmail.com + + + 2016-04-08 + 3.2.1 + First Release + Idris Kalp + idriskalp@pgmail.com + + + + + + virtualgl + http://virtualgl.org + + Marcin Bojara + marcin@pisilinux.org + + LGPLv2.1 + library + app:console + x11.misc + A toolkit for displaying OpenGL applications to thin clients + OpenGL uygulamaları ince istemcilerde göstermek için bir kitaplık + Redirects 3D commands from an OpenGL application onto a server-side 3D graphics card. + Bir OpenGL uygulamadan gelen 3D komutlarını sunucu tarafındaki 3D grafik kartına yönlendirir. + https://sourceforge.net/projects/virtualgl/files/2.5/VirtualGL-2.5.tar.gz + + cmake + fltk-devel + libXv-devel + libXext-devel + mesa-devel + libX11-devel + mesa-glu-devel + libjpeg-turbo-devel + + x11/misc/virtualgl/pspec.xml + + + virtualgl + + fltk + libXv + libXext + mesa + libX11 + mesa-glu + libjpeg-turbo /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/lib + /usr/lib/fakelib + /usr/share/doc + + + + virtualgl-32bit + 32 bit shared libraries of VirtualGL + emul32 + emul32 + + fltk-32bit + libX11-32bit + libXv-32bit + libXext-32bit + mesa-32bit + mesa-glu-32bit + libjpeg-turbo-32bit + + + fltk-32bit + libX11-32bit + libXv-32bit + libXext-32bit + mesa-32bit + mesa-glu-32bit + libjpeg-turbo-32bit + + + /usr/bin/glxspheres32 + /usr/lib32 + /usr/lib32/fakelib + + + + virtualgl-devel + Development files for virtualgl + + virtualgl + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2016-05-02 + 2.5 + Rebuild + Idris KALP + idriskalp@gmail.com + + + 2016-04-08 + 2.5 + Version bump + Idris KALP + idriskalp@gmail.com + + + + + + 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 + + + 0001-Makefile.am-Error-Fix.patch + + 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 + First release + Burak Ertürk + burakerturk@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 + + + + + 2016-05-02 + 1.1.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-15 + 1.1.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + primus + https://github.com/amonakov/primus + + Mathias Freire + mathiasfreire45@gmail.com + + ISC + library + x11.misc + Minimalistic and efficient OpenGL offloading for Bumblebee + Primus is a shared library that provides OpenGL and GLX APIs and implements low-overhead local-only client-side OpenGL offloading via GLX forking, similar to VirtualGL. + mirrors://sourceforge/pisilinux/source/primus-20160408.tar.gz + + libX11-devel + mesa-devel + + + primus-nvidia-libs.patch + + x11/misc/primus/pspec.xml + + + primus + + libX11 + mesa + + + /etc + /usr/bin + /usr/lib /usr/share/doc /usr/share/man - rubygems - rubygems, The Ruby standard for packaging ruby libraries + primus-32bit + + libX11-32bit + mesa-32bit + - ruby + libX11-32bit + mesa-32bit - /usr/bin/gem - /usr/lib/ruby/gems - /usr/share/ri/2.2.0/system/Gem + /usr/lib32 + + + + + 2016-05-02 + 2016.05.02 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2016-04-09 + 2016.04.08 + First Release + Idris Kalp + idriskalp@gmail.com + + + + + + 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.17.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 + + + + + 2016-05-02 + 2.17 + Version bump + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-05-14 + 2.14 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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 + + + + + 2016-05-02 + 1.3.4 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-11-30 + 1.3.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.1.0.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 + + + + + 2016-06-09 + 1.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-03 + 1.1.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-03-04 + 1.0.29 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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.1.1.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 + + + + + 2016-06-09 + 1.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-03 + 1.1.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2015-03-04 + 1.0.29 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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.1.1.tar.bz2 + + python-devel + + hardware/sound/alsa-lib/pspec.xml + + + alsa-lib + + python + + + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/alsa - ruby-devel - ruby için geliştirme dosyaları - ruby için geliştirme dosyaları + alsa-lib-devel + Development files for alsa-lib + alsa-lib için geliştirme dosyaları - ruby + 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 + + /usr/lib32 + + + + + 2016-06-09 + 1.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-03 + 1.1.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-03-04 + 1.0.29 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + libburn + http://libburnia-project.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + app:console + hardware.optical + A library for reading, mastering and writing optical discs + Optik diskleri okumak, idare etmek ve yazmak için kitaplıklar + Libburn is an open-source library for reading, mastering and writing optical discs. + libburn, optik diskleri okumak, idare etmek ve yazmak için yazılmış, açık kaynak kodlu bir kitaplıktır. + http://files.libburnia-project.org/releases/libburn-1.4.2.tar.gz + hardware/optical/libburn/pspec.xml + + + libburn + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libburn-devel + Development files for libburn + libburn için geliştirme dosyaları + + libburn + + + /usr/include + /usr/lib/pkgconfig/libburn-1.pc + + + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 1.4.2 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-09 + 0.90_p1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-25 + 0.90_p1 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + lsdvd + http://untrepid.com/lsdvd + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.optical + Small application for listing the contents of DVDs + DVD bilgilerini toplamaya yarayan bir araç + lsdvd is a small application which lists the contents of DVDs to your terminal. + lsdvd, terminal üzerinden DVD'lerin içeriğini görüntülemeye yarayan basit bir araçtır. + mirrors://sourceforge/lsdvd/lsdvd-0.17.tar.gz + + libdvdread-devel + + hardware/optical/lsdvd/pspec.xml + + + lsdvd + + libdvdread + + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 0.17 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 0.17 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + libisoburn + http://libburnia-project.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + app:console + hardware.optical + Frontend for libraries libburn and libisofs + Libburn ve libisofs kütüphanelerini kullanmak için bir arayüz. + Frontend for libraries libburn and libisofs + libisoburn, libburn ve libisofs kütüphanelerini kullanmak için bir arayüzdür. + http://files.libburnia-project.org/releases/libisoburn-1.4.2.tar.gz + + libburn-devel + libisofs-devel + readline-devel + zlib-devel + acl-devel + + hardware/optical/libisoburn/pspec.xml + + + libisoburn + + acl + zlib + readline + libburn + libisofs + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + libisoburn-devel + Development files for libisoburn + libisoburn için geliştirme dosyaları + + libisoburn + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-15 + 1.4.2 + First release + Stefan Gronewold + groni@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 + 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 + + + + + 2016-06-25 + 1.1.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-09-14 + 1.1.11 + First release + Burak Fazıl Ertürk + burakerturk@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 + + + + + 2016-06-09 + 3.10.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 3.10.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + cdrdao + http://cdrdao.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.optical + Burn CDs in disk-at-once mode + CDlerinizi DAO modunda yazar + cdrdao records audio or data CD-Rs in disk-at-once (DAO) mode based on a textual description of the CD contents. + mirrors://sourceforge/cdrdao/cdrdao-1.2.3.tar.bz2 + + lame-devel + libao-devel + libmad-devel + libvorbis-devel + + + cdrdao-1.2.3-version.patch + cdrdao-1.2.3-stat.patch + cdrdao-1.2.3-autoconf-update.patch + + hardware/optical/cdrdao/pspec.xml + + + cdrdao + + lame + libmad + libvorbis + libao + + + /usr/bin + /usr/share/cdrdao + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 1.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-19 + 1.2.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + simpleburn + http://simpleburn.tuxfamily.org/ + + Stefan Gronewold + groni@pisilinux.org + + Cecill-2 license + app:gui + hardware.optical + A simple GTK+ application for burning CDs and DVDs + SimpleBurn is a minimalistic application for burning and extracting CDs and DVDs. It basically is a Cdrtools frontend and is designed in two parts: the GUI (GTK) and a BASH script that handle the requested actions. + simpleburn + https://sourceforge.net/projects/pisilinux/files/source/simpleburn-1.6.5.tar.bz2 + + gtk2-devel + cdparanoia-devel + mpg123-devel + pkgconfig + cmake + libisoburn-devel + libburn-devel + libisofs-devel + libcdio-devel + cdrkit + util-linux + libutil-linux-devel + + hardware/optical/simpleburn/pspec.xml + + + simpleburn + + gtk2 + glib2 + lame + cdparanoia + libisoburn + cdrdao + libcdio + mpg123 + vorbis-tools + cdrkit + libcdio + + + /usr/bin + /usr/share/pixmaps + /usr/share/locale + /usr/share/simpleburn + /usr/share/applications + /usr/doc + + + + + 2016-06-09 + 1.6.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-20 + 1.6.5 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-04-19 + 1.6.5 + Version bump. + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 0.92 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.92 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + gkrellm + http://www.gkrellm.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + service + hardware.info + 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://gkrellm.srcbox.net/releases/gkrellm-2.3.5.tar.bz2 + + 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 + + + + + 2016-06-09 + 2.3.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-01 + 2.3.5 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + dmidecode + http://www.nongnu.org/dmidecode/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.info + 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 + + + + + 2016-06-09 + 2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-22 + 2.12 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + media-player-info + http://cgit.freedesktop.org/media-player-info + + PisiLinux Community + admins@pisilinux.org + + BSD + hardware.info + 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 + + + + + 2016-06-09 + 22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 22 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.0.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 1.0.9 + First release + PisiLinux Community + admins@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 @@ -80682,104 +81548,1304 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 2.2.2 + 1.11 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-04 - 2.2.2 + 2015-07-31 + 1.11 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + PisiLinux Community + admins@pisilinux.org - vala - http://live.gnome.org/Vala + libimobiledevice + http://www.libimobiledevice.org 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 + 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 - glib2-devel - gobject-introspection-devel - libxslt + gnutls-devel + usbmuxd-devel + libplist-devel + libtasn1-devel + libgcrypt-devel - programming/language/vala/pspec.xml + hardware/mobile/libimobiledevice/pspec.xml - vala - app:console - library + libimobiledevice - glib2 + gnutls + usbmuxd + libplist + libtasn1 + libgcrypt - /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 + /usr/bin + /usr/share/man/man1 + /usr/share/doc/libimobiledevice - vala-devel - Development files for vala - vala için geliştirme dosyaları - Pliki nagłówkowe dla kompilatora vala + libimobiledevice-devel + Development files for libimobiledevice - vala + gnutls-devel + usbmuxd-devel + libplist-devel + libtasn1-devel + libgcrypt-devel + libimobiledevice /usr/include - /usr/lib/pkgconfig - /usr/share/pkgconfig + /usr/lib/pkgconfig + + + + + 2016-06-09 + 1.1.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-25 + 1.1.7 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + wine + http://www.winehq.org/ + + PisiLinux Community + admins@pisilinux.org + + i686 + LGPLv2.1 + app:console + hardware.emulator + Wine bir "Emülator" değildir,Windows uygulamalarını çalıştırma imkanı sunar. + Wine ist kein Emulator, mit dem Sie Microsoft Windows-Anwendungen laufen lässt + WINE Is Not An Emulator, which lets you run Microsoft Windows applications + Wine X11 çalıştıran bir i386 (veya uyumluları) makinede Windows 3.*, Windows 95/98 ve Windows NT programlarını çalıştırmanıza imkân verir. Halâ alfa düzeyinde olduğundan her şey çalışmayabilir. + Wine gibt ihnen die möglichkeit um Windows 3. *, Windows 95/98 und Windows NT-Programme auf einem i386 (oder kompatibel) System X11 zu laufen. Es ist immer noch Alpha-Level-Code, nicht erwarten, dass alles funktioniert. + Wine allows running Windows 3.*, Windows 95/98 and Windows NT programs on a i386 (or compatible) machine running X11. It is still alpha level code; don't expect everything to work. + https://dl.winehq.org/wine/source/1.9/wine-1.9.13.tar.bz2 + https://github.com/wine-compholio/wine-staging/archive/v1.9.13.tar.gz + + lcms2-devel + libao-devel + libSM-devel + mpg123-devel + openal-devel + libXext-devel + libxslt-32bit + mesa-glu-devel + alsa-lib-devel + gstreamer-devel + openldap-client + libgphoto2-devel + pulseaudio-libs-devel + gst-plugins-base-devel + cups-devel + gnutls-devel + libXcursor-devel + libXi-devel + libXrandr-devel + libXxf86vm-devel + sane-backends-devel + unixODBC-devel + dbus-devel + fontconfig-devel + gsm-devel + libjpeg-turbo-devel + libXcomposite-devel + libXinerama-devel + libxslt-devel + tiff-devel + giflib-devel + v4l-utils + libpng + libtevent-devel + jack-audio-connection-kit-devel + fontforge + libpcap-devel + util-linux + ncurses-devel + + hardware/emulator/wine/pspec.xml + + + wine + app:gui + + lcms2 + libX11 + libSM + mpg123 + openal + libXext + mesa-glu + alsa-lib + gstreamer + libgphoto2 + libXcomposite + openldap-client + pulseaudio-libs + gst-plugins-base + libjpeg-turbo + libtevent + p11-kit + libxml2 + giflib + ncurses + cups + gnutls + libXcursor + libXi + libXrandr + libXxf86vm + sane-backends + unixODBC + cabextract + libpcap + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/desktop-directories + /usr/share/wine + /usr/share/locale + /usr/share/doc + /usr/share/man + + + winetricks + wisotool + menu/wine.menu + menu/Wine.directory + menu/taskmgr.desktop + menu/uninstaller.desktop + menu/winecfg.desktop + menu/winefile.desktop + menu/winetricks.desktop + menu/wine-mime-msi.desktop + menu/wine-oleview.desktop + menu/wine-winemine.desktop + + + + wine-devel + Wine development environment + Wine geliştirme ortamı + + wine + + + /usr/bin/function_grep.pl + /usr/bin/widl + /usr/bin/winebuild + /usr/bin/winecpp + /usr/bin/wineg++ + /usr/bin/winegcc + /usr/bin/winemaker + /usr/bin/wmc + /usr/bin/wrc + /usr/include/wine /usr/share/aclocal - /usr/share/vala/Makefile.vapigen + /usr/share/man/man1/widl.1 + /usr/share/man/man1/winebuild.1 + /usr/share/man/man1/winecpp.1 + /usr/share/man/man1/wineg++.1 + /usr/share/man/man1/winegcc.1 + /usr/share/man/man1/winemaker.1 + /usr/share/man/man1/wmc.1 + /usr/share/man/man1/wrc.1 + + + + winetricks + winetricks is a helper script to download and install various redistributable runtime libraries needed to run some programs in Wine. + + /usr/bin/winetricks + /usr/share/applications/winetricks.desktop + + + + wine-32bit + 32-bit shared libraries for wine + wine için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + zlib-32bit + glib2-32bit + lcms2-32bit + libSM-32bit + p11-kit-32bit + giflib-32bit + libpng-32bit + libv4l-32bit + libX11-32bit + mpg123-32bit + openal-32bit + libXext-32bit + libxml2-32bit + alsa-lib-32bit + mesa-glu-32bit + openldap-32bit + ncurses-32bit + libXrandr-32bit + libXdamage-32bit + libXxf86vm-32bit + fontconfig-32bit + libXcursor-32bit + libXxf86dga-32bit + gstreamer-32bit + libXcomposite-32bit + pulseaudio-libs-32bit + gst-plugins-base-32bit + + + zlib-32bit + lcms2-32bit + libSM-32bit + libX11-32bit + mpg123-32bit + openal-32bit + libXext-32bit + libxml2-32bit + alsa-lib-32bit + mesa-glu-32bit + openldap-32bit + gsm-32bit + cups-32bit + tiff-32bit + libXi-32bit + gnutls-32bit + libpng-32bit + ncurses-32bit + openssl-32bit + p11-kit-32bit + giflib-32bit + alsa-lib-32bit + libXrandr-32bit + gstreamer-32bit + fontconfig-32bit + libXcursor-32bit + libXdamage-32bit + libXxf86vm-32bit + libXxf86dga-32bit + libtool-ltdl-32bit + libXcomposite-32bit + libjpeg-turbo-32bit + pulseaudio-libs-32bit + + + /usr/lib32/libwine.so* + /usr/lib32/wine + + + + + 2016-07-02 + 1.9.13 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + hplip + http://hplip.sourceforge.net/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2+ + MIT + hardware.printer + HP Linux Imaging and Printing System + HP Linux yazıcı ve tarayıcı sistemi + HP Linux Imaging and Printing (HPLIP) System includes printer and scanner drivers and related service tools. + HP yazıcı ve tarayıcıları için sürücüler, yazılım eklentileri ve yönetim araçları + mirrors://sourceforge/hplip/hplip/3.16.5/hplip-3.16.5.tar.gz + + patch-ppds.sh + fedora/copy-deviceids.py + fedora/hplip-deviceIDs-ppd.patch + fedora/hplip-ppd-ImageableArea.patch + + + libjpeg-turbo-devel + foomatic-db + net-snmp-devel + sane-backends-devel + cups-devel + python3-devel + python-devel + libusb-devel + dbus-devel + desktop-file-utils + + + fedora/hplip-avahi-parsing.patch + fedora/hplip-bad-low-ink-warning.patch + fedora/hplip-clear-old-state-reasons.patch + fedora/hplip-deviceIDs-drv.patch + fedora/hplip-dj990c-margin.patch + fedora/hplip-hpcups-sigpipe.patch + fedora/hplip-hpijs-marker-supply.patch + fedora/hplip-lineart.patch + fedora/hplip-log-stderr.patch + fedora/hplip-logdir.patch + fedora/hplip-no-asm.patch + fedora/hplip-no-write-bytecode.patch + fedora/hplip-retry-open.patch + fedora/hplip-scan-tmp.patch + fedora/hplip-silence-ioerror.patch + fedora/hplip-snmp-quirks.patch + fedora/hplip-strncpy.patch + fedora/hplip-udev-rules.patch + fedora/hplip-strstr-const.patch + pisilinux/desktop-i18n.patch + pisilinux/desktop-i18n-1.patch + pisilinux/add-pisilinux-support.patch + pisilinux/fix-polkit-directory.patch + pisilinux/suppress-module-warnings.patch + pisilinux/hp-systray-consume-session-param.patch + + hardware/printer/hplip/pspec.xml + + + hplip + app:console + library + driver + + libjpeg-turbo + net-snmp + foomatic-db + sane-backends + cups + dbus + libgcc + libusb + openssl + + + /etc/sane.d/dll.d + /etc/hp/hplip.conf + /usr/bin + /usr/lib/cups/backend + /usr/lib/cups/filter + /usr/lib + /var/lib/hp + /usr/share/cups + /usr/share/hplip + /usr/share/dbus-1 + /usr/share/PolicyKit + /usr/share/hplip/prnt/plugins + /var/log/hp + /lib/udev/rules.d + /etc/cron.daily/ + + + System.Package + + + fedora/hpcups-update-ppds.sh + hpaio + hplip_tr.qm + + + + hplip-gui + A set of useful utilities written in Qt for managing HP devices + Qt ile yazılmış, HP cihazları yönetmek için kullanılan bir dizi kullanışlı araç + app:gui + hplip + + hplip + python-pygobject + python-qt5 + + + /usr/bin/hp-toolbox + /usr/bin/hp-systray + /usr/bin/hp-print + /usr/share/hplip/toolbox.py + /usr/share/hplip/systray.py + /usr/share/hplip/print.py + /etc/xdg/autostart + /usr/share/applications/*.desktop + /usr/share/hplip/data/images + /usr/share/hplip/plugins + /usr/share/hplip/ui4 + /usr/share/pixmaps + + + hplip.png + + + + hplip-docs + Documentation files for HPLIP + data:doc + + hplip + + + /usr/share/doc + + + + + 2016-06-09 + 3.16.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-09 + 3.16.5 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-05-08 + 3.15.11 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + splix + http://splix.sf.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + app:console + hardware.printer + A set of CUPS printer drivers for SPL (Samsung Printer Language) printers + SPL (Samsung Yazıcı Dili) için CUPS sürücüleri + The Splix drivers are usable by all printer devices which understand the SPL II language. It covers several Samsung, Xerox, Dell and Ricoh printers. + splix, SPL II dilini anlayabilen tüm yazıcılar tarafından kullanılabilen sürücüleri içerir. Bu sürücü bazı Samsung, Xerox, Dell ve Ricoh yazıcıları desteklemektedir. + http://source.pisilinux.org/1.0/splix_2.0.0+20110720.orig.tar.gz + http://splix.ap2c.org/samsung_cms.tar.bz2 + + cups-devel + jbigkit-devel + + + splix-1.1.0-fix-makefile.patch + splix-nostrip.patch + install-english-only.patch + + hardware/printer/splix/pspec.xml + + + splix + + cups + libgcc + jbigkit + + + /usr/lib/cups + /usr/share/cups + /usr/share/doc + + + + + 2016-06-09 + 2.0.0_20110720 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-10 + 2.0.0_20110720 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + foomatic-db-nonfree + http://www.linuxprinting.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + Custom + app:console + hardware.printer + Foomatic printer database nonfree + Foomatic - database extension consisting of manufacturer-supplied PPD files released under non-free licenses. + http://www.openprinting.org/download/foomatic/foomatic-db-nonfree-20160609.tar.gz + + cups-devel + foomatic-db + + hardware/printer/foomatic-db-nonfree/pspec.xml + + + foomatic-db-nonfree + + foomatic-db + + + /usr/share/foomatic/db/ + /usr/share/doc/foomatic-db-nonfree + + + + + 2016-06-09 + 20160609 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 20160326 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 1.6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-23 + 1.6.4 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + gutenprint + http://gimp-print.sourceforge.net/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + data + hardware.printer + High quality printer drivers + Yüksek kaliteli yazıcı sürücüleri + gutenprint contains drivers for Canon, Epson, Lexmark, Sony, Olympus, and PCL printers for use with Ghostscript, CUPS, Foomatic, and the Gimp. + Canon, Epson, Lexmark, Sony, Olympus ve PCL türü yazıcılar için Gimp, CUPS, Foomatic yazıcı sürücüleri + mirrors://sourceforge/gimp-print/gutenprint-5.2/5.2.11/gutenprint-5.2.11.tar.bz2 + + fedora/cups-genppdupdate.py.in + + + cups-devel + foomatic-db + ghostscript-devel + cups + python-cups + ghostscript + atk-devel + gtk2-devel + zlib-devel + cairo-devel + glib2-devel + pango-devel + libusb-devel + + + fedora/gutenprint-build.patch + fedora/gutenprint-menu.patch + fedora/gutenprint-O6.patch + fedora/gutenprint-postscriptdriver.patch + + hardware/printer/gutenprint/pspec.xml + + + gutenprint + + cups + ghostscript + gtk2 + zlib + glib2 + libusb + ncurses + freetype + fontconfig + + + /usr/lib/cups + /usr/bin + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/man/ + /usr/share/cups + /usr/share/foomatic + /usr/share/gutenprint + /usr/share/locale + /usr/include/gutenprintui2/ + /etc/cups/command.types + + + System.Package + + + fedora/gutenprint-foomaticppdupdate + + + + gutenprint-devel + Development files for gutenprint + gutenprint için geliştirme dosyaları + + gutenprint + + + /usr/include/gutenprint + /usr/lib/pkgconfig /usr/share/man/man3 2016-06-09 - 0.28.0 + 5.2.11 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-05-22 - 0.28.0 + 2016-02-13 + 5.2.11 + First release + Ali Algul + alialgul@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.5.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 + openldap-client + avahi-devel + avahi-glib-devel + 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-filters-devel + Development files for cups-filters + Cups-filters için geliştirme dosyaları + + cups-filters + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 1.5.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-23 + 1.5.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + system-config-printer + http://cyberelk.net/tim/software/system-config-printer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.printer + A printer administration tool + Yazıcı yapılandırma altyapısı + system-config-printer is a graphical user interface that allows the user to configure a CUPS print server. + system-config-printer, Python ile yazılmış ve otomatik yazıcı tanıma sürecinde kullanılan altyapıyı oluşturan bir kütüphanedir. + http://cyberelk.net/tim/data/system-config-printer/1.5/system-config-printer-1.5.7.tar.xz + + tr.po + + + util-linux + xmlto + libxslt-devel + intltool + python3-devel + cups-devel + eudev-devel + glib2-devel + libusb-devel + libgnome-keyring-devel + desktop-file-utils + + + fix-icon.patch + system-config-printer-shbang.patch + + hardware/printer/system-config-printer/pspec.xml + + + system-config-printer + + eudev + glib2 + libusb + libgnome-keyring + python-cups + python-smbc + dbus-python + python-pygobject3 + cups + + + /usr/lib + /etc/dbus-1 + /etc/cupshelpers + /usr/share/doc + /lib/udev/rules.d + /usr/share/dbus-1 + /usr/share/system-config-printer/debug.py + /usr/share/appdata/system-config-printer.appdata.xml + /usr/share/system-config-printer/smburi.py + /usr/share/system-config-printer/config.py + /usr/share/system-config-printer/ppdippstr.py + /lib/systemd/system/configure-printer@.service + /run/udev-configure-printer + /lib/udev + /usr/libexec + /usr/lib/tmpfiles.d/system-config-printer.conf + + + tmpfiles.conf + + + + system-config-printer-gtk + GTK+ frontend of system-config-printer + system-config-printer için GTK+ önyüzü + + python-gtk + notify-python + python-pygobject + python-pygobject3 + system-config-printer + + + /usr/share/man + /usr/share/system-config-printer + /etc/xdg/autostart + /usr/share/applications + /usr/bin + /usr/share/locale + + + + + 2016-06-09 + 1.5.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.5.7 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-08 + 1.5.7 + First release + Alihan Öztürk + alihan@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.1.3/cups-2.1.3-source.tar.bz2 + http://source.pisilinux.org/1.0/cups-tr.tar + + acl-devel + pam-devel + dbus-devel + libpcre-devel + zlib-devel + python-devel + libusb-devel + libgcc + avahi-libs + avahi-devel + 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 + archlinux/cups-1.6.0-fix-install-perms.patch + fedora/cups-enum-all.patch + fedora/cups-final-content-type.patch + fedora/cups-res_init.patch + fedora/cups-hp-deviceid-oid.patch + fedora/cups-logrotate.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 + avahi + avahi-libs + 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 + + zlib-32bit + openssl-32bit + + + zlib-32bit + openssl-32bit + libgcc + cups + + + /usr/bin/cups-config-32bit + /usr/lib32 + + + + + 2016-06-09 + 2.1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 2.1.3 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-23 + 2.1.3 + First release + Alihan Öztürk + alihan@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-20160609.tar.gz + + cleanup-script + + hardware/printer/foomatic-db/pspec.xml + + + foomatic-db + + pnm2ppa + + + /usr/share + + + + + 2016-06-09 + 4.0.20160609 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 4.0.20160326 + First release + Marcin Bojara + marcin@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 + + + + + 2016-06-09 + 1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 1.13 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 4.0.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-24 + 4.0.12 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -80788,63 +82854,1215 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - ocaml - http://www.ocaml.org/ + libpaper + http://packages.debian.org/unstable/source/libpaper - Serdar Soytetir - kaptan@pisilinux.org + PisiLinux Community + admins@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 + 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+nmu4.tar.gz + hardware/printer/libpaper/pspec.xml - ocaml + 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ı - zlib - ncurses - libX11 + libpaper - /usr/bin/ - /usr/lib/ - /usr/share/doc/ - /usr/share/man/ + /usr/include + /usr/share/man/man3 2016-06-09 - 4.02.1 + 1.1.24 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-04-04 - 4.02.1 + 2016-03-23 + 1.1.24 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 018 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-04 + 018 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 1.0.29 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-03-04 + 1.0.29 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 5.100.138 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-17 + 5.100.138 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 5.33 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-16 + 5.33 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-12 + 1.3 + First release + Marcin Bojara + marcin@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 + + + + + 2016-06-09 + 2.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 2.1.0 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 1.2.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.5.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-31 + 0.5.4 + First release + Alihan Öztürk + alihan@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 + scons + doxygen + + + 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 + + + + + 2016-06-10 + 2.2.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-28 + 2.2.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + libxml2-devel + 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 + + + + + 2016-06-09 + 1.0.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-24 + 1.0.11 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 2.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-13 + 2.2.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libisofs + http://libburnia-project.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + hardware.optical + A library for creating ISO disc images + ISO kalıbı oluşturmak için gerekli kitaplıklar + libisofs is a library that handles creating ISO disc image files. It is intended to work together with libburn to write these images to discs + libisofs, ISO kalıbını oluşturmak için gerekli kitaplıkları içeren pakettir. Bu paket ayrıca Libburn'u kullanarak, ISO kalıplarını CD, DVD veya benzeri disklere yazdırmanıza olanağı sağlar. + http://files.libburnia-project.org/releases/libisofs-1.4.2.tar.gz + + acl-devel + zlib-devel + + hardware/disk/libisofs/pspec.xml + + + libisofs + + acl + zlib + + + /usr/lib + /usr/share/doc + + + + libisofs-devel + Development files for libisofs + libisofs için geliştirme dosyaları + + libisofs + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/libisofs/Tutorial + /usr/share/doc/libisofs/checksums.txt + /usr/share/doc/libisofs/susp_aaip_2_0.txt + /usr/share/doc/libisofs/susp_aaip_isofs_names.txt + /usr/share/doc/libisofs/zisofs_format.txt + + + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 1.4.2 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 4.2 + First release + Varol Maksutoğlu + waroi@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 + + libutil-linux-devel + xfsprogs + + + /usr/include + /usr/share/man/man3 + + + + + 2016-06-09 + 3.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-04 + 3.2.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 4.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-20 + 4.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-08-09 + 3.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + exfat-utils + http://code.google.com/p/exfat + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + app:gui + hardware.disk + Utilities for exFAT file system + This project aims to provide a full-featured exFAT file system implementation for GNU/Linux and other Unix-like systems as a FUSE module and a set of utilities. + https://github.com/relan/exfat/releases/download/v1.2.3/exfat-utils-1.2.3.tar.gz + hardware/disk/exfat-utils/pspec.xml + + + exfat-utils + + /usr/share/man + /usr/share/doc + /usr/bin + /usr/sbin + + + + + 2016-06-09 + 1.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 1.2.3 + First release + Stefan Gronewold(groni) + groni@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 + + libutil-linux-devel + + hardware/disk/reiserfsprogs/pspec.xml + + + reiserfsprogs + + /sbin + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 3.6.24 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-13 + 3.6.24 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -80853,395 +84071,62 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - lua - http://www.lua.org + fsarchiver + http://www.fsarchiver.org/Main_Page - PisiLinux Community - admins@pisilinux.org + marcin bojara + marcin@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.3.3.tar.gz - - lua.pc - + GPLv2 + app:console + hardware.disk + Sicherung und Wiederherstellung von Dateisystemen + Safe and flexible file-system backup/deployment tool. + Bezpieczne i elastyczne narzędzie do tworzenia kopii zapasowej systemu plików. + fsarchiver ist ein Konsolenprogramm zum Sichern und Wiederherstellen von Partitionen und Verzeichnissen. + FSArchiver is a system tool that allows you to save the contents of a file-system to a compressed archive file. + FSArchiver jest narzędziem systemowym, które pozwala na zapisanie zawartości systemu plików w skompresowanym pliku. + https://github.com/fdupoux/fsarchiver/releases/download/0.6.21/fsarchiver-0.6.21.tar.gz - readline-devel + lzo-devel + xz-devel + zlib-devel + bzip2 + e2fsprogs-devel + libgcrypt-devel + attr-devel + libutil-linux-devel - - liblua.so.patch - - programming/language/lua/pspec.xml + hardware/disk/fsarchiver/pspec.xml - lua + fsarchiver - readline + lzo + xz + zlib + bzip2 + e2fsprogs + libgcrypt + libutil-linux - /usr/lib + /usr/sbin /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 - - - - - 2016-06-14 - 5.3.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-03 - 5.2.4 - First release - Vedat Demir - vedat@pisilinux.org - - - - - - python-colorama - https://pypi.python.org/pypi/colorama - - Alihan Öztürk - alihan@pisilinux.org - - BSD - app:console - programming.language.python - Cross-platform colored terminal text. - Python API for cross-platform colored terminal text. - https://pypi.python.org/packages/f0/d0/21c6449df0ca9da74859edc40208b3a57df9aca7323118c913e58d442030/colorama-0.3.7.tar.gz - - python-devel - - programming/language/python/python-colorama/pspec.xml - - - python-colorama - Cross-platform colored terminal text. - - python - - - /usr/lib - /usr/share/doc 2016-06-09 - 0.3.7 + 0.6.21 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-06-06 - 0.3.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-websocket-client - https://github.com/liris/websocket-client - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - programming.language.python - WebSocket client library for Python - websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions. - https://github.com/liris/websocket-client/archive/v0.37.0.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-websocket-client/pspec.xml - - - python-websocket-client - WebSocket client library for Python - - python - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 0.37.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 0.37.0 - First release - Alihan Öztürk - alihan@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 - - python-devel - - programming/language/python/python-six/pspec.xml - - - python-six - - python - - - /usr/lib - /usr/share/doc - - - - - 2016-06-10 - 1.9.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.9.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-05-08 - 1.9.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - python-devel - - programming/language/python/python-nose/pspec.xml - - - python-nose - - python - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - - 2016-06-09 - 1.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-04 - 1.3.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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.9.1.tar.gz - - python-devel - - programming/language/python/python-requests/pspec.xml - - - python-requests - - python-devel - - - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 2.9.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 2.9.1 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 2.9.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-imaging - http://www.pythonware.com/products/pil/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.python - Python Imaging Library (PIL) - Python Görüntü İşleme Kitaplığı - The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities. - La librería Python Imaging Library (PIL) facilita el procesamiento de imágenes desde Python. Esta librería soporta muchos formatos de archivos y provee potentes facilidades de procesamiento de gráficos. - http://effbot.org/media/downloads/Imaging-1.1.7.tar.gz - - sane-backends-devel - libjpeg-turbo-devel - python-devel - - - local_only_initial_value.patch - gentoo-imaging-sane.patch - anka-imaging-tiffendian.patch - gentoo-imaging-giftrans.patch - - programming/language/python/python-imaging/pspec.xml - - - python-imaging - - tcltk - tcl - lcms - libjpeg-turbo - sane-backends - xdg-utils - - - /usr/bin - /usr/lib - /usr/include - /usr/share/doc - - - - - 2016-06-09 - 1.1.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-08 - 1.1.7 + 2016-01-27 + 0.6.21 First release Stefan Gronewold groni@pisilinux.org @@ -81250,533 +84135,1851 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - python-smbc - http://cyberelk.net/tim/software/pysmbc + ntfs-3g + http://www.tuxera.com/community/ntfs-3g-download PisiLinux Community admins@pisilinux.org - GPLv2 + GPLv2+ + LGPLv2+ library - programming.language.python - Python interface to the libsmbclient library - libsmbclient kitaplığı için Python arayüzü - python-smbc is a Python binding for the libsmbclient library. - python-smbc, libsmbclient kitaplığı için bir Python bağlayıcısıdır. - http://cyberelk.net/tim/data/pysmbc/pysmbc-1.0.13.tar.bz2 - - samba-devel - python-devel - - programming/language/python/python-smbc/pspec.xml - - - python-smbc - - samba - python - - - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 1.0.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 1.0.13 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - notify-python - http://www.galago-project.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2 app:console - programming.language.python - Python bindings for libnotify - libnotify'ın Python bağlayıcıları - Galago est un framework (cadre de développement) de présence bureautique, conçu pour transmettre des informations de présences entre programmes. Pour faire simple, il recense les présents et agrège les informations concernant leur état depuis un logiciel de messagerie instantannée (tel que gaim) ou de programmes similaires et permet à d'autre logiciels (tels que Evolution) d'avoir accès à cette information. - notify-python are Python bindings for the Galago project's notification library libnotify. -  Galago programlar arası duruş/görünüm bilgisini iletecek şekilde dizayn edilmiş bir masaüstü görüntü çerçevesidir. Daha basitçe açıklamak gerekirse, bir anlık ileti programından (gaim gibi) veya benzeri başka programlardan kimlerin çevrimiçi, boş/uzakta olduğu bilgisini alıp diğer programların (örn. Evolution) bu bilgiyi kullanmasını sağlar. - Galego es un entorno de presencia de escritorio, diseñado para transmitir informaciones entre programas. En términos sencillos: Puede tomar información sobre quien está en linea, y el estado ausente/inactivo de un programa de mensajería instantánea, como pidgin o similar, y pasar la información a otros programas (ejemplo Evolution) para hacer uso de ello. - http://galago-project.org/files/releases/source/notify-python/notify-python-0.1.1.tar.gz + 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. + https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2016.2.22.tgz - libnotify-devel - python-devel - python-gtk-devel - gtk2-devel + fuse-devel + libutil-linux-devel - - link-with-python.patch - notify-python-0.1.1-fix-GTK-symbols.patch - libnotify0.7.patch - - programming/language/python/notify-python/pspec.xml + hardware/disk/ntfs-3g/pspec.xml - notify-python + ntfs-3g - atk - gtk2 - cairo - glib2 - pango - python - freetype - libnotify - fontconfig - gdk-pixbuf + fuse + /bin + /sbin + /lib /usr/lib - /usr/lib/pkgconfig - /usr/share/pygtk/2.0/defs - - - - - 2016-06-09 - 0.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 0.1.1 - First release - Alihan Öztürk - alihan@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 - python-cairo-devel - glib2-devel - gobject-introspection-devel - - - pygobject-2.16.1-fixdetection.patch - pygobject-2.28.6-fixes-1.patch - - programming/language/python/python-pygobject/pspec.xml - - - python-pygobject - - glib2 - gobject-introspection - python-cairo - libffi - - - /usr/lib - /usr/share/doc - - - - python-pygobject-devel - pygobject development files - pygobject geliştirme dosyaları - - python-pygobject - gobject-introspection-devel - glib2-devel - libffi-devel - - - /usr/bin/pygobject-codegen-2.0 /usr/include /usr/lib/pkgconfig - /usr/share/pygobject + /usr/share/hal/fdi + /usr/share/doc/ntfs-3g + /usr/share/man/man8/mount* + /usr/share/man/man8/ntfs-3g* - python-pygobject-docs - API documents for pygobject - pygobject için API dökümanları - data:doc - - /usr/share/gtk-doc - - - - - 2016-06-09 - 2.28.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-04 - 2.28.6 - First release - PisiLinux Community - admins@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://github.com/pypa/pip/archive/8.1.2.tar.gz - - python-setuptools - python-devel - - programming/language/python/pip/pspec.xml - - - pip + 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 - python-setuptools + ntfs-3g + fuse + libutil-linux + /sbin/mkfs.ntfs /usr/bin - /usr/lib - /usr/share/doc + /usr/sbin + /usr/share/doc/ntfsprogs + /usr/share/man/man8 - - 2016-06-18 - 8.1.2 + + 2016-06-27 + 2016.2.22 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2015.3.14 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-06-06 - 8.1.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-30 - 8.1.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - 2016-04-28 - 8.1.1 + 2016-01-30 + 2015.3.14 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - python-cups - http://cyberelk.net/tim/software/pycups + dosfstools + http://www.daniel-baumann.ch/software/dosfstools/ 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 + 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. + https://github.com/dosfstools/dosfstools/archive/v3.0.26.tar.gz + hardware/disk/dosfstools/pspec.xml - python-cups - - cups - + dosfstools - /usr/lib + /sbin /usr/share/doc + /usr/share/man - 2016-06-09 - 1.9.72 + 2016-06-10 + 3.0.26 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-06-21 - 1.9.72 + 2014-04-03 + 3.0.26 First release - Hakan Yıldız - hknyldz93@gmail.com + Marcin Bojara + marcin@pisilinux.org - pyqtermwidget5 - http://gitorious.org/qtermwidget + smartmontools + http://smartmontools.sourceforge.net/ - Harun Gültekin - hrngultekin@gmail.com + PisiLinux Community + admins@pisilinux.org - 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 + GPLv2+ + app:console + hardware.disk + Programs to control and monitor storage systems using the Self-Monitoring + Hard disk kontrol ve durumunu gösteren programlar + The smartmontools package contains two utility programs (smartctl and smartd) to control and monitor storage systems using the Self-Monitoring, Analysis and Reporting Technology System (SMART) built into most modern ATA and SCSI hard disks. + smartctl ve smartd adlı ATA ve SCSI diskleri kontrol ve durumlarını gösterir iki program. + mirrors://sourceforge/smartmontools/6.4/smartmontools-6.4.tar.gz - python-devel - python-qt5-devel - python-sip - qt5-base-devel - qtermwidget5-devel + libutil-linux-devel + libcap-ng-devel - - py2config.patch - - programming/language/python/pyqtermwidget5/pspec.xml + hardware/disk/smartmontools/pspec.xml - pyqtermwidget5 - Python binding of terminal widget for Qt + smartmontools libgcc - qt5-base - qtermwidget5 + libcap-ng - /usr/bin - /usr/lib - /usr/share + /etc + /lib/systemd/system + /usr/sbin /usr/share/doc + /usr/share/man + /usr/share/smartmontools + + System.Service + + + smartmontools.sysconf + - + 2016-06-09 - 0.1 + 6.4 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-28 - 0.1 - Rebuild - Harun Gültekin - hrngultekin@gmail.com - - 2014-06-19 - 0.1 + 2016-01-26 + 6.4 First release - Harun Gültekin - hrngultekin@gmail.com + Stefan Gronewold + groni@pisilinux.org - python-mako - http://www.makotemplates.org/ + dmapi + http://oss.sgi.com/projects/xfs/ PisiLinux Community admins@pisilinux.org - MIT + LGPLv2.1 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 + 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 - python-setuptools + xfsprogs-devel + libutil-linux-devel - programming/language/python/python-mako/pspec.xml + hardware/disk/dmapi/pspec.xml - python-mako + dmapi - python-beaker - python-MarkupSafe + xfsprogs - /usr/bin + /lib /usr/lib /usr/share/doc + /usr/share/man - python-mako-docs - python-mako için belgelendirme dosyaları + dmapi-devel + Development files for dmapi + dmapi için geliştirme dosyaları - python-mako + dmapi - /usr/share/doc/*/html - /usr/share/doc/*/build - /usr/share/doc/*/examples + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 2016-06-09 - 0.9.1 + 2.2.12 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-04-16 - 0.9.1 + 2014-05-22 + 2.2.12 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Kamil Atlı + suvarice@gmail.com - python-PyYAML - http://pyyaml.org/wiki/PyYAML + fuse-exfat + http://code.google.com/p/exfat/ + + PisiLinux Community + admin@pisilinux.org + + GPLv3 + app + hardware.disk + exFAT filesystem fuse module + exFAT dosya sistemi bağlamak için araçlar + exFAT filesystem fuse module + exFAT dosya sistemi bağlamak için araçlar + https://github.com/relan/exfat/releases/download/v1.2.3/fuse-exfat-1.2.3.tar.gz + + exfat-utils + fuse-devel + + hardware/disk/fuse-exfat/pspec.xml + + + fuse-exfat + + fuse + exfat-utils + + + /usr/bin + /usr/sbin + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 1.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 1.2.3 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + dmraid + http://people.redhat.com/~heinzm/sw/dmraid 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 + 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 - libyaml-devel - python-devel + device-mapper-event-devel + device-mapper-devel - programming/language/python/python-PyYAML/pspec.xml + + 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 - python-PyYAML + dmraid - libyaml + 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 + + + + + 2016-06-09 + 1.0.0_rc16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-17 + 1.0.0_rc16 + 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.6.0 + + 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/ + + + + + 2016-06-09 + 0.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-31 + 0.6.0 + First release + Ali Algul + alialgul@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 + libgudev-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 + libgudev + 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 + + + + + 2016-06-09 + 2.1.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 2.1.6 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + sshfs + http://fuse.sourceforge.net/sshfs.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + A filesystem client based on the SSH FTP + SSH FTP alanı dosyasistemi + sshfs allows mounting remote SSH accounts as a filesystem. + sshfs, SSH dosya aktarım protokülünü kullanarak bir dosyasistemi oluşturmanıza olanak verir. Böylece, uzak sistemdeki SSH FTP alanınızı diskinizin bir parçasıymış gibi kullanabilirsiniz. + https://github.com/libfuse/sshfs/releases/download/sshfs_2_5/sshfs-fuse-2.5.tar.gz + + fuse-devel + glib2-devel + + hardware/disk/sshfs/pspec.xml + + + sshfs + + fuse + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2016-06-09 + 2.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 2.5 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-09 + 9.43 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 9.43 + 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 2016-06-09 - 3.11 + 0.19 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-07-27 - 3.11 + 2014-05-25 + 0.19 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Kamil Atlı + suvarice@gmail.com - python-udev - http://packages.python.org/pyudev + 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 + + + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-28 + 1.0.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.41 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-19 + 1.41 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 20140122 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-06 + 20140122 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.1.0.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 + + + + + 2016-06-09 + 1.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 1.1.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.4.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-31 + 1.4.1 + First release + PisiLinux Community + 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://dev.gentoo.org/~bircoph/distfiles/suspend-1.0_p20120915.tar.xz + + lzo-devel + pciutils-devel + libx86-devel + libgcrypt-devel + + + suspend-1.0_p20150810.patch.xz + + hardware/powermanagement/suspend/pspec.xml + + + suspend + + lzo + libx86 + pciutils + + + /etc/suspend.conf + /etc/suspend.key + /usr/sbin + /usr/share/doc + /usr/share/man + + + suse/configure-suspend-encryption.sh + + + + + 2016-06-09 + 1.0_p20120915 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.0_p20120915 + First release + Varol Maksutoğlu + waroi@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://pkgs.fedoraproject.org/repo/pkgs/lm_sensors/lm_sensors-3.4.0.tar.bz2/c03675ae9d43d60322110c679416901a/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 + + + + + 2016-06-09 + 3.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-02 + 3.4.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.99.4.tar.xz + + tr.po + + + dbus-devel + glib2-devel + polkit-devel + dbus-glib-devel + libgudev-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 + libgudev + 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/gir-1.0 + /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 + libgudev-devel + libplist-devel + libimobiledevice-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 0.99.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-18 + 0.99.4 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-01-26 + 0.9.23 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.0_20130117 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-05 + 0.0_20130117 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 1.1 + First release + PisiLinux Community + 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 + python3-devel + + 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 + + + + + 2016-06-09 + 0.9.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 0.9.3 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-05-08 + 0.9.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + libmtdev + + + /usr/lib32 + + + + + 2016-06-09 + 1.1.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.5 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libmtp + http://libmtp.sourceforge.net/ 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 + 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.1.11/libmtp-1.1.11.tar.gz - python-setuptools - eudev-devel + doxygen + libusb-devel + libgcrypt-devel - programming/language/python/python-udev/pspec.xml + hardware/misc/libmtp/pspec.xml - python-udev + libmtp + + libusb + libgcrypt + - /usr/lib + /usr/bin + /usr/lib/libmtp.* + /lib/udev + /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 + + 2016-06-09 - 0.16.1 + 1.1.11 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-02 - 0.16.1 + 2016-04-10 + 1.1.11 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 1.1 + 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.3.0/libsmbios-2.3.0.tar.bz2 + + libxml2-devel + chrpath + doxygen + + 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 + + + + + 2016-06-09 + 2.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-01 + 2.3.0 + First release + Stefan Gronewold(groni) + groni@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.2.tar.bz2 + + cmake + doxygen + libusb-devel + boost-devel + python-devel + swig + + + fix-udev-group_and_usb_name.patch + + hardware/misc/libftdi/pspec.xml + + + libftdi + + libusb + libgcc + + + /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 + + + + + 2016-06-09 + 1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 1.2 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 1.20.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 1.20.7 First release Serdar Soytetir kaptan@pisilinux.org @@ -81785,739 +85988,225 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - python-pillow - http://python-pillow.org/ + dkms + http://linux.dell.com/dkms + + Ertan Güven + ertan@pisilinux.org + + 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 + + kernel-headers + + hardware/misc/dkms/pspec.xml + + + dkms + + kernel-headers + + + /etc + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/man + /var/lib + + + + + 2016-06-09 + 2.2.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-01 + 2.2.0.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libieee1284 + http://cyberelk.net/tim/libieee1284/ PisiLinux Community admins@pisilinux.org - as-is + GPLv2 library - programming.language.python - PIL is the Python Imaging Library. - The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities. - https://github.com/python-pillow/Pillow/archive/3.1.0.tar.gz + 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 - python3-tk python-devel - lcms-devel - python-setuptools - python3-setuptools - python3-qt5-devel - python-qt5-devel - webp-devel - tcltk-devel - tcl-devel + chrpath + + + 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 + + + + + 2016-06-09 + 0.2.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-10 + 0.2.11 + First release + Varol Maksutoğlu + waroi@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 - sane-backends-devel - libjpeg-turbo-devel + libexif-devel + libusb-devel - programming/language/python/python-pillow/pspec.xml + hardware/misc/libgphoto2/pspec.xml - python-pillow + libgphoto2 - python3-tk - python - lcms - python-setuptools - python3-setuptools - python3-qt5 - python-qt5 - webp - tcltk - tcl - sane-backends - libjpeg-turbo - xdg-utils - - - /usr/bin - /usr/lib - /usr/include - /usr/share/doc - - - - - 2016-06-18 - 3.1.0 - Version bump. - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-29 - 1.8.1 - First release - Marcin Bojara - marcin@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 - python-MarkupSafe - - - 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 - - - - - 2016-06-09 - 1.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-27 - 1.3.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - http://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 - - - - - 2016-06-09 - 0.53 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 0.53 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 3.10.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-10 - 3.10.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python-argparse - https://pypi.python.org/pypi/argparse - - Alihan Öztürk - alihan@pisilinux.org - - apache - app:console - programming.language.python - Python command-line parsing library - The argparse module makes it easy to write user friendly command line interfaces. - https://pypi.python.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-argparse/pspec.xml - - - python-argparse - Python command-line parsing library - - python - - - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.4.0 - First release - Alihan Öztürk - alihan@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.6/PyQt5_gpl-5.6.tar.gz - - dbus-devel - dbus-python-common - python-devel - 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 - - - PyQt5_gpl-5.6-dbus_ftbfs.patch - - 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 - python-sip - - - /usr/bin/py2uic5 - /usr/lib/python2.7/site-packages - /usr/lib/qt5/plugins/PyQt5/libpy2qt5qmlplugin.so - /usr/share/qt5/qsci/api/python/Py2Qt5.api - /usr/bin/py2rcc5 - /usr/bin/py2lupdate5 - - - - python-qt5-devel - Development files for python3-qt5 - - libgcc - qt5-base - python-qt5 - - - /usr/share/sip/Py2Qt5 - - - - - 2016-06-09 - 5.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-07 - 5.6 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-25 - 5.6 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 5.5.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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* - - - - - 2016-06-09 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 1.2.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 1.6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-11-04 - 1.6.4 - First release - Erdinç Gültekin - 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 - python-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 - - - - - 2016-06-09 - 0.10.22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-21 - 0.10.22 - First release - Stefan Gronewold (groni) - groni@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 + 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 - python-lxml-docs - API documentation of python-lxml - python-lxml paketine ait API belgeleri + libgphoto2-devel + Development files for libgphoto2 + libgphoto2 için geliştirme dosyaları - python-lxml + libexif-devel + libgphoto2 - /usr/share/doc + /usr/bin/gphoto2-config* + /usr/bin/gphoto2-port-config + /usr/include/gphoto2 + /usr/lib/pkgconfig + /usr/share/man/man3 2016-06-09 - 3.3.5 + 2.5.8 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-07-05 - 3.3.5 - First release - Vedat Demir - vedat@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 - - - - - 2016-06-09 - 4.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-04 - 4.0.2 + 2015-08-02 + 2.5.8 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -82526,1420 +86215,76 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - python-MarkupSafe - http://pypi.python.org/pypi/MarkupSafe + docker + http://docker.io - PisiLinux Community - admins@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - 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 - - - - - 2016-06-09 - 0.23 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-29 - 0.23 - 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 - - - - - 2016-06-09 - 1.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-01 - 1.10.0 - First release - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - - - - sip - http://www.riverbankcomputing.co.uk/sip - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 + Apache 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.18.tar.gz + 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.10.3.tar.gz - qt5-base-devel - python-devel + git + golang + btrfs-progs-devel + device-mapper-devel + sqlite-devel - programming/language/python/sip/pspec.xml + hardware/virtualization/docker/pspec.xml - python-sip - Python 2.x SIP bindings for C and C++ libraries - - libgcc - python - - - /usr/bin - /usr/lib - /usr/include - - - - - 2016-06-09 - 4.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 4.18 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-20 - 4.18 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 4.16.9 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-docker-py - https://github.com/dotcloud/docker-py - - Alihan Öztürk - alihan@pisilinux.org - - apache - app:console - programming.language.python - Python client for Docker. - A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. - https://github.com/docker/docker-py/archive/1.8.1.tar.gz - - python-devel - python-setuptools - python-websocket-client - python-six - python-requests - - programming/language/python/python-docker-py/pspec.xml - - - python-docker-py - Python client for Docker. - - python - python-websocket-client - python-six - python-requests - - - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.8.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-pygobject3 - 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.acc.umu.se/pub/GNOME/sources/pygobject/3.18/pygobject-3.18.2.tar.xz - - libffi-devel - python-devel - python3-devel - python-cairo-devel - python3-cairo-devel - gobject-introspection-devel - glib2-devel - - programming/language/python/python-pygobject3/pspec.xml - - - python-pygobject3 - python2 için pygobject3 - - cairo - glib2 - libffi - python-cairo - gobject-introspection - - - /usr/share/doc - /usr/lib/python2.7 - /usr/lib/libpyglib-gi-2.0-python2.7.so* - - - - python3-pygobject3 - python3 için pygobject3 - python3 için pygobject geliştirme dosyaları - - cairo - glib2 - libffi - python3-cairo - gobject-introspection - - - /usr/lib/python3.4 - /usr/lib/libpyglib-gi-2.0-python3.4.so* - - - - python-pygobject3-devel - pygobject development files - pygobject geliştirme dosyaları - - python-pygobject3 - gobject-introspection-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/pygobject - - - - - 2016-06-09 - 3.18.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 3.18.2 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-08 - 3.18.2 - First release - Alihan Öztürk - alihan@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-devel - - - fix-leaks-of-pango-objects.patch - python27.patch - - programming/language/python/python-gtk/pspec.xml - - - python-gtk - - atk - gtk2 - cairo - glib2 - pango - libglade - 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 - libglade-devel - - - /usr/bin/pygtk-codegen-2.0 - /usr/include - /usr/lib/pkgconfig - /usr/share/pygtk - - - - - 2016-06-09 - 2.24.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-04 - 2.24.0 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 0.15.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 0.15.19 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-Unidecode - http://pypi.python.org/pypi/Unidecode/ - - PisiLinux Community - admins@pisilinux.org - - Artistic - GPLv2 - library - programming.language.python - US-ASCII transliterations of Unicode text - Unicode karakterlerinin US-ASCII harf çevirileri - python-Unidecode provides ASCII transliterations of Unicode text. This is a Python port of Text::Unidecode Perl module. - python-Unidecode, Unicode karakterlerinin US-ASCII harf çevirilerini sağlar. Text::Unidecode Perl modülünün Python diliyle yazılmış halidir. - https://pypi.python.org/packages/source/U/Unidecode/Unidecode-0.04.18.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-Unidecode/pspec.xml - - - python-Unidecode - - python - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 0.04.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 0.04.18 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-backports-ssl-match-hostname - https://pypi.python.org/pypi/backports.ssl_match_hostname - - Alihan Öztürk - alihan@pisilinux.org - - PSF-2.2 - app - programming.language.python - The ssl.match_hostname() function from Python 3.4 - The ssl.match_hostname() function from Python 3.4 - https://pypi.python.org/packages/3a/15/f9e48bfd2b971ade10ad0c03babab057791c260b05322cbd3f47e27be108/backports.ssl_match_hostname-3.4.0.2.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-backports-ssl-match-hostname/pspec.xml - - - python-backports-ssl-match-hostname - The ssl.match_hostname() function from Python 3.4 - - python - - - /usr/lib/python* - /usr/share/doc - - - - - 2016-06-15 - 3.4.0.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-mutagen - http://code.google.com/p/mutagen - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - An audio tag editing library - Mutagen is an audio metadata tag reader and writer implemented in pure Python. - https://bitbucket.org/lazka/mutagen/downloads/mutagen-1.32.tar.gz - - python-devel - python3-devel - - programming/language/python/python-mutagen/pspec.xml - - - python-mutagen - - python - python3 - - - /usr/lib - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2016-06-18 - 1.32 - Version bump. - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 1.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-12-07 - 1.6 - First release - Burak Fazıl Ertürk - burakerturk@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 - - - - - 2016-06-09 - 2.7.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-27 - 2.7.2 - 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 - - - - - 2016-06-09 - 0.4.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-12-07 - 0.4.4 - First release - Burak Fazıl Ertürk - burakerturk@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.6.2.tar.gz - https://dev.gentoo.org/~williamh/dist/go-linux-amd64-bootstrap.tbz - programming/language/go/pspec.xml - - - golang + docker git - - - /usr/bin/ - /usr/lib/ - /usr/share/ - /etc - - - go.sh - - - - - 2016-06-09 - 1.6.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-07 - 1.6.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-01-09 - 1.4.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python3-docker-py - https://github.com/dotcloud/docker-py - - Alihan Öztürk - alihan@pisilinux.org - - apache - app:console - programming.language.python3 - Python client for Docker. - A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. - https://github.com/docker/docker-py/archive/1.8.1.tar.gz - - python3-devel - python3-setuptools - python3-websocket-client - python3-six - python3-requests - - programming/language/python3/python3-docker-py/pspec.xml - - - python3-docker-py - Python client for Docker. - - python3 - python3-websocket-client - python3-six - python3-requests - - - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.8.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-colorama - https://pypi.python.org/pypi/colorama - - Alihan Öztürk - alihan@pisilinux.org - - BSD - app:console - programming.language.python3 - Cross-platform colored terminal text. - Python API for cross-platform colored terminal text. - https://pypi.python.org/packages/f0/d0/21c6449df0ca9da74859edc40208b3a57df9aca7323118c913e58d442030/colorama-0.3.7.tar.gz - - python3-devel - - programming/language/python3/python3-colorama/pspec.xml - - - python3-colorama - Cross-platform colored terminal text. - - python3 - - - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 0.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 0.3.7 - First release - Alihan Öztürk - alihan@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 - - - dont-make-libpython-readonly.patch - - programming/language/python3/python3/pspec.xml - - - python3 - - xz - gdbm - zlib - bzip2 - expat - libffi sqlite - ncurses - openssl - readline + device-mapper + btrfs-progs + bridge-utils + iproute2 + iptables - /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 + /etc + /usr/bin/ + /usr/lib/docker + /usr/share/ + /lib/udev/rules.d + + System.Service + System.Package + - python-logo.png - idle.desktop + cgroupfs-mount + cgroupfs-umount + docker.confd - 2016-06-09 - 3.4.3 + 2016-06-28 + 1.10.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-05-08 - 3.4.3 - Rebuild. + 2016-05-25 + 1.10.3 + Release bump. Ertuğrul Erata ertugrulerata@gmail.com - 2015-08-13 - 3.4.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - python3-cairo - http://cairographics.org/pycairo - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python3 - wrapper (version enrobée) Python3 de la librairie de graphisme vectoriel cairo. - Python3 wrapper for cairo graphics library - Cairo vektörel grafik kitaplığı için Python3 bağlayıcıları - Pycairo is set of Python3 bindings for the cairo graphics library. - http://cairographics.org/releases/pycairo-1.10.0.tar.bz2 - - python3-devel - cairo-devel - - - pycairo-1.10.0-waf-python3.4.patch - - programming/language/python3/python3-cairo/pspec.xml - - - python3-cairo - - python3 - cairo - - - /usr/lib - /usr/share/doc - - - - python3-cairo-devel - Development files for python3-cairo - python3-cairo için geliştirme dosyaları - - python3-cairo - cairo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 1.10.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-six - http://pypi.python.org/pypi/six/ - - Alihan Öztürk - alihan@pisilinux.org - - MIT - app:console - programming.language.python3 - 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. - python3-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/python3/python3-six/pspec.xml - - - python3-six - - python3 - - - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 1.9.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.9.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-05-08 - 1.9.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python3-sip - http://www.riverbankcomputing.co.uk/sip - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:console - programming.language.python3 - SIP is a tool for generating bindings for C++ classes so that they can be used by Python3 - C ve C++ kütüphaneleri için python bağlayıcıları oluşturan bir araç - Generator powiązań Pythona z bibliotekami klas C++ - SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python3. It takes any C or C++ libraries and converts them into Python extension modules. - SIP3 C ve C++ kütüphanelerini Python'da kullanabilmek için bağlayıcılar oluşturan bir araçtır. Herhangi bir C veya C++ kütüphanesini Python genişletme modülüne dönüştürür. - Generuje powiązania Pythona z bibliotekami klas C++ ze zbioru plików ze specyfikacjami klas. Obsługiwany jest Python 2 i 3. - mirrors://sourceforge/pyqt/sip-4.18.tar.gz - - qt5-base-devel - python3-devel - - programming/language/python3/python3-sip/pspec.xml - - - python3-sip - Python 3.x SIP bindings for C and C++ libraries - - libgcc - python3 - - - /usr/bin - /usr/lib - /usr/include - /usr/share/licenses - - - - - 2016-06-18 - 4.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-11 - 4.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 4.18 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-20 - 4.18 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 4.16.9 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-setuptools - http://pypi.python.org/pypi/setuptools - - PisiLinux Community - admins@pisilinux.org - - PSF-2.2 - library - programming.language.python3 - 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. - https://pypi.python.org/packages/source/s/setuptools/setuptools-19.6.1.tar.gz - - python3-devel - - programming/language/python3/python3-setuptools/pspec.xml - - - python3-setuptools - - /usr/bin - /usr/lib/python3* - - - - - 2016-06-09 - 19.6.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 19.6.1 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-26 - 19.6.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2016-05-26 - 19.6.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2016-05-26 - 19.6.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2016-05-26 - 19.6.1 + 2016-05-25 + 1.10.3 First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - python3-psutil - https://github.com/giampaolo/psutil - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - A cross-platform process utilities module for Python - Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülü - python3-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat. - python3-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır. - https://github.com/giampaolo/psutil/archive/release-4.0.0.tar.gz - - python3-devel - - programming/language/python3/python3-psutil/pspec.xml - - - python3-psutil - - python3 - - - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 4.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 4.0.0 - First release Ertuğrul Erata ertugrulerata@gmail.com @@ -83947,5253 +86292,955 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - python3-argparse - https://pypi.python.org/pypi/argparse + virt-wrapper + http://www.pisilinux.org - Alihan Öztürk - alihan@pisilinux.org + PisiLinux Community + admins@pisilinux.org - apache + GPLv3 app:console - programming.language.python3 - Python command-line parsing library - The argparse module makes it easy to write user friendly command line interfaces. - https://pypi.python.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-argparse/pspec.xml + 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 - python3-argparse - Python command-line parsing library - - python3 - + virt-wrapper - /usr/lib + /usr/libexec + /usr/share/locale /usr/share/doc 2016-06-09 - 1.4.0 + 0.1.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-06-06 - 1.4.0 + 2014-11-23 + 0.1.1 First release - Alihan Öztürk - alihan@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - python3-nose - http://somethingaboutorange.com/mrl/projects/nose/ + libvirt + http://www.libvirt.org/ PisiLinux Community admins@pisilinux.org LGPLv2.1 - library app:console - programming.language.python3 - 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. - python3-nose alternatif test tanıtma ve keşif kitaplığı. - https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz - - python3-devel - - programming/language/python3/python3-nose/pspec.xml - - - python3-nose - - python3 - - - /usr/lib - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 1.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.3.7 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-04 - 1.3.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gonullu - https://github.com/PisiLinuxNew/gonullu - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:console - programming.language.python3 - Volunteer application is developed to compile the packages for Pisi distributions - Gonullu uygulamasi, pisi linux dağıtımının paketlerini derlemek üzere hazırlanmıştır. - Application build the packages waiting at queue of build system as PISI packages using docker images and again, sent them to build system. - Uygulama docker imajlarını kullanarak, derleme sisteminin kuyruğundan bekleyen paketleri pisi paketi haline getirir ve derleme sistemine gönderir. - https://github.com/PisiLinuxNew/gonullu/archive/v1.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/gonullu/pspec.xml - - - gonullu - - python3 - python3-argparse - python3-colorama - python3-docker-py - python3-psutil - python3-requests - python3-six - python3-sip - python3-backports-ssl-match-hostname - docker - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2016-06-14 - 1.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-websocket-client - https://github.com/liris/websocket-client - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - programming.language.python3 - WebSocket client library for Python - websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions. - https://github.com/liris/websocket-client/archive/v0.37.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-websocket-client/pspec.xml - - - python3-websocket-client - WebSocket client library for Python - - python3 - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 0.37.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 0.37.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-qt5 - http://www.riverbankcomputing.co.uk/software/pyqt - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - GPLv3 - library - programming.language.python3 - A set of Python bindings for the Qt 5.x Toolkit - 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. - mirrors://sourceforge/pyqt/PyQt5/PyQt-5.6/PyQt5_gpl-5.6.tar.gz + 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 - dbus-python3 - dbus-python-common - python3-devel - python3-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 - qt5-quickcontrols2-devel - qt5-script-devel - qt5-designer-devel - - - PyQt5_gpl-5.6-dbus_ftbfs.patch - - programming/language/python3/python3-qt5/pspec.xml - - - 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 - python3-sip - - - /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 - /usr/bin/pyrcc5 - /usr/bin/pylupdate5 - - - - python3-qt5-devel - Development files for python3-qt5 - - libgcc - qt5-base - python3-qt5 - - - /usr/share/sip/PyQt5 - - - - - 2016-06-09 - 5.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-07 - 5.6 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-25 - 5.6 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 5.5.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-requests - http://www.python-requests.org/ - - Ergün Salman - ergunsalman@hotmail.com - - MIT - programming.language.python3 - 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.9.1.tar.gz - - python3-devel - - programming/language/python3/python3-requests/pspec.xml - - - python3-requests - - python3 - - - /usr/lib - /usr/share/doc - - - - - 2016-06-09 - 2.9.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 2.9.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 2.9.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pip3 - https://pypi.python.org/pypi/pip - - Yusuf Aydemir - Yusuf.aydemir@istanbul.com - - MIT - programming.language.python3 - The PyPA recommended tool for installing Python packages - The PyPA recommended tool for installing Python packages - https://github.com/pypa/pip/archive/8.1.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/pip3/pspec.xml - - - pip3 - - python3 - python3-setuptools - - - /usr/bin/pip - /usr/bin/pip3* - /usr/lib/python3* - /usr/share/doc - - - - - 2016-06-18 - 8.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 8.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 8.1.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-30 - 8.1.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-04-28 - 8.1.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-backports-ssl-match-hostname - https://pypi.python.org/pypi/backports.ssl_match_hostname - - Alihan Öztürk - alihan@pisilinux.org - - PSF-2.2 - app - programming.language.python3 - The ssl.match_hostname() function from Python 3.4 - The ssl.match_hostname() function from Python 3.4 - https://pypi.python.org/packages/3a/15/f9e48bfd2b971ade10ad0c03babab057791c260b05322cbd3f47e27be108/backports.ssl_match_hostname-3.4.0.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-backports-ssl-match-hostname/pspec.xml - - - python3-backports-ssl-match-hostname - The ssl.match_hostname() function from Python 3.4 - - python3 - - - /usr/lib/python* - /usr/share/doc - - - - - 2016-06-15 - 3.4.0.2 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 8.6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-11 - 8.6.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 8.6.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-14 - 8.6.3 - First release - Yusuf Aydemir - yusuf.aydemir@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 - + util-linux + gnutls-devel + parted-devel + device-mapper-devel + libnl-devel + python-devel + cyrus-sasl-devel + libcap-ng-devel readline-devel - - lua-5.1-cflags.diff - lua-arch.patch - - programming/language/lua51/pspec.xml + hardware/virtualization/libvirt/pspec.xml - lua51 + libvirt + dbus + yajl + audit + eudev + libnl + netcf + gnutls + parted + libcap + libxml2 + numactl readline + libcap-ng + avahi-libs + cyrus-sasl + libpciaccess + device-mapper + libutil-linux - /usr/lib - /usr/share/man/man1 - /usr/share/doc + /etc + /usr/lib/tmpfiles.d/libvirt.conf /usr/bin - /sbin/lsmod - /usr/share/pixmaps - /usr/share/lua5.1 - /luac5.1.1/luac.1 - /lua5.1.1/lua.1 + /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 + - lua.png - lua.pc + tmpfiles.conf + libvirt.confd - lua51-devel - Development files for lua51 - lua51 için geliştirme dosyaları + libvirt-devel + Development files for libvirt + libvirt için geliştirme dosyaları - lua51 + libvirt - /usr/include + /usr/include/libvirt /usr/lib/pkgconfig 2016-06-09 - 5.1.5 + 1.3.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-05-09 - 5.1.5 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.28 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 0.28 - First release - Kamil Atlı - suvari@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://cpan.metacpan.org/authors/id/E/ET/ETHER/URI-1.71.tar.gz - - perl - - programming/language/perl/perl-URI/pspec.xml - - - perl-URI - - perl - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 1.71 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.71 - First release - Marcin Bojara - marcin@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.25.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 - - - - - 2016-06-09 - 0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 0.25 - First release - Kamil Atlı - suvari@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 - - - - - 2016-06-09 - 6.06 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.06 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-Test-Pod-Coverage - http://search.cpan.org/dist/Test-Pod-Coverage/ - - Pisi Linux Admins - admin@pisilinux.org - - as-is - library - programming.language.perl - Check for pod coverage in your distribution - Dağıtımınızın POD kapsamını kontrol eder - perl-Test-Pod-Coverage checks for pod coverage in your distribution. - perl-Test-Pod-Coverage dağıtımınızın POD kapsamını kontrol eden Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/Test-Pod-Coverage-1.10.tar.gz - - perl - perl-Pod-Coverage - - programming/language/perl/perl-Test-Pod-Coverage/pspec.xml - - - perl-Test-Pod-Coverage - - perl - perl-Pod-Coverage - - - /usr/lib - /usr/share/man - - - - - 2016-06-09 - 1.10 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.10 - 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.17024.tar.gz - - perl - perl-Module-Build - perl-Test-Pod - perl-Test-Pod-Coverage - - programming/language/perl/perl-Error/pspec.xml - - - perl-Error - - perl - perl-Module-Build - perl-Test-Pod - perl-Test-Pod-Coverage - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 0.17024 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.17024 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-HTML-Template - http://search.cpan.org/~wonko/HTML-Template/ - - 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 - perl-CGI - - programming/language/perl/perl-HTML-Template/pspec.xml - - - perl-HTML-Template - - perl - perl-CGI - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2016-06-09 - 2.95 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 2.95 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 3.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 3.20 - First release - Kamil Atlı - suvari@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. - https://cpan.metacpan.org/authors/id/E/ET/ETHER/libwww-perl-6.15.tar.gz - - perl - perl-URI - perl-NET-HTTP - perl-HTTP-Date - perl-HTML-Parser - perl-HTML-Tagset - perl-HTTP-Cookies - perl-HTTP-Daemon - perl-File-Listing - perl-HTTP-Message - perl-Encode-Locale - perl-HTTP-Negotiate - perl-LWP-Mediatypes - perl-WWW-Robotrules - perl-LWP-Protocol-https - - 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 - perl-LWP-Protocol-https - perl-HTTP-Cookies - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/perl - - - - - 2016-06-09 - 6.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 6.15 - First release - Alihan Öztürk - alihan@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. - https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Pod-1.51.tar.gz - - perl - - programming/language/perl/perl-Test-Pod/pspec.xml - - - perl-Test-Pod - - perl - - - /usr/lib - /usr/share/man - - - - - 2016-06-09 - 1.51 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.51 - First release - Kamil Atlı - suvari@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 - - - - - 2016-06-09 - 6.04 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.04 - First release - Marcin Bojara - marcin@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-2.024.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 - - - - - 2016-06-09 - 2.024 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 2.024 - First release - Kamil Atlı - suvari@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 - - - - - 2016-06-09 - 1.49 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-15 - 1.49 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 6.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.02 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-IO-String - http://search.cpan.org/dist/IO-String/ - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - IO::File interface for in-core strings in Perl - Perl için çekirdek içi metinler için bir G/Ç Dosya arayüzü - perl-IO-String is an IO::File interface for in-core strings in Perl. - perl-IO-String, Perl dili için çekirdek içi metinlere yönelik bir G/Ç Dosya arayüzüdür. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/IO-String-1.08.tar.gz - - perl - - programming/language/perl/perl-IO-String/pspec.xml - - - perl-IO-String - - perl - - - /usr/lib - /usr/share/man - - - - - 2016-06-09 - 1.08 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 1.08 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 2.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 2.16 - First release - Kamil Atlı - suvari@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 - - - - - 2016-06-09 - 3.30 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-26 - 3.30 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - perl-Module-Build - perl-Test-Fatal - - 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 - - - - - 2016-06-09 - 5.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 5.03 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Font-AFM - http://search.cpan.org/dist/Font-AFM/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - A Perl module that is a interface to Adobe Font Metrics files - Adobe Font Metrics dosyaları için bir Perl arayüz modülü - perl-Font-AFM is interface to Adobe Font Metrics files. It allows you to obtain information about the font and the metrics of the various glyphs in the font. - Adobe Font Metrics dosyaları için bir Perl arayüz mödülü. Bu modül ile yazı tipi ve biçimi hakkında bilgilere ulaşabilirsiniz. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Font-AFM-1.20.tar.gz - - perl - - programming/language/perl/perl-Font-AFM/pspec.xml - - - perl-Font-AFM - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 1.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.20 - 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. - https://cpan.metacpan.org/authors/id/M/MS/MSCHILLI/LWP-Protocol-https-6.06.tar.gz - - perl - perl-IO-Socket-SSL - perl-NET-HTTP - perl-Mozilla-CA - - - certs.patch - - programming/language/perl/perl-LWP-Protocol-https/pspec.xml - - - perl-LWP-Protocol-https - - perl - ca-certificates - perl-IO-Socket-SSL - perl-NET-HTTP - perl-Mozilla-CA - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 6.06 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 6.06 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 2.53 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 2.53 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 6.01 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.01 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-Test-Deep - http://search.cpan.org/dist/Test-Deep/ - - Pisi Linux Admins - admin@pisilinux.org - - as-is - library - programming.language.perl - A Perl module that gives you lots of flexibility when testing deep structures - Derin yapıları test ederken çok fazla esneklik sağlayan bir Perl modülü - perl-Test-Deep is a Perl module that gives you lots of flexibility when testing deep structures. - perl-Test-Deep derin yapıları test ederken çok fazla esneklik sağlayan bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Deep-1.120.tar.gz - - perl - - programming/language/perl/perl-Test-Deep/pspec.xml - - - perl-Test-Deep - - perl - - - /usr/lib - /usr/share/man - - - - - 2016-06-09 - 1.120 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.120 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Canary-Stability - https://metacpan.org/release/Canary-Stability - - Alihan Öztürk - alihan@pisilinux.org - - GPLv1 - library - programming.language.perl - CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules - CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules - https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Canary-Stability-2011.tar.gz - - perl - - programming/language/perl/perl-Canary-Stability/pspec.xml - - - perl-Canary-Stability - CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules - - perl - - - / - - - - - 2016-06-09 - 2011 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2011 - First Release - Alihan Öztürk - alihan@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 - perl-Module-Build - - programming/language/perl/perl-Crypt-PasswdMD5/pspec.xml - - - perl-Crypt-PasswdMD5 - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 1.40 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 1.40 - First release - Marcin Bojara - marcin@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/D/DA/DALEEVANS/HTML-FormatText-WithLinks-AndTables-0.06.tar.gz - - perl - perl-URI - perl-HTML-FormatText-WithLinks - - programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml - - - perl-HTML-FormatText-WithLinks-AndTables - - perl - perl-URI - perl-HTML-FormatText-WithLinks - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 0.06 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.06 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-JSON - http://search.cpan.org/dist/JSON/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - JSON (JavaScript Object Notation) encoder/decoder - JSON (JavaScript Nesne Gösterimi) kodlayıcı/çözücü - This module converts between JSON (JavaScript Object Notation) and Perl data structure into each other. For JSON, see http://www.crockford.com/JSON/. - http://search.cpan.org/CPAN/authors/id/M/MA/MAKAMAKA/JSON-2.90.tar.gz - - perl - perl-JSON-XS - perl-Test-Pod - - programming/language/perl/perl-JSON/pspec.xml - - - perl-JSON - - perl - perl-JSON-XS - perl-Test-Pod - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 2.90 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.90 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Font-TTF - http://search.cpan.org/dist/Font-TTF - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - Perl module for TrueType Font hacking - TrueType yazıtipleri için Perl modülü - perl-Font-TTF is a Perl module that allows you to do almost anything to a TrueType/OpenType Font including modifying and inspecting nearly all tables. - perl-Font-TTF, çok sayıda dosya biçimini TrueType/OpenType yazıtipine dönüştürmenizi sağlayan bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/M/MH/MHOSKEN/Font-TTF-1.05.tar.gz - - perl - perl-IO-String - - programming/language/perl/perl-Font-TTF/pspec.xml - - - perl-Font-TTF - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 1.05 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.05 + 2015-12-31 + 1.3.0 First release Ayhan Yalçınsoy - ayhanyalcinoys@pisilinux.org + ayhanyalcinsoy@pisilinux.org - perl-HTTP-Negotiate - http://search.cpan.org/~gaas/HTTP-Negotiate-6.01/ + virtualbox + http://www.virtualbox.org/ - 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 - - - - - 2016-06-09 - 6.01 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.01 - First release - Marcin Bojara - marcin@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/B/BP/BPS/HTTP-Server-Simple-0.51.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 - - - - - 2016-06-09 - 0.51 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.51 - First release - Alihan Öztürk - alhan@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-Module-Build - perl - - programming/language/perl/perl-HTML-Scrubber/pspec.xml - - - perl-HTML-Scrubber - - perl-HTML-Parser - perl - - - /usr/lib - /usr/share/man - - - - - 2016-06-09 - 0.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 0.11 - First release - Marcin Bojara - marcin@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.05.tar.gz - - perl - - programming/language/perl/perl-Encode-Locale/pspec.xml - - - perl-Encode-Locale - - perl - - - /usr/lib - /usr/share - - - - - 2016-06-09 - 1.05 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.05 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Devel-Symdump - http://search.cpan.org/dist/Devel-Symdump/ - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Dump symbol names or the symbol table - Sembol isimlerinin veya sembol tablosunun dökümünü verir - perl-Devel-Symdump is a Perl module that dumps symbol names or the symbol table. - perl-Devel-Symdump sembol isimlerinin veya sembol tablosunun dökümünü veren bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/A/AN/ANDK/Devel-Symdump-2.15.tar.gz - - perl - - programming/language/perl/perl-Devel-Symdump/pspec.xml - - - perl-Devel-Symdump - - perl - - - /usr/lib - /usr/share/man - - - - - 2016-06-09 - 2.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.15 - 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 - - - - - 2016-06-09 - 6.01 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.01 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 1.04 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.04 - First release - Kamil Atlı - suvari@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 - - - - - 2016-06-09 - 3.71 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 3.71 - First release - Marcin Bojara - marcin@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/R/RJ/RJBS/Net-SMTP-SSL-1.03.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 - - - - - 2016-06-09 - 1.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.03 - First release - Kamil Atlı - suvari@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 - - - - - 2016-06-09 - 10.00 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-27 - 10.00 - First release - Vedat Demir - vedat@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/E/ET/ETHER/Net-HTTP-6.09.tar.gz - - perl - perl-URI - - programming/language/perl/perl-NET-HTTP/pspec.xml - - - perl-NET-HTTP - - perl - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2016-06-09 - 6.09 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 6.09 - First release - Alihan Öztürk - alihan@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 - libpcre-devel - perl-JSON - - programming/language/perl/perl-HTML-Template-Pro/pspec.xml - - - perl-HTML-Template-Pro - - perl - libpcre - perl-JSON - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 0.9510 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 0.9510 - First release - Marcin Bojara - marcin@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.72.tar.gz - - perl - perl-Test-Exception - openssl-devel - - programming/language/perl/perl-Net-SSLeay/pspec.xml - - - perl-Net-SSLeay - - perl - zlib - openssl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-Net-SSLeay - - - - - 2016-06-09 - 1.72 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.72 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-JSON-XS - http://search.cpan.org/dist/JSON-XS/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - app:console - programming.language.perl - JSON serialising/deserialising, done correctly and fast - Doğru ve hızlı, JSON serileştirme/geri elde etme kitaplığı - This module converts Perl data structures to JSON and vice versa. Its primary goal is to be correct and its secondary goal is to be *fast*. To reach the latter goal it was written in C. - Bu modül Perl veri yapılarını JSON'a çevirir, tam tersini de yapabilir. Birincil amacı doğru çalışmak, ikincil amacı ise hızlı olmaktır. İkinciyi sağlamak için C dilinde yazılmıştır. - http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-3.02.tar.gz - - perl - perl-Canary-Stability - perl-common-sense - perl-Types-Serialiser - - programming/language/perl/perl-JSON-XS/pspec.xml - - - perl-JSON-XS - - perl - perl-Canary-Stability - perl-common-sense - perl-Types-Serialiser - - - /usr/bin - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 3.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 3.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Test-Warn - http://search.cpan.org/dist/Test-Warn/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Perl extension to test methods for warnings - Test uyarıları için Perl eklentisi - perl-Test-Warn module provides a few convenience methods for testing warning based code. - perl-Test-Warn modülü, uyarı temelli kodları test etmeye yarayan birkaç kolaylık metodu sağlamaktadır. - http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/Test-Warn-0.30.tar.gz - - perl - perl-Sub-Uplevel - perl-Test-Pod - - programming/language/perl/perl-Test-Warn/pspec.xml - - - perl-Test-Warn - - perl - perl-Sub-Uplevel - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 0.30 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.30 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Module-Build - http://search.cpan.org/~crenz/Module-Find - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Build and install Perl modules. - Build and install Perl modules. - perl-Module-Build Module::Build is a system for building, testing, and installing Perl modules. - perl-Module-Find, Module::Build is a system for building, testing, and installing Perl modules. - http://www.cpan.org/authors/id/L/LE/LEONT/Module-Build-0.4216.tar.gz - - perl - - programming/language/perl/perl-Module-Build/pspec.xml - - - perl-Module-Build - - perl - perl-docs - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 0.4216 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 0.4216 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-common-sense - http://search.cpan.org/~mlehmann/common-sense/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Implements some sane defaults for Perl programs - Perl programları için kabul edilebilir öntanımlılar içerir - This module implements some sane defaults for Perl programs, as defined by two typical (or not so typical - use your common sense) specimens of Perl coders: - http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/common-sense-3.74.tar.gz - - perl - - programming/language/perl/perl-common-sense/pspec.xml - - - perl-common-sense - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 3.74 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 3.74 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Mozilla-CA - http://search.cpan.org/~abh/Mozilla-CA-20130114/lib/Mozilla/CA.pm - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Mozilla::CA - Mozilla's CA cert bundle in PEM format - Mozilla::CA provides a copy of Mozilla's bundle of Certificate Authority certificates in a form that can be consumed by modules and libraries based on OpenSSL. - https://cpan.metacpan.org/authors/id/A/AB/ABH/Mozilla-CA-20160104.tar.gz - - perl - - programming/language/perl/perl-Mozilla-CA/pspec.xml - - - perl-Mozilla-CA - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 20160104 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 20160104 - 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 - perl-URI - - programming/language/perl/perl-WWW-Robotrules/pspec.xml - - - perl-WWW-Robotrules - - perl - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2016-06-09 - 6.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 6.02 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 6.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 6.02 - First release - Kamil Atlı - suvari@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.12.tar.gz - - perl - perl-Module-Build - perl-HTML-Tree - perl-Font-AFM - - programming/language/perl/perl-HTML-Format/pspec.xml - - - perl-HTML-Format - - perl - perl-Module-Build - perl-HTML-Tree - perl-Font-AFM - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.12 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Test-Fatal - http://search.cpan.org/dist/Test-Fatal - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Perl module to test code with exceptions - İstisna içeren kodları test etmek için Perl modülü - perl-Test-Fatal provides incredible simple helpers for testing Perl code with exceptions. - perl-Test-Fatal, istisna (exception) içeren kodları test etmek için çok basit bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Fatal-0.014.tar.gz - - perl - perl-Try-Tiny - - programming/language/perl/perl-Test-Fatal/pspec.xml - - - perl-Test-Fatal - - perl - perl-Try-Tiny - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 0.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.14 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Types-Serialiser - http://search.cpan.org/~mlehmann/Types-Serialiser-1.0/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - app:console - programming.language.perl - This module provides some extra datatypes that are used by common serialisation formats such as JSON or CBOR. - This module provides some extra datatypes that are used by common serialisation formats such as JSON or CBOR. The idea is to have a repository of simple/small constants and containers that can be shared by different implementations so they become interoperable between each other. - http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Types-Serialiser-1.0.tar.gz - - perl - perl-common-sense - - programming/language/perl/perl-Types-Serialiser/pspec.xml - - - perl-Types-Serialiser - - perl - perl-common-sense - - - /usr/bin - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.0 - 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.22.tar.gz - - perl - perl-HTTP-Message - perl-Test-Deep - perl-Test-Pod - perl-Test-Pod-Coverage - - programming/language/perl/perl-HTTP-Body/pspec.xml - - - perl-HTTP-Body - - perl - perl-HTTP-Message - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2016-06-09 - 1.22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.22 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 2.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 2.13 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-CGI - http://search.cpan.org/dist/CGI/ - - Alihan Öztürk - alihan@pisilinux.org - - Artistic - GPLv1 - library - programming.language.perl - Handle Common Gateway Interface requests and responses. - Handle Common Gateway Interface requests and responses. - http://search.cpan.org/CPAN/authors/id/L/LE/LEEJO/CGI-4.28.tar.gz - - perl - perl-HTML-Parser - perl-Test-Deep - perl-Test-Warn - - programming/language/perl/perl-CGI/pspec.xml - - - perl-CGI - Handle Common Gateway Interface requests and responses. - - perl - perl-HTML-Parser - perl-Test-Deep - perl-Test-Warn - - - / - - - - - 2016-06-09 - 4.28 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 4.28 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Pod-Coverage - http://search.cpan.org/dist/Pod-Coverage/ - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - app:console - programming.language.perl - Checks if the documentation of a module is comprehensive - Bir modülün belgelendirmesinin kapsamını kontrol eder - perl-Pod-Coverage checks if the documentation of a module is comprehensive. - perl-Pod-Coverage bir modülün belgelendirmesinin kapsamını kontrol eden bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/Pod-Coverage-0.23.tar.gz - - perl - perl-Devel-Symdump - perl-Test-Pod - - programming/language/perl/perl-Pod-Coverage/pspec.xml - - - perl-Pod-Coverage - - perl - perl-Devel-Symdump - perl-Test-Pod - - - /usr/bin - /usr/lib - /usr/share/man - - - - - 2016-06-09 - 0.23 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.23 - 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 - - - - - 2016-06-09 - 1.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.03 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Try-Tiny - http://search.cpan.org/dist/Try-Tiny - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Perl module to implement minimal try/catch - Perl için basit bir try/catch gerçeklemesi - perl-Try-Tiny is a Perl module which implements a minimal try/catch with proper localization of $@. - perl-Try-Tiny, Perl için $@ yerelleştirmesi sağlayan basit bir try/catch gerçeklemesidir. - http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Try-Tiny-0.24.tar.gz - - perl - perl-Capture-Tiny - - programming/language/perl/perl-Try-Tiny/pspec.xml - - - perl-Try-Tiny - - perl - perl-Capture-Tiny - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 0.24 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.24 - 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 - perl-URI - perl-HTML-Parser - perl-HTTP-Message - - programming/language/perl/perl-HTML-Form/pspec.xml - - - perl-HTML-Form - - perl - perl-URI - perl-HTML-Parser - perl-HTTP-Message - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2016-06-09 - 6.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 6.03 - First release - Alihan Öztürk - alihan@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.15.tar.gz - - perl - perl-URI - perl-Module-Build - perl-HTML-Tree - perl-HTML-Format - - programming/language/perl/perl-HTML-FormatText-WithLinks/pspec.xml - - - perl-HTML-FormatText-WithLinks - - perl - perl-URI - perl-Module-Build - perl-HTML-Tree - perl-HTML-Format - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 0.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.15 - First release - Alihan Öztürk - alihan@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/E/EX/EXODIST/Test-Exception-0.43.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 - - - - - 2016-06-09 - 0.43 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 0.43 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Capture-Tiny - http://search.cpan.org/dist/Capture-Tiny - - Pisi Linux Admins - admins@pisilinux.org - - Apache-2.0 - library - programming.language.perl - Perl module to capture stdout and stderr from Perl, XS or external programs - Standart çıktı ve hata akışlarının yakalamaya yarayan Perl modülü - perl-Capture-Tiny is a Perl module to capture stdout and stderr from Perl, XS or external programs. - perl-Capture-Tiny, Perl, XS veya harici programların standart çıktı ve hata akışlarının yakalanmasını sağlayan bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.36.tar.gz - - perl - - programming/language/perl/perl-Capture-Tiny/pspec.xml - - - perl-Capture-Tiny - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2016-06-09 - 0.36 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.36 - First release - Osman Erkan - osman.erkan@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_1_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 - jdk7-openjdk - - programming/language/java/rhino/pspec.xml - - - rhino - - jdk7-openjdk - - - /usr/share/man - /usr/bin - /usr/share/java/ - - - - - 2016-06-09 - 1.7.7.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.7.7.1 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 0.98 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-05 - 0.98 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - java7-openjdk - http://icedtea.classpath.org - - PisiLinux Community - admins@pisilinux.org + Serdar Soytetir + kaptan@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 + 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.1.0_BETA2/VirtualBox-5.1.0_BETA2.tar.bz2 - giflib_5.1.diff - fontconfig-paths.diff - openjdk7_nonreparenting-wm.diff + LocalConfig.kmk - ant - wget - rhino - fastjar - nss-devel - zlib-devel - attr-devel - xorg-proto - gtk2-devel - cups-devel - eclipse-ecj + dev86 + cdrkit + acpica + mesa-devel + curl-devel + python-devel + pam-devel + device-mapper-devel + libcap-devel + gsoap-devel libXt-devel - libSM-devel - lcms2-devel - jdk7-openjdk - libICE-devel - libpng-devel - giflib-devel + libXmu-devel + libIDL-devel + libsdl-devel + libvpx-devel + libXext-devel libxslt-devel - libXtst-devel + mesa-glu-devel alsa-lib-devel + libXfixes-devel + libXrandr-devel + libXdamage-devel + libXcursor-devel libXinerama-devel - libjpeg-turbo-devel + xorg-server-devel + libvncserver-devel + libXcomposite-devel + pulseaudio-libs-devel + jdk7-openjdk + kernel-module-headers + qt5-x11extras-devel + libxcb-devel + qt5-base-devel + qt5-linguist - programming/language/java/java7-openjdk/pspec.xml + + wrapper.patch + 002-dri-driver-path.patch + 003-ogl-include-path.patch + 008-root-window.patch + 004-xorg.patch + + hardware/virtualization/virtualbox/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 + virtualbox + + qt5-base + libxcb + mesa + libXt + gsoap + libvpx + libXmu + libsdl + libXext + libXcursor + libXinerama + virt-wrapper + libvncserver + curl + zlib + libX11 + libgcc + libpng + python + libxml2 + openssl + device-mapper + qt5-x11extras + module-virtualbox + + + /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 + + + + + 2016-06-17 + 5.1.0b + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-12 + 5.0.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-09 + 5.0.12 + First release + ali algul + alialgul@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 - cups + nss + vte gtk2 + mesa + nspr zlib + bzip2 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 + libsdl + libusb + pixman 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/ - - - - - 2016-06-09 - 7u_85.2.6.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-22 - 7u_85.2.6.1 - First release - Osman Erkan - osman.erkan@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://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops4/R-4.4.2-201502041700/ecjsrc-4.4.2.jar - - ant - jdk7-openjdk - - - 01-ecj-include-props.patch - 02-buildxml-fix-manifest.patch - - programming/language/java/eclipse-ecj/pspec.xml - - - eclipse-ecj - - jdk7-openjdk - - - /usr/share/man - /usr/bin - /usr/share/java - - - ecj - - - - - 2016-06-10 - 4.4.2_201502041700 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-03 - 4.4.2_201502041700 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 3.4.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-22 - 3.4.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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_60_0.tar.bz2 - - bzip2 - zlib-devel - icu4c-devel - python-devel - python3-devel - libxslt - - - cuda_float128.patch - - programming/misc/boost/pspec.xml - - - boost - - zlib - bzip2 - icu4c - 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 - - - - boost-python - a C++ library which enables seamless interoperability between C++ and the Python - - boost - libgcc - - - /usr/lib/libboost_python.so* - - - - boost-python3 - Headers and library documentation for boosta C++ library which enables seamless interoperability between C++ and the Python3 - - boost - libgcc - - - /usr/lib/libboost_python3.so* - - - - - 2016-06-09 - 1.60.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.60.0 - Release bump. - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2016-05-08 - 1.60.0 - First release - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-25 - 1.3 - First release - Vedat Demir - vedat@pisilinux.org - - - - - - 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 - - - - - 2016-06-09 - 0.9.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-30 - 0.9.25 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - docutils - mesa-glu-devel - python-Pygments - python-Jinja2 - blas-devel - lapack-devel - ilmbase-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 - - - - - 2016-06-09 - 1.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-03 - 1.10.0 - First release - Yusuf Aydemir - yusuf.aydemir@gmail.com - - - - - - 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 + freetype + libepoxy + bluez-libs + cyrus-sasl + fontconfig gdk-pixbuf + pulseaudio-libs /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 - - + /run + /lib + /usr/bin + /usr/sbin + /usr/lib /usr/share/doc - /usr/share/gtk-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 + - libgsf-devel - Development files for libgsf - libgsf paketi geliştirme dosyaları - library + qemu-devel + Development files for qemu + qemu için geliştirme dosyaları - libgsf - libgsf-gnome - libbonobo-devel + nss-devel glib2-devel - libxml2-devel + qemu /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig/libcacard.pc 2016-06-09 - 1.14.31 + 2.4.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-02-07 - 1.14.31 + 2015-12-31 + 2.4.1 First release - Hakan Yıldız - hknyldz93@gmail.com + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - iniparser - http://ndevilla.free.fr/iniparser/ + virt-manager + http://virt-manager.org 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 - - - - - 2016-06-09 - 3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-05-22 - 3.1 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - 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 + 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 - openssl-devel - zlib-devel + intltool + gtk2-devel - - libevent-linkage_fix.diff - libevent-2.0.13-manpages-on.patch - - programming/misc/libevent/pspec.xml + hardware/virtualization/virt-manager/pspec.xml - libevent + virt-manager - openssl + gtk2 /usr/bin - /usr/lib + /usr/libexec + /etc/gconf/schemas + /usr/share/pixmaps + /usr/share + /usr/share/man /usr/share/doc + /usr/share/locale - - - libevent-devel - Development files for libevent - libevent için geliştirme dosyaları - - libevent - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - + + tr.po + 2016-06-09 - 2.0.22 + 1.3.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-07-30 - 2.0.22 + 2015-12-31 + 1.3.1 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Ayhan Yalçınsoy + ayhanyalcinsoy@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 - - - - - 2016-06-09 - 2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 2.3 - First release - Stefan Gronewold(groni) - groni@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-1.2.4.tar.xz - - libevdev - eudev-devel - libmtdev-devel - libwacom-devel - - programming/misc/libinput/pspec.xml - - - libinput - - eudev - libevdev - libmtdev - libwacom - - - /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 - - - - - 2016-06-09 - 1.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-02 - 1.2.4 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-04-08 - 1.2.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libyaml - http://pyyaml.org/wiki/LibYAML + sane-backends + http://www.sane-project.org PisiLinux Community admins@pisilinux.org GPLv2 + app:console 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 + 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 + https://sources.archlinux.org/other/sane/sane-backends-1.0.25.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 + + + 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.23-udev.patch + archlinux/network.patch + + hardware/scannner/sane-backends/pspec.xml - libyaml + 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 + /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 + - 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. + sane-backends-devel + Development files for sane-backends + sane-backends için geliştirme dosyaları - libyaml + sane-backends /usr/include - /usr/share/doc/libyaml/html/ + /usr/lib/pkgconfig + + + + sane-backends-docs + Documentation for SANE backends + sane-backends için belgelendirme dosyaları + + /usr/share/doc 2016-06-09 - 0.1.5 + 1.0.25 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-07-22 - 0.1.5 + 2016-04-01 + 1.0.25 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - json-glib - http://live.gnome.org/JsonGlib + sane-frontends + http://www.sane-project.org 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 + GPLv2+ + app:console + hardware.scanner + Graphical frontend to SANE + SANE için grafiksel arayüz paketi + sane-frontends includes the scanadf and xcam programs. + sane-frontends, scanadf ve xcam grafiksel araçlarını içerir. + ftp://ftp.uwsg.indiana.edu/linux/gentoo/distfiles/sane-frontends-1.0.14.tar.gz - gobject-introspection-devel - glib2-devel + sane-backends-devel + gimp-devel + gtk2-devel - programming/misc/json-glib/pspec.xml + + sane-frontends-1.0.14-array-out-of-bounds.patch + sane-frontends-1.0.14-sane-backends-1.0.20.patch + + hardware/scannner/sane-frontends/pspec.xml - json-glib + sane-frontends - gobject-introspection + sane-backends + gtk2 glib2 /usr/bin + /usr/share/doc/sane-frontends + /usr/share/man + + + + + 2016-06-09 + 1.0.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-10 + 1.0.14 + First release + Varol Maksutoğlu + waroi@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/man - /usr/share/locale + /usr/share/gdm + /usr/share/gnome/ - json-glib-devel - Development files for json-glib - json-glib için geliştirme dosyaları + libcanberra-devel + Development files for libcanberra + libcanberra için geliştirme dosyaları - json-glib - glib2-devel + libcanberra /usr/include - /usr/share/gir* + /usr/share/vala /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 - - glib2-32bit - + libcanberra-gtk + GTK+ convenience API and utilities for libcanberra + GTK+ için libcanberra araçları ve programlama kitaplığı - glib2-32bit - json-glib + libcanberra + gtk2 + glib2 + libX11 + + + /usr/lib/gtk-2* + /usr/lib/libcanberra-gtk.so* + + + + libcanberra-gtk-devel + Development files for libcanberra-gtk + + libcanberra + libcanberra-gtk + libcanberra-devel + gtk2-devel + + + /usr/include/canberra-gtk.h + /usr/lib/pkgconfig/libcanberra-gtk.pc + /usr/share/vala/vapi/libcanberra-gtk.vapi + + + + 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 + + + + libcanberra-gtk3-devel + Development files for libcanberra-gt3k + + libcanberra + libcanberra-devel + libcanberra-gtk3 + gtk3-devel + + + /usr/lib/pkgconfig/libcanberra-gtk3.pc + + + + + 2016-06-09 + 0.30 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 0.30 + Fix + Varol Maksutoğlu + waroi@pisilinux.org + + + 2016-05-08 + 0.30 + First release + Varol Maksutoğlu + waroi@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 + + + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-28 + 1.4.0 + First release + Alihan Öztürk + alihan@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.2.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 + + libogg /usr/lib32 @@ -89202,58 +87249,1046 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 1.0.2 + 1.3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-02 + 1.3.2 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.3.1 + First release + Serdar Soytetir + kaptan@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 + + libvisual + + + /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 + + + + + 2016-06-09 + 0.4.0 Release Bump Pisi Linux Community admin@pisilinux.org 2016-05-27 - 1.0.2 + 0.4.0 Release bump - Hakan Yıldız - hknyldz93@gmail.com + Serdar Soytetir + kaptan@pisilinux.org - 2015-03-18 - 1.0.2 + 2014-05-20 + 0.4.0 First release - Hakan Yıldız - hknyldz93@gmail.com + Serdar Soytetir + kaptan@pisilinux.org - libnice - http://nice.freedesktop.org + speex + http://www.speex.org/ PisiLinux Community admins@pisilinux.org - MPL-1.1 - LGPLv2.1 + xiph 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 + 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 - glib2-devel - gobject-introspection-devel - gstreamer-devel + libogg-devel - programming/misc/libnice/pspec.xml + + constant.patch + configure.patch + + multimedia/sound/speex/pspec.xml - libnice + 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 + + speex + + + /usr/lib32 + + + + + 2016-06-09 + 1.2_rc1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.2_rc1 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.2_rc1 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 2.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-11 + 2.3.0 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 1.9.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-24 + 1.9.10 + First release + Vedat Demir + vedat@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 + + + + + 2016-06-09 + 2.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 2.7 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 0.8.8.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.8.8.5 + First release + Serdar Soytetir + kaptan@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 + dbus-devel + libxml2-devel + python-devel + libutil-linux-devel + + + makefile.patch + docs-Makefile.patch + + multimedia/sound/lash/pspec.xml + + + lash + + gtk2 + dbus + glib2 + dmapi + libgcc libxml2 - gstreamer + readline + alsa-lib + libutil-linux + jack-audio-connection-kit + + + /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 + + + + + 2016-06-09 + 0.6.0_rc2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-01 + 0.6.0_rc2 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.15.1b + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.15.1b + First release + Serdar Soytetir + kaptan@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 + + libogg-32bit + + + libvorbis + libogg-32bit + + + /usr/lib32 + + + + + 2016-06-09 + 1.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.3.4 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.3.4 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 0.99.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-26 + 0.99.12 + First release + Alihan Öztürk + alihan@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 + + flac-32bit + alsa-lib-32bit + libogg-32bit + libvorbis-32bit + + + flac-32bit + alsa-lib-32bit + libogg-32bit + libvorbis-32bit + libsndfile + + + /usr/lib32 + + + + + 2016-06-09 + 1.0.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.0.25 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-25 + 1.0.25 + First release + Alihan Öztürk + alihan@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 + + gsm + + + /usr/lib32 + + + + + 2016-06-09 + 1.0.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-14 + 1.0.13 + First release + Yusuf Aydemir + yusuf.aydemir@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.10.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 + libcddb + libcdio + libcdio-paranoia + jack-audio-connection-kit + libmpcdec /usr/bin @@ -89263,29 +88298,145 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libnice-devel - Development files for libnice - libnice için geliştirme dosyaları + qmmp-devel + qmmp development files + qmmp için geliştirme dosyaları - libnice + qmmp + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/ + + + + + 2016-06-20 + 1.0.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-09 + 1.0.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 1.0.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-11-19 + 1.0.1 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + speech-dispatcher + http://www.freebsoft.org/speechd + + 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 + + glib2-devel + libsndfile-devel + dotconf-devel + espeak-devel + python3-devel + intltool + gettext-devel + texinfo + pkgconfig + libtool-ltdl + libao-devel + alsa-lib-devel + pulseaudio-libs-devel + + multimedia/sound/speech-dispatcher/pspec.xml + + + speech-dispatcher + + glib2 + libao + espeak + dotconf + alsa-lib + libsndfile + libtool-ltdl + pulseaudio-libs + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /etc/speech-dispatcher + /var/log/speech-dispatcher + /usr/share/speech-dispatcher + + + + python3-speech-dispatcher + Python3 bindings for speech-dispatcher + + speech-dispatcher + python3 + + + /usr/lib/python3.* + + + python-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/lib/pkgconfig/ 2016-06-09 - 0.1.13 + 0.8.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-10-27 - 0.1.13 + 2016-05-08 + 0.8.3 First release Alihan Öztürk alihan@pisilinux.org @@ -89294,515 +88445,195 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - apr - http://apr.apache.org/ + nightingale + http://getnightingale.com/ - PisiLinux Community - admins@pisilinux.org + Stefan Gronewold + groni@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 + GPLv2 + app:gui + multimedia + Nightingale Media Player + Özgür ve güçlü bir müzik çalar + Nightingale is a community based fork of the Songbird Media player distributed under the GNU GPL and portions (XULRunner and Mozilla libs) licensed under the Mozilla MPL/BSD license.. + Nightingale, özgür ve güçlü , açık kaynak kodlu, özelleştirilebilir bir müzik çalardır. + nightingale + http://github.com/nightingale-media-player/nightingale-hacking/tarball/nightingale-1.12.1 - libutil-linux-devel + atk-devel + gtk2-devel + libXt-devel + cairo-devel + pango-devel + libIDL-devel + taglib-devel + libXext-devel + alsa-lib-devel + gstreamer-devel + fontconfig-devel + gdk-pixbuf-devel + libXrender-devel + gst-plugins-base-devel + dbus-devel + zlib-devel + glib2-devel + libX11-devel + freetype-devel + libnotify-devel + zip + unzip + sqlite-devel + dbus-glib-devel - programming/misc/apr/pspec.xml + multimedia/sound/nightingale/pspec.xml - apr + nightingale - libutil-linux + atk + gtk2 + libXt + cairo + pango + libIDL + taglib + libXext + alsa-lib + gstreamer + fontconfig + gdk-pixbuf + libXrender + gst-plugins-base + dbus + zlib + glib2 + libX11 + libgcc + freetype - /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 + /usr/share/applications + /usr/share/nightingale + /usr/share/pixmaps + /usr/share/doc + + nightingale.desktop + nightingale.xpm + - - 2016-06-09 - 1.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2015-09-01 - 1.5.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2016-06-19 + 1.12.1 + First Release. + Stefan Gronewold + groni@pisilinux.org - unixODBC - http://www.unixodbc.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 + + + + + 2016-06-09 + 1.8.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-07-05 + 1.8.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + mpg123 + http://www.mpg123.de/ PisiLinux Community admins@pisilinux.org GPLv2 - LGPLv2.1 + LGPLv2 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. - ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.4.tar.gz + 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 - libtool-ltdl + alsa-lib-devel - programming/misc/unixODBC/pspec.xml + multimedia/sound/mpg123/pspec.xml - unixODBC + mpg123 + alsa-lib libtool-ltdl - /etc /usr/bin /usr/lib + /usr/share/doc /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ı. + mpg123-devel + Development files for mpg123 + mpg123 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 - - - - - 2016-06-09 - 2.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.3.4 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 0.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-06 - 0.10.0 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 1.5.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-06 - 1.5.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-06 - 1.0.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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://archive.apache.org/dist/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 - - - - - 2016-06-09 - 3.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 3.1.2 - 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.54/libsoup-2.54.1.tar.xz - - libgcrypt-devel - gtk-doc - glib2-devel - libxml2-devel - sqlite-devel - intltool - gettext-devel - vala-devel - gobject-introspection-devel - - programming/misc/libsoup/pspec.xml - - - libsoup - - glib2 - libxml2 - sqlite - glib-networking - - - /usr/lib - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/vala - /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 - gobject-introspection-devel - libsoup + mpg123 /usr/include @@ -89811,591 +88642,16 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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 - - - glib2-32bit - sqlite-32bit - libxml2-32bit - libsoup - - - /usr/lib32 - - - - - 2016-06-09 - 2.54.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 2.54.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-14 - 2.50.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.82_p1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-18 - 0.82_p1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.7.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-31 - 0.7.6 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 2.38.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-05-21 - 2.38.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - - - 2016-06-09 - 4.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-24 - 4.0.0 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 0.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-02 - 0.3.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - physfs - http://icculus.org/physfs/ - - PisiLinux Community - admins@pisilinux.org - - ZLIB - library - programming.misc - Filesystem library - Dosya sistemi kitaplığı - Warstwa abstrakcji plików dla gier - Couche d'abstraction pour les systèmes de fichier, généralement utilisée par les jeux. - Abstraction layer for filesystems. - physfs dosya sistemi katmanı kitaplığıdır. - Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos - PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów. - http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2 - - cmake - zlib - - programming/misc/physfs/pspec.xml - - - physfs - - /usr/lib - /usr/share/doc - - - - physfs-devel - Development files for physfs - physfs için geliştirme dosyaları - - physfs - - - /usr/include - - - - - 2016-06-09 - 2.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-11 - 2.0.3 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 5.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-18 - 5.0.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 + mpg123-32bit + 32-bit shared libraries for mpg123 + mpg123 için 32-bit paylaşımlı kitaplıklar emul32 emul32 + + alsa-lib-32bit + - libdaemon + mpg123 /usr/lib32 @@ -90404,519 +88660,155 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 0.14 + 1.22.4 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-03-09 - 0.14 + 2015-11-13 + 1.22.4 First release - PisiLinux Community - admins@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - libassuan - http://www.gnupg.org/ + libcue + http://sourceforge.net/projects/libcue/ PisiLinux Community admins@pisilinux.org - GPLv3 + GPLv2 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 + multimedia.sound + Cue sheet parser library + Cue sayfası ayrıştırma kitaplığı + libcue is intended for parsing a so-called cue sheet from a char string or a file pointer. + libcue, cue sayfalarındaki metinleri ayrıştırmak için kullanılan bir kitaplıktır. + https://github.com/lipnitsk/libcue/releases/download/v1.4.0/libcue-1.4.0.tar.bz2 + multimedia/sound/libcue/pspec.xml - libassuan - - libgpg-error - + libcue - /usr/bin /usr/lib - /usr/share/info + /usr/share/doc - libassuan-devel - Development files for libassuan - libassuan için geliştirme dosyaları + libcue-devel + Development files for libcue + libcue için geliştirme dosyaları - libassuan + libcue /usr/include - /usr/share/aclocal + /usr/lib/pkgconfig 2016-06-09 - 2.2.1 + 1.4.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-21 - 2.2.1 + 2016-02-08 + 1.4.0 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Stefan Gronewold(groni) + groni@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/ - - - - - 2016-06-09 - 6.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-19 - 6.9 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xapian-core - http://www.oligarchy.co.uk/xapian + audiofile + http://www.68k.org/~michael/audiofile/ 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 + 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 - zlib-devel - libutil-linux-devel + alsa-lib-devel + flac-devel - programming/misc/xapian-core/pspec.xml + multimedia/sound/audiofile/pspec.xml - xapian-core + audiofile - zlib - libutil-linux - libgcc + alsa-lib + flac /usr/bin /usr/lib /usr/share/doc - /usr/share/man + /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 + audiofile-devel + Development files for audiofile + audiofile için geliştirme dosyaları - xapian-core + audiofile - /usr/bin/xapian-config* + /usr/bin/audiofile-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/ - - - - - 2016-06-09 - 1.12.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - critical - 2014-09-02 - 1.12.18 - First release - Yusuf Aydemir - yusuf.aydemir@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 - - - - - 2016-06-09 - 0.9.3_20150604 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-18 - 0.9.3_20150604 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 + /usr/lib32/pkgconfig - geoip-devel - Geoip için geliştirme dosyaları - - geoip - - - /usr/include - - - - - 2016-06-09 - 1.6.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-07-14 - 1.6.2 - First release - Vedat Demir - vedat@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 - - - - - 2016-06-09 - 2.4.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-21 - 2.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 + audiofile-32bit + 32-bit shared libraries for audiofile + audiofile için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 - ncurses-devel + alsa-lib-32bit + flac-32bit - programming/misc/libedit/pspec.xml - - - libedit - ncurses + alsa-lib-32bit + flac-32bit + audiofile - /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 + /usr/lib32 2016-06-09 - 3.1_20150325 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-25 - 3.1_20150325 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 0.8.14 + 0.3.4 Release Bump Pisi Linux Community admin@pisilinux.org 2014-05-20 - 0.8.14 + 0.3.4 First release Serdar Soytetir kaptan@pisilinux.org @@ -90925,248 +88817,132 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - yajl - http://lloyd.github.com/yajl + sox + http://sox.sourceforge.net PisiLinux Community admins@pisilinux.org - BSD - library + LGPLv2.1 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 - - - - - 2016-06-09 - 2.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-31 - 2.1.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 + 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 - libgcc + 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 - programming/misc/icu4c/pspec.xml + + sox-dynamic.patch + + multimedia/sound/sox/pspec.xml - icu4c + sox - libgcc + gsm + file + lame + libao + libmad + libogg + libgomp + twolame + wavpack + alsa-lib + libvorbis + libsndfile + libtool-ltdl + opencore-amr + pulseaudio-libs /usr/bin - /usr/sbin - /usr/lib + /usr/share/doc /usr/share/man - /usr/share/doc/icu4c/html + /usr/lib - icu4c-devel - Development files for icu4c - icu4c için geliştirme dosyaları + sox-devel + Development files for sox + sox için geliştirme dosyaları - icu4c + sox - /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 - - - icu4c - libgcc - - - /usr/lib32/libicu* - /usr/lib32/icu + /usr/share/man/man3 - + 2016-06-09 - 55.1 + 14.4.2 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-25 - 55.1 - Release bump - Ertuğrul Erata - ertugrulerata@gmail.com - - 2015-07-03 - 55.1 + 2015-11-17 + 14.4.2 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Alihan Öztürk + alihan@pisilinux.org - intel-tbb - http://www.threadingbuildingblocks.org/ + wavpack + http://www.wavpack.com PisiLinux Community admins@pisilinux.org - GPLv2 - library - programming.misc - Intel Threading Building Blocks Library - Intel Threading kitaplığı - Threading Building Blocks (TBB) is a C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance. - https://www.threadingbuildingblocks.org/sites/default/files/software_releases/linux/tbb44_20160128oss_lin.tgz - - install.sh - - programming/misc/intel-tbb/pspec.xml - - - intel-tbb - - /usr/lib - /usr/share/doc - - - - intel-tbb-devel - Development files for intel-tbb - intel-tbb için geliştirme dosyaları - - intel-tbb - - - /usr/include - - - - - 2016-06-09 - 44_20160128 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-08 - 44_20160128 - First release - Stefan Gronewold(groni) - groni@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 + 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 - flann - - libgcc - libgomp - + wavpack + /usr/bin /usr/lib /usr/share/doc - /usr/bin - /usr/share/flann + /usr/share/man - flann-devel - Development files for flann + wavpack-devel - flann + wavpack /usr/include @@ -91176,116 +88952,14 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 1.8.4 + 4.75.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-25 - 1.8.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - btyacc - http://www.siber.com/btyacc - - PisiLinux Community - admins@pisilinux.org - - freedist - app:console - programming.misc - Backtracking YACC - modified from Berkeley YACC - This is original Berkeley Yacc modified to better fit production environment (and to have less bugs, too). - http://www.siber.com/btyacc/btyacc-3-0.tar.gz - - btyacc-3.0-includes.patch - btyacc-3.0-makefile.patch - - programming/misc/btyacc/pspec.xml - - - btyacc - - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-11 - 3.0 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-12 - 1.2 + 2015-08-20 + 4.75.0 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -91294,267 +88968,82 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libtalloc - http://talloc.samba.org + drumstick + http://drumstick.sourceforge.net 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 + GPLv2+ + app:console + app:gui + multimedia.sound + Qt4/C++ wrapper for ALSA Sequencer + ALSA ardıştırıcısı için Qt4/C++ kitaplığı + Drumstick library is a C++ wrapper around the ALSA library sequencer interface, using Qt4 objects, idioms and style. + Drumstick, ALSA ardıştırıcı arayüzü için Qt4 nesnelerini, deyimlerini ve tarzını kullanan bir C++ ara kitaplığıdır. + drumstick + mirrors://sourceforge/drumstick/1.0.2/drumstick-1.0.2.tar.bz2 + cmake + qt5-base-devel + qt5-svg-devel + alsa-lib-devel + fluidsynth-devel + libxslt + doxygen docbook-xsl - libxslt-devel - python-devel - attr-devel + shared-mime-info - programming/misc/libtalloc/pspec.xml + multimedia/sound/drumstick/pspec.xml - libtalloc + drumstick - 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 - - attr-32bit - - - attr-32bit - libtalloc - - - /usr/lib32 - - - - - 2016-06-09 - 2.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-28 - 2.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - autoconf213 - http://www.gnu.org/software/autoconf/autoconf.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - programming.misc - Used to create autoconfiguration files version 2.13 - Used to create autoconfiguration files, Autoconf is an extensible package of m4 macros that produce shell scripts to automatically configure software source code packages. - mirrors://gnu/autoconf/autoconf-2.13.tar.gz - - texinfo - m4 - perl - - - autoconf-2.13-consolidated_fixes-1.patch - - programming/misc/autoconf213/pspec.xml - - - autoconf213 - - texinfo - m4 - - - /usr/bin - /usr/share/doc - /usr/share - /usr/share/info - /usr/share/autoconf - - - - - 2016-03-13 - 2.13 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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-devel - - - libspectre-0.2.7-gs918.patch - - 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 - cairo-32bit - - - libspectre - ghostscript-32bit - - - /usr/lib32 - - - - - 2016-06-09 - 0.2.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-02 - 0.2.7 - First release - PisiLinux Community - 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-devel - expat-devel - glib2-devel - - - dbus-c++-build-fix.patch - dbus-c++-linkfix.patch - gcc-44.patch - - programming/misc/dbus-c++/pspec.xml - - - dbus-c++ - - dbus + drumstick-libs libgcc - expat - glib2 + qt5-svg + qt5-base + alsa-lib /usr/bin - /usr/lib + /usr/share/mime + /usr/share/applications + /usr/share/icons /usr/share/doc + /usr/share/man - dbus-c++-devel + drumstick-libs + Libraries for Drumstick + Drumstick kitaplıkları + drumstick-libs provides libraries for Drumstick based applications. + drumstick-libs, Drumstick temelli uygulamalar için kitaplık dosyaları sunar. + library - dbus-c++ - dbus-devel - expat-devel - glib2-devel + libgcc + alsa-lib + qt5-base + fluidsynth + + + /usr/lib/drumstick + /usr/lib/libdrum* + + + + drumstick-devel + Development files for Drumstick + Drumstick kitaplığı için geliştirme dosyaları + drumstick-devel provides development files for Drumstick libraries. + drumstick-devel, Drumstick kitaplığı için geliştirme dosyaları sunar. + data + + qt5-base-devel + alsa-lib-devel + drumstick-libs /usr/include @@ -91564,3979 +89053,110 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 0.0_20090907 + 1.0.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-28 - 0.0_20090907 + 2016-05-17 + 1.0.2 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - gdb - http://www.gnu.org/software/gdb/gdb.html + sayonara + http://sayonara-player.com - 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 - - - - - 2016-06-09 - 7.9.1 - Release Bump Pisi Linux Community - admin@pisilinux.org - - - 2015-07-30 - 7.9.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - eric6 - http://eric-ide.python-projects.org/index.html - - PisiLinux Community admins@pisilinux.org GPLv3 app:gui - programming.environment.eric - Full featured Python IDE - Eric is a full featured Python and Ruby editor and IDE, written in python. - It is based on the cross platform Qt4 gui toolkit, integrating the highly flexible - Scintilla editor control. It is designed to be usable as everdays' quick and dirty - editor as well as being usable as a professional project management tool integrating - many advanced features Python offers the professional coder. - eric5 - https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-6.1.4.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-cs-6.1.4.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-de-6.1.4.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-es-6.1.4.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-fr-6.1.4.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-it-6.1.4.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-ru-6.1.4.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/6.1.4/eric6-i18n-tr-6.1.4.tar.gz + 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-0.9.0-git1-20160516.tar.gz qt5-base-devel qt5-sql-mysql - python3 + qt5-sql-odbc + qt5-sql-postgresql qt5-sql-sqlite - python3-qt5 - qscintilla2-devel - qscintilla2-python3 - qt5-webkit-devel - qt5-svg-devel - python3-sip - - programming/environment/eric6/pspec.xml - - - eric6 - - qt5-base - python3 - python3-qt5 - qscintilla2-python3 - qt5-webkit - qt5-svg - - - /usr/bin - /usr/lib/python3.4/site-packages - /usr/share/qt5/qsci/api - /usr/share/applications - /usr/share/appdata - /usr/share/doc - /usr/share/pixmaps - - - - - 2016-06-09 - 6.1.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-10 - 6.1.4 - Version Bump - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 0.16.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-17 - 0.16.19 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-09 - 1.13.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-21 - 1.13.2 - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 5.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-21 - 5.8 - First release - Stefan Gronewold(groni) - groni@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.11.0.tar.bz2 - - glibc-devel - boost-devel - gdb-devel - - - fix_rlimit.patch - - programming/profiler/valgrind/pspec.xml - - - valgrind - - glibc - perl - - - /usr/bin - /usr/include/valgrind - /usr/lib - /usr/share/doc/valgrind - /usr/share/man - - - - - 2016-06-09 - 3.11.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-29 - 3.11.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - ninja - http://martine.github.com/ninja/ - - Stefan Gronewold(groni) - groni@pisilinux.org - - LGPLv2 - app:console - programming.build - Ninja is a small build system with a focus on speed. - Ninja, hız odaklı bir inşa sistemidir. - Ninja is a small build system with a focus on speed. - Ninja is a small build system with a focus on speed. - https://github.com/martine/ninja/archive/v1.6.0.tar.gz - - asciidoc - - - LFS.patch - - programming/build/ninja/pspec.xml - - - ninja - - libgcc - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2016-06-09 - 1.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-25 - 1.6.0 - First release - Vedat Demir - vedat@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 - - programming/build/ant/pspec.xml - - - ant - - /etc - /usr/share/ - /usr/bin - - - ant.conf - ant.sh - ant.csh - - - - ant-docs - Documentation package for ant build system - - /usr/share/doc - - - - - 2016-06-09 - 1.9.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-25 - 1.9.6 - 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.8.0/llvm-3.8.0.src.tar.xz - http://llvm.org/releases/3.8.0/cfe-3.8.0.src.tar.xz - http://llvm.org/releases/3.8.0/clang-tools-extra-3.8.0.src.tar.xz - http://llvm.org/releases/3.8.0/lldb-3.8.0.src.tar.xz - http://llvm.org/releases/3.8.0/compiler-rt-3.8.0.src.tar.xz - + qt5-linguist + gstreamer-next-devel + taglib-devel + libnotify-devel + gst-plugins-bad-devel + gst-plugins-base-devel + gst-plugins-ugly-next + glib2-devel zlib-devel - libxml2-devel - ncurses-devel - ocaml - libffi-devel - groff - swig - python-devel - libedit-devel + libmtp-devel + gstreamer-next-devel + gst-plugins-base-next-devel cmake - binutils - programming/build/llvm/pspec.xml + multimedia/sound/sayonara/pspec.xml - llvm - app:console - library + sayonara - llvm-libs - libxml2 + qt5-base + gst-plugins-bad + gst-plugins-base-next + gst-plugins-good-next + gst-plugins-ugly-next + gstreamer + taglib + libnotify + glib2 libgcc - ncurses zlib - libffi + libmtp + gstreamer-next + gst-plugins-base-next /usr/bin - /usr/bin/llvm-config - /usr/include/llvm* - /usr/lib/llvm /usr/lib - /etc/ld.so.conf.d - /etc/llvm + /usr/lib/qt5 + /usr/share + /usr/share/pixmaps + /usr/share/applications /usr/share/doc - /usr/share/vim - /usr/share/llvm/cmake - /usr/share/man - 51-llvm.conf + sayonara.desktop + sayonara.png - - llvm-libs - library - - zlib - libffi - libedit - libgcc - ncurses - - - /usr/lib/libLLVM.* - /usr/lib/LLVMgold.* - /usr/lib/libLTO.* - /usr/lib/bfd-plugins/LLVMgold.so - /usr/share/licenses/llvm-libs/LICENSE - - - - lldb - Next generation, high-performance debugger - - llvm - zlib - libffi - libedit - libgcc - ncurses - python - libxml2 - - - /usr/bin/argdumper - /usr/bin/lldb* - /usr/lib/liblldb - /usr/lib/python2.7/site-packages/readline.so - /usr/lib/python2.7/site-packages/lldb/* - - - - lldb-devel - Development headers lldb - - lldb - - - /usr/include/lldb/* - - - - 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-* - /usr/share/scan* - /usr/libexec/ccc-* - /usr/libexec/c++-* - - - - 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 - /usr/share/clang - - - - 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-32bit - 32-bit shared libraries for llvm - emul32 - emul32 - - zlib-32bit - libffi-32bit - - - llvm - libgcc - libedit - ncurses-32bit - zlib-32bit - libffi-32bit - - - /usr/bin/llvm-config-32 - /usr/lib32 - - 2016-06-09 - 3.8.0 + 0.9.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-05-25 - 3.8.0 - Release bump - Serdar Soytetir - kaptan@pisilinux.org + 2016-05-16 + 0.9.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2016-04-06 - 3.8.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libgudev - https://wiki.gnome.org/Projects/libgudev - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPL2 - library - programming.library - GObject bindings for Udev (Eudev) - GObject bindings for Udev (Eudev) - eudev - https://download.gnome.org/sources/libgudev/230/libgudev-230.tar.xz - - gobject-introspection-devel - gtk-doc - libxslt - docbook-xsl - eudev-devel - glib2-devel - - programming/library/libgudev/pspec.xml - - - libgudev - - eudev - glib2 - - - /usr/lib - /usr/share/gir-1.0 - /usr/share/gtk-doc - - - - libgudev-devel - Development files for libgudev - system.devel - - libgudev - eudev-devel - glib2-devel - - - /usr/lib/pkgconfig - /usr/include/gudev-1.0 - - - - - 2016-06-09 - 230 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-24 - 230 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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://sourceforge.net/projects/pisilinux/files/source/libaccounts-qt-1.14.tar.xz - - doxygen - qt5-base-devel - qt5-assistant-devel - glib2-devel - libaccounts-glib-devel - - programming/library/libaccounts-qt5/pspec.xml - - - libaccounts-qt5 - - glib2 - libgcc - qt5-base - libaccounts-glib - - - /usr/lib/libaccounts-qt5* - /usr/share/doc/libaccounts-qt5 - /usr/lib/cmake - - - - libaccounts-qt5-devel - Development files for libaccounts-qt5 - - libaccounts-qt5 - qt5-base-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - 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 - - - - - 2016-06-11 - 1.14 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-20 - 1.13 - Rebuild for qt5 - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-30 - 1.14 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libsignon-glib - https://gitlab.com/accounts-sso/libsignon-glib - - 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://sourceforge.net/projects/pisilinux/files/source/libsignon-glib-1.13.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 - - - - - 2016-06-09 - 1.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-29 - 1.13 - First release - Alihan Öztürk - alihan@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://sourceforge.net/projects/pisilinux/files/source/signon-8.58.tar.xz - - 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 - - - - - 2016-06-10 - 8.58 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-14 - 8.58 - 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/ - - - - - 2016-06-09 - 0.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-09-01 - 0.5.2 - First release - Ergün Salman - Poyraz76@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 - - - - - 2016-06-09 - 0.3.109 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-19 - 0.3.109 - 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.8.2.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 - - - - - 2016-06-09 - 0.8.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 + 2016-04-02 0.8.2 First release - Marcin Bojara - marcin@pisilinux.org - - - - - - 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. - https://sourceforge.net/projects/pisilinux/files/source/libaccounts-glib-1.21.tar.xz - - 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 - /usr/share/gir-1.0/Accounts-1.0.gir - /usr/share/vala - - - - libaccounts-glib-devel - Development files for libaccounts-glib - - libaccounts-glib - glib2-devel - libxml2-devel - sqlite-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libaccounts-glib-docs - Help files and API documents for libaccounts-glib - data:doc - - libaccounts-glib - - - /usr/share/gtk-doc - /usr/share/doc - - - - - 2016-06-11 - 1.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 1.21 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-03 - 0.2 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 3.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-22 - 3.0.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - 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 - - - - - 2016-06-09 - 1.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-27 - 1.0.3 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - php - http://www.php.net - - Fatih Turgel - turgelfatih@gmail.com - - PHP - library - programming.language.php - PHP5 is an HTML-embedded scripting language. The goal of the language is to allow web developers to write dynamically generated pages quickly - Dinamik HTML sayfaları oluşturmak için kullanılan bir programlama dili - PHP5 is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly. - PHP5, dinamik HTML sayfaları oluşturmak için kullanılan bir programlama dilidir. Dil yapısının önemli bir kısmı C, Java ve Perl'den alınmıştır. Bu dilin amacı, web geliştiricilerinin kısa zamanda dinamik sayfalar oluşturmasına imkan vermektir. - PHP5 es un languaje interpretado que puede estar embebido en HTML. Muchas partes de su sintaxis fueron prestados de C, Java y Perl con algunas facilidades agregados únicas de PHP. El lenguaje permite a desarrolladores web escribir de manera sencilla páginas con contenido dinámico. - http://us2.php.net/distributions/php-5.6.20.tar.bz2 - - gd-devel - harfbuzz-devel - apr-devel - apr-util-devel - apache - postfix - libxslt-devel - db-devel - mariadb-lib - libmcrypt-devel - mit-kerberos - libc-client - postgresql-server - libjpeg-turbo-devel - zlib-devel - curl-devel - gdbm-devel - libpng-devel - freetype-devel - openssl-devel - - - int_overflow_in_mt_rand.patch - stack_buffer_overflow_in_imagepstext.patch - denial_of_service_in_getArchiveComment.patch - php-imap-myrights.diff - db6.patch - debian/052-phpinfo_no_configure.patch - - programming/php/php/pspec.xml - - - php-cli - - php-common - gd - libxslt - mariadb-lib - libmcrypt - mit-kerberos - postgresql-lib - openldap-client - libjpeg-turbo - - - /etc/php/cli - /usr/bin - /usr/share/man - - - go-pear - - - - php-common - Common config files for PHP - PHP için genel yapılandırma dosyaları - - mit-kerberos - db - - - /usr/lib/php/modules - /usr/share/php5 - /etc/php/ext - - - - php-devel - Development files for PHP - - php-common - - - /usr/bin/php-config - /usr/bin/phpize - /usr/include - /usr/lib/php/build - /usr/share/man/man1/php-config* - /usr/share/man/man1/phpize* - - - - mod_php - server.web - - apache - mariadb-lib - postgresql-lib - gd - libxslt - mit-kerberos - openldap-client - cyrus-sasl - harfbuzz - php-common - libmcrypt - libjpeg-turbo - - - /usr/lib/apache2/modules/libphp5.so - /etc/apache2 - /etc/php/apache2 - - - 70_mod_php5.conf - - - - php-zip - Zip extension for PHP - - php-common - mit-kerberos - - - /usr/lib/php/modules/zip.so - /etc/php/cli/ext/10-php-zip.ini - /etc/php/ext/10-php-zip.ini - - - 10-php-zip.ini - - - - php-imap - Module for PHP to enable IMAP support - - php-common - libc-client - mit-kerberos - - - /usr/lib/php/modules/imap.so - /etc/php/ext/11-php-imap.ini - /etc/php/cli/ext/11-php-imap.ini - /etc/php/apache2/ext/11-php-imap.ini - - - 11-php-imap.ini - - - - php-fpm - FPM for PHP - - php-common - libxslt - libxslt - libjpeg-turbo - postgresql-lib - openldap-client - libmcrypt - - - /usr/sbin/php-fpm - /usr/share/man/man8/php-fpm.8 - /etc/php/ext/php-fpm.conf - /usr/share/fpm - /run - /var/log - - - System.Service - - - php-fpm.conf - - - - - 2016-06-09 - 5.6.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-20 - 5.6.20 - First release - Serdar Soytetir - kaptan@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 - - - - - 2016-06-08 - 2.1.26 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-07-05 - 2.1.26 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-08 - 1.13.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-23 - 1.13.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-08 - 1.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-23 - 1.2.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-08 - 4.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-19 - 4.3.0 - First release - Vedat Demir - vedat@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. - http://mirrors.syringanetworks.net/mariadb/mariadb-10.1.10/source/mariadb-10.1.10.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 - bzip2 - libgcc - libpcre - libxml2 - openssl - libaio - unixODBC - - - /usr/bin/mysql_config - /usr/include - /usr/lib/libmysqlclient.so - /usr/lib/libmysqlclient.so.18 - /usr/lib/libmysqlclient.so.18.0.0 - /usr/lib/libmysqlclient_r.so - /usr/lib/libmysqlclient_r.so.18 - /usr/lib/libmysqlclient_r.so.18.0.0 - /usr/lib/libmysqld.a - /usr/lib/libmysqlclient_r.a - /usr/lib/libmysqlclient.a - /usr/lib/libmysqld.so - /usr/lib/libmysqld.so.18 - /usr/lib/libmysqlservices.a - - - mysql-lib - - - - mariadb-client - MariaDB client libraries - MariaDB istemci uygulamaları - app:console - - mariadb-lib - libaio - zlib - libgcc - libpcre - ncurses - openssl - - - /usr/bin/mysql - /usr/bin/mysqladmin - /usr/bin/mysqlcheck - /usr/bin/mysqldump - /usr/bin/mysqlimport - /usr/bin/mysqlshow - /usr/bin/mysqlslap - - - mysql-client - - - - mariadb-server - MariaDB server and releated files - MariaDB sunucusu ve ilgili dosyalar - service - - mariadb-lib - mariadb-client - zlib - libgcc - openssl - libxml2 - unixODBC - - - /etc - /usr/bin/aria_chk - /usr/bin/aria_dump_log - /usr/bin/aria_ftdump - /usr/bin/aria_pack - /usr/bin/aria_read_log - /usr/bin/innochecksum - /usr/bin/msql2mysql - /usr/bin/my_print_defaults - /usr/bin/myisam_ftdump - /usr/bin/myisamchk - /usr/bin/myisamlog - /usr/bin/myisampack - /usr/bin/mysql_client_test - /usr/bin/mysql_convert_table_format - /usr/bin/mysql_embedded - /usr/bin/mysql_client_test_embedded - /usr/bin/mysqltest_embedded - /usr/bin/mysql_find_rows - /usr/bin/mysql_fix_extensions - /usr/bin/mysql_install_db - /usr/bin/mysql_plugin - /usr/bin/mysql_secure_installation - /usr/bin/mysql_setpermission - /usr/bin/mysql_tzinfo_to_sql - /usr/bin/mysql_upgrade - /usr/bin/mysql_waitpid - /usr/bin/mysql_zap - /usr/bin/mysqlaccess - /usr/bin/mysqlbinlog - /usr/bin/mysqlbug - /usr/bin/mysqld - /usr/bin/mysqld-post - /usr/bin/mysqld_multi - /usr/bin/mysqld_safe - /usr/bin/mysqldumpslow - /usr/bin/mysqlhotcopy - /usr/bin/mysqltest - /usr/bin/perror - /usr/bin/replace - /usr/bin/resolve_stack_dump - /usr/bin/resolveip - /usr/bin/tokuft_logprint - /usr/bin/tokuftdump - /usr/bin/wsrep_sst_common - /usr/bin/wsrep_sst_mysqldump - /usr/bin/wsrep_sst_rsync - /usr/bin/wsrep_sst_xtrabackup - /usr/bin/wsrep_sst_xtrabackup-v2 - /usr/bin/mytop - /usr/lib/mysql/plugin - /usr/share/mysql - /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 - - - - - 2016-06-08 - 10.1.10 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-24 - 10.1.10 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-08 - 1.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-30 - 1.3.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - sqlcipher - https://www.zetetic.net/sqlcipher/ - - Alihan Öztürk - alihan@pisilinux.org - - BSD - data - server.database - SQLite extension that provides transparent 256-bit AES encryption of database files - SQLCipher is an SQLite extension that provides transparent 256-bit AES encryption of database files. Pages are encrypted before being written to disk and are decrypted when read back. Due to the small footprint and great performance it’s ideal for protecting embedded application databases and is well suited for mobile development. - https://github.com/sqlcipher/sqlcipher/archive/v3.3.1.tar.gz - - readline-devel - tcl-devel - openssl-devel - sqlite-devel - ncurses-devel - - server/database/sqlcipher/pspec.xml - - - sqlcipher - SQLite extension that provides transparent 256-bit AES encryption of database files. - - openssl - readline - sqlite - tcl - ncurses - - - /usr/bin - /usr/lib/tcl8.6 - /usr/lib/lib* - /usr/share/doc - - - - sqlcipher-devel - Development files for sqlcipher. - - sqlcipher - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-08 - 3.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-22 - 3.3.1 - First release. - Alihan Öztürk - alihan@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 - - - - - 2016-06-08 - 2.5.4.26856 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-03 - 2.5.4.26856 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-08 - 9.3.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-03 - 9.3.9 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-08 - 0.9.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-28 - 0.9.16 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-15 - 4.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-30 - 4.2.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-08 - 0.9.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 0.9.9 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libmicrohttpd - http://www.gnu.org/software/libmicrohttpd - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - server.web - A compact API and implementation of HTTP web server - Bir HTTP sunucu uygulama programlama arayüzü (API) ve uygulaması - libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. - libmicrohttpd, bir HTTP sunucusunun diğer yazılımların parçası olarak çalışmasını kolaylaştıran kitaplıktır. - http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.49.tar.gz - - gnutls-devel - libgcrypt-devel - libgpg-error-devel - - server/web/libmicrohttpd/pspec.xml - - - libmicrohttpd - - gnutls - libgcrypt - libgpg-error - - - /usr/bin/microspdy2http - /usr/bin/demo - /usr/lib - /usr/share/man - /usr/share/info - /usr/share/doc - - - - libmicrohttpd-devel - Development files for libmicrohttpd - libmicrohttpd için geliştirme dosyaları - - gnutls-devel - - - libmicrohttpd - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2016-06-08 - 0.9.49 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-25 - 0.9.49 - First release - Ali Algul(gulle) - alialgul@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.20.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 - - - - - 2016-06-14 - 2.4.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-17 - 2.4.20 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - postfix - http://www.postfix.com/ - - PisiLinux Community - admins@pisilinux.org - - IPL-1 - service - server - A fast and secure drop-in replacement for sendmail - Hızlı ve güvenli bir e-posta sunucusu - Postfix is Wietse Venema's mailer that started life as an alternative to the widely-used Sendmail program. - Postfix, Wietse Venema tarafından yazılmış, sendmail a alternatif güçlü bir e-posta sunucusudur. - http://de.postfix.org/ftpmirror/official/postfix-3.1.0.tar.gz - - db-devel - libpcre-devel - openssl-devel - mariadb-lib - cyrus-sasl-devel - openldap-client - postgresql-lib - mit-kerberos - - - postfix-large-fs.patch - - server/postfix/pspec.xml - - - postfix - - db - pam - zlib - libpcre - openssl - mariadb-lib - cyrus-sasl - bind-libs - openldap-client - postgresql-lib - mit-kerberos - comar-api - - - /etc - /usr/bin - /usr/sbin - /usr/lib - /var - /usr/share/man - /usr/share/doc/postfix/AAAREADME - /usr/share/doc/postfix/COMPATIBILITY - /usr/share/doc/postfix/HISTORY - /usr/share/doc/postfix/LICENSE - /usr/share/doc/postfix/RELEASE_NOTES - /usr/share/doc/postfix/defaults - - - System.Package - System.Service - - - smtpd.conf - saslpass - main.cf - mkcert.sh - aliases - mailcap - smtp.pam - common.pam - common.pam - bounce.cf.tr - - - - postfix-docs - Help files for postfix package - Postfix paketine ait yardım dosyaları - - postfix - - - /usr/share/doc - - - - - 2016-06-08 - 3.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-27 - 3.1.0 - First release - Kamil Atlı - suvari@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 - - - - - 2016-06-08 - 9.10.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-05-08 - 9.10.2 - First release - Vedat Demir - vedat@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 - /var/lib/ntp - - - System.Package - System.Service - - - fedora/ntp.conf - fedora/ntpd.sysconfig - fedora/ntp.cryptopw - - - - 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 - - ntp-client - - - /usr/share/doc/ntp/html - - - - - 2016-06-08 - 4.2.8_p4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-01 - 4.2.8_p4 - First release - Stefan Gronewold - groni@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.44.tgz - - nss-devel - db-devel - openssl-devel - tcp-wrappers-devel - cyrus-sasl-devel - libtool-ltdl - icu4c-devel - unixODBC-devel - mariadb-server - libutil-linux-devel - e2fsprogs-devel - chrpath - groff - - - openldap-2.4.44-consolidated-2.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 - openssl - 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 - unixODBC - libutil-linux - 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 - libtool-ltdl-32bit - - - openssl-32bit - openldap-client - - - /usr/lib32 - - - - - 2016-06-15 - 2.4.44 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 2.4.44 - Release bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-03-28 - 2.4.44 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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-7.2p2.tar.gz - - libedit-devel - zlib-devel - openssl-devel - mit-kerberos - pam-devel - e2fsprogs-devel - - server/openssh/pspec.xml - - - openssh - - libedit - zlib - openssl - mit-kerberos - 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 - - - - - 2016-06-08 - 7.2_p2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 7.2_p2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - wget - http://www.gnu.org/software/wget/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:console - network.download - Command-line utility to retrieve files from remote systems - Http ve ftp gibi internet protokollerini kullanarak dosya indirebilen bir yazılım - GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. - GNU Wget, HTTP, HTTPS ve FTP gibi en çok kullanılan Internet protokollerini kullanarak dosyalara ulaşmak icin kullanılan bir özgür yazılım paketidir. Etkileşimsiz bir komutsatırı aracıdır, böylece X-Windows desteği olmadan, betikler, işlemler, terminal kullanımı gerçekleştirilebilir. - http://ftp.gnu.org/gnu/wget/wget-1.17.1.tar.xz - - openssl-devel - zlib-devel - - network/download/wget/pspec.xml - - - wget - - zlib - openssl - - - /etc - /usr/bin - /usr/share/doc - /usr/share/info - /usr/share/man - /usr/share/locale - - - - - 2016-06-09 - 1.17.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-25 - 1.17.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - protobuf - http://code.google.com/p/protobuf - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - network.misc - Google's data interchange format - Google'ın veri alış veriş biçimi - Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats. - Protokol Arabellekleri(protobuf) yapılandırılmış veriyi kodlamak için verimli bir biçimdir. Google kendi içindeki bütün RPC protokolleri ve dosya biçimleri için Protokol Arabelleklerini kullanmaktadır. - http://source.pisilinux.org/1.0/protobuf-3.0.0-pre.tar.gz - - python-setuptools - - network/misc/protobuf/pspec.xml - - - protobuf - - libgcc - - - /usr/bin - /usr/lib/libproto* - /usr/lib/python2.7/site-packages - /usr/share/doc - /usr/share/vim - /usr/share/emacs - - - - protobuf-devel - Development files for protobuf - protobuf için geliştirme dosyaları - - protobuf - - - /usr/include/google/protobuf - /usr/lib/pkgconfig - - - - - 2016-06-12 - 2.6.1 - 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/ - - - - - 2016-06-09 - 1.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 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://pkgs.fedoraproject.org/repo/pkgs/libconfig/libconfig-1.5.tar.gz/a939c4990d74e6fc1ee62be05716f633/libconfig-1.5.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 - - - - - 2016-06-09 - 1.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-03-04 - 1.4.9 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 0.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-29 - 0.8 - First release Stefan Gronewold(groni) groni@pisilinux.org @@ -95544,179 +89164,61 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 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 - - - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-13 - 1.0.1 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 0.12.99 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 0.12.99 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libcddb - http://libcddb.sourceforge.net/ + twolame + http://www.twolame.org 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 + 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 - libcddb + twolame + + libsndfile + /usr/bin /usr/lib - /usr/share/doc + /usr/share/doc/twolame + /usr/share/man - libcddb-devel - Development files for libcddb - libcddb için geliştirme dosyaları + twolame-devel + Development files for twolame + twolame için geliştirme dosyaları - libcddb + twolame /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig + /usr/share/doc/twolame/html 2016-06-09 - 1.3.2 + 0.3.13 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-20 - 1.3.2 + 2014-05-25 + 0.3.13 First release Kamil Atlı suvarice@gmail.com @@ -95725,1049 +89227,66 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libssh - http://www.libssh.org + lame + http://lame.sourceforge.net/ 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.7.3.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 - - - - - 2016-06-09 - 0.7.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-25 - 0.7.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libc-client - http://www.washington.edu/imap/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - service - network.misc - C-client mail access routines for IMAP and POP protocols - İmap protokolü için kitaplık - The c-client library is a common API for accessing mailboxes developed at the University of Washington. It is used mainly by php - Washington üniversitesi tarafından, POP ve IMAP protokolleri için geliştirilmiş genel kitaplıklar. Temel olarak php tarafından kullanılır. - ftp://ftp.cac.washington.edu/imap/imap-2007f.tar.gz - - pam-devel - openssl-devel - e2fsprogs-devel - mit-kerberos - - - imap-2007a-linux.diff - imap-2006c1-glibc-2.2.2.diff - imap-2006c1-krbpath.diff - imap-2001a-disable-mbox.patch - imap-2001a-overflow.patch - imap-2004a-doc.patch - imap-2007e-authmd5.patch - imap-2007e-shared.patch - uw-imap-2004c-amd64-so-fix.patch - - network/misc/libc-client/pspec.xml - - - libc-client - - mit-kerberos - - - /usr/include - /usr/lib - - - - - 2016-06-09 - 2007f - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-27 - 2007f - First release - Stefan Gronewold(groni) - groni@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 - - - - - 2016-06-09 - 0.30.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.30.0 - First release - Alihan Öztürk - alihan@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 + 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 - openssl-devel - libidn-devel - libcap-devel + ncurses-devel - network/misc/iputils/pspec.xml + multimedia/sound/lame/pspec.xml - iputils + lame - libcap - libidn + ncurses - /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 - - - - - 2016-06-09 - 20150815 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-01 - 20150815 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-09 - 3.2.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-15 - 3.2.25 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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. - https://github.com/FreeRDP/FreeRDP/archive/aa15327a3ac30710fbf23547ebcf6593e5e1701b/FreeRDP-aa15327a3ac30710fbf23547ebcf6593e5e1701b.tar.gz - - cups-devel - ffmpeg-devel - alsa-lib-devel - libXinerama-devel - xmlto - libX11-devel - libXi-devel - libXcursor-devel - libxkbcommon-devel - libxkbfile-devel - libXv-devel - libXrandr-devel - gstreamer-next-devel - gst-plugins-base-next-devel - glib2-devel - openssl-devel - zlib-devel - cmake - libxslt - util-linux - - network/misc/freerdp/pspec.xml - - - freerdp - - glib2 - libXi - libXv - ffmpeg - libX11 - libXext - openssl - alsa-lib - libXfixes - libXcursor - libXrender - libxkbfile - libXinerama - gstreamer-next - gst-plugins-base-next - - - /usr/bin - /usr/lib - /usr/share/freerdp - /usr/share/doc /usr/share/man - freerdp-devel + lame-docs + + /usr/share/doc + + + + lame-devel + Development files for lame + lame için geliştirme dosyaları - freerdp - openssl-devel + lame /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-14 - 2.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-01 - 1.0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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.11.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 - gst-libav-next - gobject-introspection-devel - gst-plugins-base-next-devel - gst-plugins-bad-next-devel - gst-plugins-good-next - which - icon-theme-hicolor - gperf - libSM-devel - - - install-minibrowser.patch - - 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-libav-next - gst-plugins-bad-next - gst-plugins-base-next - gst-plugins-good-next - gobject-introspection - - - /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 - - - - - 2016-06-18 - 2.4.11 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-9 - 2.4.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-05 - 2.4.9 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - filezilla - http://filezilla-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - network.ftp - Simple FTP Client - FTP ve SFTP istemcisi - Easy-to-use FTP Client which also supports SFTP. - Filezilla; dosyalarınızı ftp, sftp, ftps ile göndermenize ve indirmenize yarar - filezilla - mirrors://sourceforge/filezilla/FileZilla_3.14.1_src.tar.bz2 - - libidn-devel - dbus-devel - sqlite-devel - gnutls-devel - gtk2-devel - xdg-utils - wxGTK-devel - - - i18n-filezilla.desktop.patch - - network/ftp/filezilla/pspec.xml - - - filezilla - - wxGTK - dbus - sqlite - libgcc - glib2 - gnutls - xdg-utils - - - /usr/bin - /usr/share/applications - /usr/share/filezilla - /usr/share/pixmaps - /usr/share/icons - /usr/share/locale - /usr/share/doc - /usr/share/man - /usr/share/appdata/ + /usr/share/man/man3 2016-06-09 - 3.14.1 + 3.99.5 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-26 - 3.14.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libupnp - http://pupnp.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - network.analyzer - Librairie UPnP. - Portable UPnP library - Taşınabilir UPnP kitaplığı - Portabels UPnP Bibliothek - The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux. - http://sourceforge.net/projects/pupnp/files/pupnp/libUPnP%201.6.19/libupnp-1.6.19.tar.bz2 - - kernel-headers - - - pthread-flag.patch - - network/analyzer/libupnp/pspec.xml - - - libupnp - - /usr/lib - /usr/share/doc - - - - libupnp-devel - Development files for libupnp - libupnp için geliştirme dosyaları - - libupnp - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.6.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-31 - 1.6.19 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 0.6.31 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.6.31 + 2014-12-14 + 3.99.5 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -96776,2168 +89295,48 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - openslp - http://www.openslp.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - service - network.analyzer - An open-source implementation of Service Location Protocol - Servis Yer Protokolünün (Service Location Protocol - SLP) bir açık kaynak uyarlaması - Le Service Location Protocol (Protocole de Localisation de Service) est un protocole standard de recherche de l'IETF fournissant un framework (cadre de développement) pour permettre aux application résau de découvrir l'existence, la localisation et la configuration de services réseaux au sein des réseaux d'entreprises. - Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. - SLP (Service Location Protocol – Hizmet Yer Protokolu), ağlara bağlı hizmetlerin bulunabilmesi için gereken altyapıyı sağlar. - Service Location Protocol es un protocolo según estándar IETF, que provee un framework que permite a aplicaciones descubrir la existencia, locación y configuración de servicios de red en redes empresariales. - mirrors://sourceforge/openslp/openslp-2.0.0.tar.gz - - zlib-devel - openssl-devel - doxygen - docbook-xsl - - network/analyzer/openslp/pspec.xml - - - openslp - - openssl - - - /etc/slp.conf - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/doc/openslp/html/IntroductionToSLP - /usr/share/doc/openslp/html/UsersGuide - /usr/share/doc/openslp/html/faq* - /var/log - - - - openslp-server - OpenSLP server daemon - OpenSLP hizmet sunucusu - openslp-server contains ths OpenSLP server daemon to dynamically register services. - openslp-server, dinamik hizmet kaydı için gerekli OpenSLP sunucusunu içerir. - - openssl - openslp - - - /etc/slp.reg - /etc/slp.spi - /usr/sbin/slpd - - - - openslp-devel - Development files for openslp - openslp için geliştirme dosyaları - - openslp - zlib-devel - openssl-devel - - - /usr/include - /usr/share/doc/openslp/html/ProgrammersGuide - - - - - 2016-06-09 - 2.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-01 - 2.0.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libpcap - http://www.tcpdump.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - network.analyzer - A system-independent library for user-level network packet capture - Kullanıcı seviyesinde ağ paketi yakalamak için bir sistem bağımsız kitaplığı - libpcap (Packet CAPture) fourni un cadre de développement portable pour la surveillance réseau de bas niveau. On peut l'utiliser pour collecter des statistiques réseau, surveiller la sécurité, corriger le réseau, etc. - libpcap (Packet CAPture) provides a portable framework for low-level network monitoring. Applications include network statistics collection, security monitoring, network debugging, etc. - libpcap (Packet CAPture) düşük-seviye ağların izlenmesi için kullanılan bir kitaplıktır. Ağ istatistikleri, güvenlik izleyicisi, ağ hata gözleme gibi uygulamalar genellikle bu kitaplığı kullanır. - libpcap (Packet CAPture) facilita un framework portable para monitoreo de redes a a bajo nivel. Aplicaciones abarcan sistemas de estadísticas de red, monitoreo de seguridad, depuración de red, etc. - http://www.tcpdump.org/release/libpcap-1.7.4.tar.gz - - bluez-libs-devel - libnl-devel - libusb-devel - dbus-devel - - - libpcap-1.7.4-enable_bluetooth-1.patch - - network/analyzer/libpcap/pspec.xml - - - libpcap - - bluez - libnl - dbus - libusb - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - libpcap-devel - Development files for libpcap - libpcap için geliştirme dosyaları - - libpcap - - - /usr/bin/pcap-config - /usr/include - /usr/share/man/man3 - - - - - 2016-06-09 - 1.7.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-25 - 1.7.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - - - - 2016-06-15 - 1.5.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-30 - 1.5.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - qupzilla - http://www.qupzilla.com/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:gui - network.web - A fast open source browser based on WebKit core, written in Qt Framework, wayland port - A fast open source browser based on WebKit core, written in Qt Framework, wayland port - https://github.com/QupZilla/qupzilla/releases/download/v2.0.1/QupZilla-2.0.1.tar.xz - - openssl-devel - glib2-devel - qt5-base-devel - qt5-webkit-devel - qt5-webengine-devel - qt5-x11extras-devel - qt5-svg-devel - qt5-sql-sqlite - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-phonon-devel - qt5-sensors-devel - qt5-script-devel - qt5-designer-devel - qt5-webchannel-devel - qt5-location-devel - qt5-imageformats - qt5-linguist - xcb-util-devel - libvpx-devel - libgnome-keyring-devel - kdelibs4-support-devel - kwallet-devel - hunspell-devel - gdb-devel - libmng-devel - lcms2-devel - tiff-devel - jbigkit-devel - nss-devel - - - speeddial.diff - preferences.diff - browserwindow.diff - defines.diff - bookmarks_json.diff - - network/web/qupzilla/pspec.xml - - - qupzilla - Cross-platform QtWebKit browser - - libgcc - libxcb - openssl - qt5-base - qt5-webengine - qt5-x11extras - qt5-webchannel - qt5-declarative - hunspell - kwallet - - - /usr/bin - /usr/lib - /usr/qupzilla - /usr/share - /usr/share/appdata - /usr/share/applications - /usr/share/bash-completion - /usr/share/icons - /usr/share/pixmaps - /usr/share/qupzilla - /usr/share/doc - - - - - 2016-06-18 - 2.0.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - lynx - http://lynx.isc.org/ - - PisiLinux Community - admins@pisilinux.org - - GPL - app:gui - network.web - Lynx is the text web browser. - This is the top level page for the Lynx software distribution site hosted by the Internet Software Consortium. - http://invisible-mirror.net/archives/lynx/tarballs/lynx2.8.8rel.2.tar.bz2 - - ncurses-devel - openssl-devel - gettext-devel - - - lynx2-8-6-don-t-accept-command-line-args-to-telnet.patch - lynx2-8-6-fix-ugly-color.patch - lynx2-8-7-adapt-to-modern-file-localizations.patch - lynx2-8-7-tmp_dir.patch - - network/web/lynx/pspec.xml - - - lynx - - ncurses - openssl - gettext - - - /usr/bin - /etc - /usr/share - /usr/share/man - - - - - 2016-06-09 - 2.8.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-29 - 2.8.8 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - firefox - http://www.mozilla.org/projects/firefox/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - NPL-1.1 - GPLv2 - app:gui - network.web - Firefox Web Browser - Firefox Web Browser - Firefox Web-Browser - Firefox Web Tarayıcı - Przeglądarka WWW Firefox - Firefox Navegador Web - It is more secure and faster to browse the web with Firefox web browser. You can personalize your web browser with many specifications that is not enough to explain in two sentences. - Met Firefox gaat het browsen van het web veiliger en sneller. Het kan met vele toevoegingen aan uw persoonlijke wensen aangepast worden en heeft te veel mogelijkheden om in twee zinnen te beschrijven. - Mit dem Firefox Web-Browser surfen sie sicherer und schneller im Web. Sie können Ihren Web-Browser mit vielen Spezifikationen personalisieren, diese kann man nicht in zwei Sätzen erklären. - Internette gezinmek daha güvenli ve hızlı. İki cümle ile anlatılamayacak ek ozellikler ile açık kaynak kodlu web tarayıcınızı kişiselleştirebilirsiniz. - Mozilla Firefox – otwarta przeglądarka internetowa oparta na silniku Gecko, stworzona i rozwijana przez Korporację Mozilla oraz ochotników. - Navegue por la web de forma rápida y segura. Navegador web de código abierto que se puede personalizar con características adicionales. - firefox - https://ftp.mozilla.org/pub/firefox/releases/47.0/source/firefox-47.0.source.tar.xz - - mozconfig - pisilinux/browserconfig.properties - - - wget - yasm - zlib-devel - gtk3-devel - gtk2-devel - libXt-devel - libSM-devel - libpng-devel - libffi-devel - gnutls-devel - hunspell-devel - sqlite-devel - autoconf213 - alsa-lib-devel - dbus-glib-devel - libXcomposite-devel - libXScrnSaver-devel - libjpeg-turbo-devel - pulseaudio-libs-devel - gconf-devel - startup-notification-devel - libvpx-devel - libevent-devel - pulseaudio-libs-devel - gst-plugins-base-next-devel - nss-devel - nspr-devel - - - firefox-install-dir.patch - gtk3.patch - - network/web/firefox/pspec.xml - - - firefox - - atk - nss - dbus - gtk3 - gtk2 - nspr - zlib - cairo - glib2 - libXt - pango - libX11 - libffi - libgcc - libpng - pixman - sqlite - iconcan - libXext - icu4c - libvpx - alsa-lib - gconf - libevent - freetype - hunspell - dbus-glib - libXfixes - fontconfig - gstreamer-next - gdk-pixbuf - libXdamage - libXrender - libXcomposite - libjpeg-turbo - startup-notification - - - /etc/ - /usr/share/doc - /usr/bin - /usr/share/mime - /usr/libexec - /usr/lib/pkgconfig - /usr/share/pixmaps - /usr/lib/firefox - /usr/share/applications - - - System.Package - - - pisilinux/mozillafirefox.desktop - pisilinux/firefox-l10n.js - pisilinux/default-prefs.js - pisilinux/pisilinux_bookmark-tr.html - pisilinux/pisilinux_bookmark-en.html - pisilinux/pisilinux_bookmark-nl.html - pisilinux/pisilinux_bookmark-de.html - - - - firefox-lang-az - Firefox üçün Türkçe dil faylı - Firefox üçün Türkçe dil faylı - locale:az - system.locale - lang-az - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-az@firefox.mozilla.org - - - - firefox-lang-be - Беларуская мова пакет для Firefox - Беларуская мова пакет для Firefox - locale:be - system.locale - lang-be - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-be@firefox.mozilla.org - - - - firefox-lang-bs - Engleskom jeziku paket za Firefox - Engleskom jeziku paket za Firefox - locale:bs - system.locale - lang-bs - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-bs@firefox.mozilla.org - - - - firefox-lang-ca - Arxiu d'idioma català del Firefox - Arxiu d'idioma català del Firefox - locale:ca - system.locale - lang-ca - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-ca@firefox.mozilla.org - - - - firefox-lang-da - Dansk sprogpakke til Firefox - Dansk sprogpakke til Firefox - locale:da - system.locale - lang-da - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-da@firefox.mozilla.org - - - - firefox-lang-de - Deutsch Sprachdatei für Firefox - Deutsch Sprachdatei für Firefox - locale:de - system.locale - lang-de - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-de@firefox.mozilla.org - - - - firefox-lang-el - Ελληνική γλώσσα pack για τον Firefox - Ελληνική γλώσσα pack για τον Firefox - locale:el - system.locale - lang-el - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-el@firefox.mozilla.org - - - - firefox-lang-en-US - English language pack for Firefox - English language pack for Firefox - locale:en-US - system.locale - lang-en-US - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-en-US@firefox.mozilla.org - - - - firefox-lang-en-ZA - South African English language pack for Firefox - South African English language pack for Firefox - locale:en-ZA - system.locale - lang-en-ZA - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-en-ZA@firefox.mozilla.org - - - - firefox-lang-en-GB - British English language pack for Firefox - British English language pack for Firefox - locale:en-GB - system.locale - lang-en-GB - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-en-GB@firefox.mozilla.org - - - - firefox-lang-es-AR - Paquete de idioma español para Firefox - Paquete de idioma español para Firefox - locale:es-AR - system.locale - lang-es-AR - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-es-AR@firefox.mozilla.org - - - - firefox-lang-es-CL - Paquete de idioma español para Firefox - Paquete de idioma español para Firefox - locale:es-CL - system.locale - lang-es-CL - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-es-CL@firefox.mozilla.org - - - - firefox-lang-es-ES - Paquete de idioma español para Firefox - Paquete de idioma español para Firefox - locale:es-ES - system.locale - lang-es-ES - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-es-ES@firefox.mozilla.org - - - - firefox-lang-fi - Suomen kielen pack for Firefox - Suomen kielen pack for Firefox - locale:fi - system.locale - lang-fi - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-fi@firefox.mozilla.org - - - - firefox-lang-fr - Paquet de langue française pour Firefox - Paquet de langue française pour Firefox - locale:fr - system.locale - lang-fr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-fr@firefox.mozilla.org - - - - firefox-lang-hr - Hrvatski jezični paket za Firefox - Hrvatski jezični paket za Firefox - locale:hr - system.locale - lang-hr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-hr@firefox.mozilla.org - - - - firefox-lang-hu - Magyar nyelvű pack for Firefox - Magyar nyelvű pack for Firefox - locale:hu - system.locale - lang-hu - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-hu@firefox.mozilla.org - - - - firefox-lang-it - Language Pack italiano per Firefox - Language Pack italiano per Firefox - locale:it - system.locale - lang-it - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-it@firefox.mozilla.org - - - - firefox-lang-lt - Lietuvių kalbos paketas Firefox - Lietuvių kalbos paketas Firefox - locale:lt - system.locale - lang-lt - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-lt@firefox.mozilla.org - - - - firefox-lang-nl - Nederlands taalpakket voor Firefox - Nederlands taalpakket voor Firefox - locale:nl - system.locale - lang-nl - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-nl@firefox.mozilla.org - - - - firefox-lang-pl - Polski pakiet językowy dla programu Firefox - Polski pakiet językowy dla programu Firefox - locale:pl - system.locale - lang-pl - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-pl@firefox.mozilla.org - - - - firefox-lang-pt-BR - Pacote de idioma português para o Firefox - Pacote de idioma português para o Firefox - locale:pt-BR - system.locale - lang-pt-BR - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-pt-BR@firefox.mozilla.org - - - - firefox-lang-pt-PT - Pacote de idioma português para o Firefox - Pacote de idioma português para o Firefox - locale:pt-PT - system.locale - lang-pt-PT - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-pt-PT@firefox.mozilla.org - - - - firefox-lang-ro - Pachet de limba română pentru Firefox - Pachet de limba română pentru Firefox - locale:ro - system.locale - lang-ro - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-ro@firefox.mozilla.org - - - - firefox-lang-ru - Русский языковый пакет для Firefox - Русский языковый пакет для Firefox - locale:ru - system.locale - lang-ru - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-ru@firefox.mozilla.org - - - - firefox-lang-sr - Паковање српски језик за Фирефок - Паковање српски језик за Фирефок - locale:sr - system.locale - lang-sr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-sr@firefox.mozilla.org - - - - firefox-lang-sv-SE - Svenska språkpaket för Firefox - Svenska språkpaket för Firefox - locale:sv-SE - system.locale - lang-sv-SE - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-sv-SE@firefox.mozilla.org - - - - firefox-lang-tr - Firefox için Türkçe dil dosyası - Firefox için Türkçe dil dosyası - locale:tr - system.locale - lang-tr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-tr@firefox.mozilla.org - - - - firefox-lang-uk - Український мовний пакет для Firefox - Український мовний пакет для Firefox - locale:uk - system.locale - lang-uk - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-uk@firefox.mozilla.org - - - - - 2016-06-16 - 47.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 44.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 44.0.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - chromium-browser - http://code.google.com/chromium - - Admin PisiLinux - admin@pisilinux.org - - GPLv2 - app:gui - network.web - A WebKit powered web browser - Webkit tabanlı ağ tarayıcı - Chromium-browser is an open-source web browser, powered by WebKit. - Chromium, açık kaynak kodlu Webkit tabanlı bir ağ tarayıcıdır. - chromium-browser - http://gsdview.appspot.com/chromium-browser-official/chromium-51.0.2704.84.tar.xz - - alsa-lib-devel - at-spi2-atk-devel - atk-devel - cairo-devel - cups-devel - desktop-file-utils - faac-devel - ffmpeg-devel - flac-devel - pciutils-devel - fontconfig-devel - dbus-devel - gperf - jack-audio-connection-kit-devel - libavc1394-devel - libgnome-keyring-devel - speech-dispatcher-devel - gdk-pixbuf-devel - gsm-devel - gtk2-devel - harfbuzz-devel - hunspell-devel - icu4c-devel - imlib2-devel - lame-devel - libdc1394-devel - libdrm-devel - libevent-devel - libexif-devel - libjpeg-turbo-devel - libmtp-devel - libogg-devel - libopus-devel - libsecret-devel - libtheora-devel - libvdpau-devel - libvorbis-devel - libvpx-devel - libXcomposite-devel - libXcursor-devel - libXdamage-devel - libXext-devel - libXfixes-devel - libXi-devel - libXrandr-devel - libXrender-devel - libXScrnSaver-devel - libXtst-devel - minizip-devel - mit-kerberos - nss-devel - opencore-amr-devel - pango-devel - pulseaudio-libs-devel - python-lxml - schroedinger-devel - snappy-devel - speex-devel - valgrind - webp-devel - x264-devel - xdg-utils - xvid-devel - ninja - libffi-devel - yasm-devel - usbutils - - - PNGImageDecoder.patch - chromium-widevine.patch - pisilinux/gfx_jpeg_codec.patch - pisilinux/fix_build_with_newer_gcc.patch - - network/web/chromium-browser/pspec.xml - - - chromium-browser - - alsa-lib - dbus - atk - cairo - cups - flac - fontconfig - gdk-pixbuf - gtk2 - libevent - libjpeg-turbo - libopus - libXcomposite - libXcursor - libXdamage - libXext - libXfixes - libXi - libXrandr - libXrender - libXScrnSaver - libXtst - minizip - mit-kerberos - nss - pango - pepperflash - pulseaudio-libs - speech-dispatcher - speex - webp - pciutils - nspr - zlib - expat - glib2 - libX11 - libgcc - libpng - snappy - freetype - harfbuzz - - - /etc - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/icons - /usr/share/pixmaps - /usr/share/applications - - - master_preferences - chromium-browser.desktop - - - - - 2016-06-29 - 51.0.2704.84 - Version Bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-09 - 48.0.2564.97 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - - - - thunderbird - http://www.mozilla.org/projects/thunderbird/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - NPL-1.1 - GPLv2+ - app:gui - network.mail - The Stand-Alone Mozilla Mail Component - Thunderbird eposta istemcisi - Klient pocztowy Thunderbird - Thunderbird is a redesign of the Mozilla Mail Component. It is written using the XUL user interface language and designed to be cross-platform. - Thunderbird, Mozilla e-posta bileşeninin yeniden tasarlanmış halidir. Platform bağımsız olan Thunderbird, XUL kullanıcı arayüzü diliyle geliştirilmiştir. - Thunderbird to darmowy i rozszerzalny klient poczty z wieloma wspaniałymi funkcjami. - thunderbird - http://ftp.mozilla.org/pub/thunderbird/releases/45.1.1/source/thunderbird-45.1.1.source.tar.xz - - pisilinux/mozconfig - - - wget - yasm - nss-devel - gtk2-devel - zlib-devel - libXt-devel - libSM-devel - libpng-devel - sqlite-devel - libffi-devel - libXcomposite-devel - alsa-lib-devel - libjpeg-turbo-devel - dbus-devel - pixman-devel - dbus-glib-devel - hunspell-devel - libevent-devel - gconf-devel - libvpx-devel - pulseaudio-libs-devel - startup-notification-devel - - - thunderbird-install-dir.patch - - network/mail/thunderbird/pspec.xml - - - thunderbird - - atk - nss - gtk2 - nspr - zlib - cairo - glib2 - libXt - pango - libX11 - pixman - libgcc - gconf - icu4c - hunspell - libvpx - libpng - sqlite - iconcan - libXext - alsa-lib - libevent - freetype - libXfixes - fontconfig - gdk-pixbuf - libXdamage - libXrender - libXcomposite - libjpeg-turbo - startup-notification - - - /usr/share/doc - /usr/bin - /usr/share/pixmaps - /usr/lib/thunderbird - /usr/share/applications - /usr/share/icons/hicolor - - - vendor.js - thunderbird.desktop - pisilinux/sound.wav - - - - thunderbird-lang-be - Беларуская мова пакет для Thunderbird - Беларуская мова пакет для Thunderbird - locale:be - system.locale - lang-be - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-be@thunderbird.mozilla.org - - - - thunderbird-lang-ca - Arxiu d'idioma català del Thunderbird - Arxiu d'idioma català del Thunderbird - locale:ca - system.locale - lang-ca - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-ca@thunderbird.mozilla.org - - - - thunderbird-lang-da - Dansk sprogpakke til Thunderbird - Dansk sprogpakke til Thunderbird - locale:da - system.locale - lang-da - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-da@thunderbird.mozilla.org - - - - thunderbird-lang-de - Deutsch Sprachdatei für Thunderbird - Deutsch Sprachdatei für Thunderbird - locale:de - system.locale - lang-de - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-de@thunderbird.mozilla.org - - - - thunderbird-lang-el - Ελληνική γλώσσα pack για τον Thunderbird - Ελληνική γλώσσα pack για τον Thunderbird - locale:el - system.locale - lang-el - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-el@thunderbird.mozilla.org - - - - thunderbird-lang-en-US - English language pack for Thunderbird - English language pack for Thunderbird - locale:en_US - system.locale - lang-en-US - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-en-US@thunderbird.mozilla.org - - - - thunderbird-lang-es-AR - Paquete de idioma español para Thunderbird - Paquete de idioma español para Thunderbird - locale:es_AR - system.locale - lang-es-AR - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-es-AR@thunderbird.mozilla.org - - - - thunderbird-lang-es-ES - Paquete de idioma español para Thunderbird - Paquete de idioma español para Thunderbird - locale:es - system.locale - lang-es-ES - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-es-ES@thunderbird.mozilla.org - - - - thunderbird-lang-fi - Suomen kielen pack for Thunderbird - Suomen kielen pack for Thunderbird - locale:fi - system.locale - lang-fi - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-fi@thunderbird.mozilla.org - - - - thunderbird-lang-fr - Paquet de langue française pour Thunderbird - Paquet de langue française pour Thunderbird - locale:fr - system.locale - lang-fr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-fr@thunderbird.mozilla.org - - - - thunderbird-lang-hr - Hrvatski jezični paket za Thunderbird - Hrvatski jezični paket za Thunderbird - locale:hr - system.locale - lang-hr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-hr@thunderbird.mozilla.org - - - - thunderbird-lang-hu - Magyar nyelvű pack for Thunderbird - Magyar nyelvű pack for Thunderbird - locale:hu - system.locale - lang-hu - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-hu@thunderbird.mozilla.org - - - - thunderbird-lang-it - Language Pack italiano per Thunderbird - Language Pack italiano per Thunderbird - locale:it - system.locale - lang-it - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-it@thunderbird.mozilla.org - - - - thunderbird-lang-lt - Lietuvių kalbos paketas Thunderbird - Lietuvių kalbos paketas Thunderbird - locale:lt - system.locale - lang-lt - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-lt@thunderbird.mozilla.org - - - - thunderbird-lang-nl - Nederlands taalpakket voor Thunderbird - Nederlands taalpakket voor Thunderbird - locale:nl - system.locale - lang-nl - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-nl@thunderbird.mozilla.org - - - - thunderbird-lang-pl - Polski pakiet językowy dla programu Thunderbird - Polski pakiet językowy dla programu Thunderbird - locale:pl - system.locale - lang-pl - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-pl@thunderbird.mozilla.org - - - - thunderbird-lang-pt-BR - Pacote de idioma português para o Thunderbird - Pacote de idioma português para o Thunderbird - locale:pt_BR - system.locale - lang-pt-BR - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-pt-BR@thunderbird.mozilla.org - - - - thunderbird-lang-pt-PT - Pacote de idioma português para o Thunderbird - Pacote de idioma português para o Thunderbird - locale:pt - system.locale - lang-pt-PT - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-pt-PT@thunderbird.mozilla.org - - - - thunderbird-lang-ro - Pachet de limba română pentru Thunderbird - Pachet de limba română pentru Thunderbird - locale:ro - system.locale - lang-ro - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-ro@thunderbird.mozilla.org - - - - thunderbird-lang-ru - Русский языковый пакет для Thunderbird - Русский языковый пакет для Thunderbird - locale:ru - system.locale - lang-ru - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-ru@thunderbird.mozilla.org - - - - thunderbird-lang-sr - Паковање српски језик за Фирефок - Паковање српски језик за Фирефок - locale:sr - system.locale - lang-sr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-sr@thunderbird.mozilla.org - - - - thunderbird-lang-sv-SE - Svenska språkpaket för Thunderbird - Svenska språkpaket för Thunderbird - locale:sv_SE - system.locale - lang-sv-SE - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-sv-SE@thunderbird.mozilla.org - - - - thunderbird-lang-tr - Thunderbird için Türkçe dil dosyası - Thunderbird için Türkçe dil dosyası - locale:tr - system.locale - lang-tr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-tr@thunderbird.mozilla.org - - - - thunderbird-lang-uk - Український мовний пакет для Thunderbird - Український мовний пакет для Thunderbird - lang-uk - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-uk@thunderbird.mozilla.org - - - - - 2016-06-15 - 45.1.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-29 - 38.5.1 - First release - Osman Erkan - osman.erkan@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 - - - - - 2016-06-09 - 20120614 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2012-08-28 - 20120614 - First release - PisiLinux Community - admins@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 - - - - - 2016-06-09 - 2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-15 - 2.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - ModemManager - http://projects.gnome.org/NetworkManager + faac + http://www.audiocoding.com/ 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.4.12.tar.xz + 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 - glib2-devel - libgudev-devel - libxslt-devel - gobject-introspection-devel - polkit-devel - ppp-devel - libqmi-devel - libmbim-devel - intltool - gtk-doc - docbook-xsl - vala-devel - - network/connection/ModemManager/pspec.xml - - - ModemManager - - glib2 - libqmi - polkit - libmbim - libgudev - 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 - /usr/share/gtk-doc - /usr/share/polkit-1 - - - - 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 - - - - - 2016-06-09 - 1.4.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-25 - 1.4.12 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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.10.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 - libgudev-devel - libutil-linux-devel - ConsoleKit-devel + libmp4v2-devel - 0001-core-fix-failure-to-configure-routes-due-to-wrong-de.patch - disable_set_hostname.patch + mp4v2-1.9.patch + mp4v2-2.0.0.patch + altivec.patch - network/connection/NetworkManager/pspec.xml + multimedia/sound/faac/pspec.xml - NetworkManager + faac - dbus - nspr - glib2 - polkit - readline - dbus-glib - libutil-linux - nss - newt - ppp - libnl - libsoup - libgudev - bluez-libs - iproute2 - iptables - libmm-glib - ModemManager - wpa_supplicant - libndp - ConsoleKit - mobile-broadband-provider-info + libmp4v2 - /etc - /usr/share - /etc/dbus-1 + /usr/bin /usr/lib + /usr/share/doc/faac /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/ - - - - - 2016-06-15 - 1.0.10 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-25 - 1.0.10 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - systemRestart - - - - - - - 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ı + faac-devel + Development files for faac + faac için geliştirme dosyaları - augeas-devel - libxslt-devel - netcf - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2016-06-09 - 0.2.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-31 - 0.2.8 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - - - 2016-06-09 - 7.06 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-15 - 7.06 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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 - - - 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 + faac /usr/include @@ -98946,2959 +89345,141 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2016-06-09 - 2.5.2 + 1.28 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-04-13 - 2.5.2 + 2014-12-14 + 1.28 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Yusuf Aydemir + yusuf.aydemir@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://mirror.meleeweb.net/pub/linux/gentoo/distfiles/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 - - - - - 2016-06-09 - 2.4.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 2.4.6 - First release - Marcin Bojara - marcin@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 - - - - - 2016-06-09 - 1.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-19 - 1.5 - First release - Stefan Gronewold(groni) - groni@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.10.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 - libgudev-devel - intltool - - network/connection/network-manager-applet/pspec.xml - - - network-manager-applet - - gtk3 - atk - cairo - pango - libsecret - libnotify - libmm-glib - gdk-pixbuf - NetworkManager - dbus - glib2 - dbus-glib - libgudev - - - /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 - - - - - 2016-06-09 - 1.0.10 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 1.0.10 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - flashplugin - http://labs.adobe.com/technologies/flashplayer10 - - PisiLinux Community - admins@pisilinux.org - - Macromedia - library - network.plugin - Adobe Flash Player - Adobe Flash Oynatıcı - Adobe (Macromedia) Flash Player is an application to present interactive (and possibly multimedia-containing) content created using Adobe Flash. - Adobe (Macromedia) Flash Oynatıcısı, Adobe Flash ile oluşturulmuş içerikleri görüntülemeye olanak sağlayan bir uygulama. - flash-player-properties - https://fpdownload.adobe.com/get/flashplayer/pdc/11.2.202.621/install_flash_player_11_linux.i386.tar.gz - https://fpdownload.adobe.com/get/flashplayer/pdc/11.2.202.621/install_flash_player_11_linux.x86_64.tar.gz - - nss - gtk2 - libXt - libX11 - libXext - libXpm - - network/plugin/flashplugin/pspec.xml - - - flashplugin - - noDelta - - - atk - nss - gtk2 - nspr - cairo - glib2 - libXt - pango - libX11 - libXext - freetype - fontconfig - gdk-pixbuf - libXcursor - libXrender - - - /usr/share - /usr/lib - /usr/bin - - - - - 2016-06-14 - 11.2.202.621 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 11.2.202.569 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-15 - 11.2.202.569 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - 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) - https://sourceforge.net/projects/pisilinux/files/source/PepperFlash-20.0.0.306.tar.xz - network/plugin/pepperflash/pspec.xml - - - pepperflash - - libgcc - - - /etc/chromium-browser - /usr/lib/chromium-browser/PepperFlash - - - pepperflash-plugin.conf - - - - - 2016-06-09 - 20.0.0.306 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-15 - 20.0.0.306 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - freshplayerplugin - https://github.com/i-rinat/freshplayerplugin - - Osman Erkan - osman.erkan@pisilinux.org - - MIT - app:gui - network.plugin - ppapi2npapi compatibility layer - PPAPI-host NPAPI-plugin adapter. - https://github.com/i-rinat/freshplayerplugin/archive/v0.3.5.tar.gz - - cmake - ragel - gtk2-devel - libva-devel - libv4l-devel - ffmpeg-devel - openssl-devel - libvdpau-devel - alsa-lib-devel - libevent-devel - libXrandr-devel - libXcursor-devel - pulseaudio-libs-devel - - network/plugin/freshplayerplugin/pspec.xml - - - freshplayerplugin - - mesa - libva - ffmpeg - libv4l - alsa-lib - libevent - libvdpau - libXrandr - pepperflash - pulseaudio-libs - - - /usr/lib - /usr/share/doc - /usr/share/freshplayerplugin/ - - - - - 2016-06-14 - 0.3.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-15 - 0.3.4 - 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 - - - - - 2016-06-09 - 0.9.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-01 - 0.9.7 - First release - Stefan Gronewold(groni) - groni@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. - https://www.samba.org/ftp/rsync/src/rsync-3.1.2.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 - - - - - 2016-06-09 - 3.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-03-24 - 3.1.2 - First release - Stefan Gronewold(groni) - groni@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 - libaccounts-glib-devel - - network/chat/telepathy-mission-control/pspec.xml - - - telepathy-mission-control - - dbus - glib2 - dbus-glib - NetworkManager - telepathy-glib - libaccounts-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 - - - - - 2016-06-09 - 5.16.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 5.16.3 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 0.5.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 0.5.15 - First release - Alihan Öztürk - alihan@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 - dbus-devel - glib2-devel - dbus-glib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/vala/vapi - - - - - 2016-06-09 - 0.24.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 0.24.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-sunshine - http://telepathy.freedesktop.org/wiki + espeak + http://espeak.freedesktop.org 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 - - - - - 2016-06-09 - 2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 2.0 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 4.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 4.1.0 - First release - Alihan Öztürk - alihan@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 - glib2-devel - dbus-glib-devel - farstream-devel - gstreamer-next-devel - telepathy-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 0.6.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 0.6.2 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-15 - 2.10.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-20 - 2.10.11 - First release - Alihan Öztürk - alihan@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 + multimedia.sound + Software speech synthesizer (text-to-speech) + Yazılımsal konuşma sentezleyici (text-to-speech) + espeak produces good quality English speech. It uses a different synthesis method from other open source TTS engines and sounds quite different. + espeak iyi kalitede İngilizce konuşma sentezler. Diğer açık kaynaklı TTS motorlarından farklı bir sentezleme yöntemi kullandığından üretilen sesler biraz farklıdır. + http://sourceforge.net/projects/espeak/files/espeak/espeak-1.48/espeak-1.48.04-source.zip/download + + compile-voices.sh + - 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 - - - - - 2016-06-09 - 0.8.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-21 - 0.8.0 - First release - Alihan Öztürk - alihan@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 + coreutils + portaudio-devel + pulseaudio-libs-devel - fix_bork_in_tr_locale.patch + espeak-1.23-makefile_nostaticlibs.patch - network/chat/telepathy-salut/pspec.xml + multimedia/sound/espeak/pspec.xml - telepathy-salut + espeak - dbus - glib2 - sqlite - libsoup - libxml2 - openssl - dbus-glib - avahi-glib - avahi-libs - telepathy-glib + portaudio /usr/bin /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc + /usr/share/espeak-data /usr/share/man - - - - - 2016-06-09 - 0.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 0.8.1 - 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-doc - qt5-base-devel - qt5-assistant-devel - gobject-introspection-devel - dbus-glib-devel - libxml2-devel - farstream-devel - telepathy-farstream-devel - doxygen - - - gstreamer-1.6.patch - 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 + + espeak.1 + - telepathy-qt5-devel - Development files for telepathy-qt5 - telepathy-qt5 için geliştirme dosyaları + espeak-devel + Development headers for espeak + espeak için geliştirme başlıkları - telepathy-qt5 - qt5-base-devel - telepathy-glib-devel - telepathy-farstream-devel + espeak /usr/include - /usr/lib/pkgconfig 2016-06-09 - 0.9.6 + 1.48.04 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-30 - 0.9.6 + 2014-06-01 + 1.48.04 First release - Alihan Öztürk - alihan@pisilinux.org + Kamil Atlı + suvarice@gmail.com - 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 - - - - - 2016-06-09 - 0.18.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-21 - 0.18.3 - First release - Alihan Öztürk - alihan@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 - qt5-assistant-devel - qt5-doc - 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.* - /usr/share/doc - - - - telepathy-logger-qt-devel - Development files for telepathy-logger-qt - - telepathy-logger-qt - telepathy-glib-devel - qt5-base-devel - - - /usr/include - /usr/lib/cmake/TelepathyLoggerQt - - - - - 2016-06-09 - 15.04.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 15.04.0 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-09 - 0.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 0.2.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 - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 0.8.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 0.8.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - net-snmp - http://net-snmp.sourceforge.net/ + libmpcdec + http://www.musepack.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 + 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 - 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 - - - - - 2016-06-09 - 5.7.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-02 - 5.7.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - qbittorrent - http://www.qbittorrent.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - network.p2p - Qt4 based BitTorrent client - Qt4 kullanan bir BitTorrent istemcisi - qbittorrent is a BitTorrent client using the libtorrent library. - qbittorrent, libtorrent kitaplığını kullanan Qt4 tabanlı bir BitTorrent istemcisidir. - qbittorrent - http://sourceforge.net/projects/qbittorrent/files/qbittorrent/qbittorrent-3.3.1/qbittorrent-3.3.1.tar.gz - - qt5-base-devel - qt5-linguist - libtorrent-rasterbar-devel - boost-devel - zlib-devel - openssl-devel - geoip-devel - - network/p2p/qbittorrent/pspec.xml - - - qbittorrent - - qt5-base - libtorrent-rasterbar - boost - libnotify - zlib - libgcc - - - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/pixmaps - /usr/share/appdata - /usr/share/man - /usr/share/doc - - - - - 2016-06-09 - 3.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-12 - 3.3.1 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - libtorrent-rasterbar - http://www.rasterbar.com/products/libtorrent - - PisiLinux Community - admins@pisilinux.org - - BSD - library - network.p2p - Full featured torrent client library - Gelişmiş bir torrent kitaplığı - Rasterbar's C++ library that aims to be a good alternative to all the other bittorrent implementations around. It is a library and not a full featured client, although it comes with a working example client. - Libtorrent Rasterbar C++ kitaplığı, diğer bittorrent kitaplıklarına karşı iyi bir alternatifdir. - https://github.com/arvidn/libtorrent/releases/download/libtorrent-1_0_9/libtorrent-rasterbar-1.0.9.tar.gz - - openssl-devel - python-devel - boost-devel - boost-python - geoip-devel - zlib-devel - libtool - - network/p2p/libtorrent-rasterbar/pspec.xml - - - libtorrent-rasterbar - - openssl - python - libgcc - boost - geoip - boost-python - + libmpcdec /usr/lib - /usr/share/doc/libtorrent-rasterbar - libtorrent-rasterbar-devel - Development files for libtorrent-rasterbar - libtorrent-rasterbar için geliştirme dosyaları + libmpcdec-devel + Development files for libmpcdec + libmpcdec için geliştirme dosyaları - libtorrent-rasterbar + libmpcdec - - /usr/include - /usr/lib/pkgconfig - /usr/share/licenses - /usr/share/doc/libtorrent/html - - - - - 2016-06-14 - 1.0.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-12 - 1.0.9 - First release - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - farstream - http://www.freedesktop.org/wiki/Software/Farstream - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - library - network.voip - Farstream (formerly Farsight) - Audio/Video Communications Framework - Ses/Video İletişim Çatısı - Farstream (formerly Farsight) - Audio/Video Communications Framework - Farsight projesi, bilinen tüm ses/video konferans protokolleri ile uyum sağlayan bir çatı oluşturulması amacıyla yapılan bir çalışmadır. Bir taraftan, farklı akış protokolleri için eklentiler yazmayı mümkün kılan genel bir API sunarken, diğer taraftan da bu eklentileri kullanacak istemciler için bir API sunmaktadır. - http://freedesktop.org/software/farstream/releases/farstream/farstream-0.2.7.tar.gz - - libnice-devel - valgrind - gobject-introspection-devel - gstreamer-next-devel - gstreamer-devel - gst-plugins-base-next-devel - - network/voip/farstream/pspec.xml - - - farstream - - glib2 - libnice - gstreamer-next - gst-plugins-base-next - - - /usr/lib - /usr/lib/farstream-0.2 - /usr/lib/gstreamer-0.1 - /usr/lib/libfarstream-0.2* - /usr/share/doc - /usr/share/farstream - /usr/share/gir-1.0 - /usr/share - - - - farstream-devel - Development files for farstream - farstream için geliştirme dosyaları - - farstream - gstreamer-next-devel - gst-plugins-base-next-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 0.2.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 0.2.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - iptables - http://www.iptables.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.filter - Firewall, NAT and packet mangling tools - Güvenlik duvarı, ağ adres çevrimi ve paket çevrimi aracı - Contains iptables firewall, NAT and packet mangling tools. - Iptables kural tabanlı gelişmiş güvenlik duvarı uygulamasıdır. - ftp://ftp.netfilter.org/pub/iptables/iptables-1.6.0.tar.bz2 - - libnfnetlink-devel - - network/filter/iptables/pspec.xml - - - iptables - - libnfnetlink - - - /usr/bin - /sbin - /lib - /usr/lib - /usr/share/man - /etc - /var - /usr/share/xtables - - - System.Service - Network.Firewall - - - - iptables-devel - Development files for iptables - iptables için geliştirme dosyaları - - iptables - - - /usr/include - /usr/lib/*.a - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2016-06-09 - 1.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-20 - 1.6.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - iproute2 - http://linux-net.osdl.org/index.php/Iproute2 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.filter - Kernel routing and traffic control utilities - Çekirdek içinde yer alan ağ trafiği yönlendirme ve trafik kontrol araçları. - Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux. - Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur. - https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.4.0.tar.xz - - iptables-devel - linux-atm-devel - db-devel - elfutils - - network/filter/iproute2/pspec.xml - - - iproute2 - - linux-atm - iptables - db - elfutils - - - /etc - /sbin - /usr/sbin - /lib - /usr/lib - /usr/share/man - /usr/share/doc - /var/lib - - - - - 2016-06-09 - 4.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-05 - 4.4.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - glib-networking - http://git.gnome.org/browse/glib-networking/ - - 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 - - gnutls-devel - p11-kit-devel - ca-certificates - intltool - glib2-devel - - network/library/glib-networking/pspec.xml - - - glib-networking - - gnutls - p11-kit - glib2 - ca-certificates - - - /usr/lib/gio/modules - /usr/libexec - /usr/share - /usr/share/doc/glib-networking - - - - - 2016-06-09 - 2.38.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-30 - 2.38.2 - First release - Marcin Bojara - marcin@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. - https://archive.apache.org/dist/serf/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 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2016-06-09 - 1.3.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-06 - 1.3.8 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - - openssl - libgcc - - - /usr/bin - /usr/include - /usr/lib/node_modules - /usr/share/doc - /usr/share/man - /usr/share/systemtap - - - - - 2016-06-09 - 4.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-10 - 4.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 - libgudev-devel - - network/library/libmbim/pspec.xml - - - libmbim - - glib2 - libgudev - - - /usr/lib - /usr/share/man - /usr/bin/ - /usr/share/gtk-doc/ - /usr/libexec - /usr/share/doc/libmbim - - - - libmbim-devel - libmbim için geliştirme dosyaları - libmbim için geliştirme dosyaları - - libmbim - libgudev-devel - - - /usr/lib/pkgconfig - /usr/include/libmbim-glib/ - - - - - 2016-06-09 - 1.12.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-25 - 1.12.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libqmi - http://www.freedesktop.org/wiki/Software/libqmi/ - - Alihan Öztürk - alihan@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.12.6.tar.xz - - glib2-devel - gobject-introspection-devel - - network/library/libqmi/pspec.xml - - - libqmi - - glib2 - gobject-introspection - - - /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 - - - - - 2016-06-09 - 1.12.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-25 - 1.12.6 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@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.2/ConsoleKit2-1.0.2.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 - - - - - 2016-06-08 - 1.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 1.0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - calamares-theme-pisilinux - http://www.pisilinux.org - - Pisi Linux Community - admin@pisilinux.org - - GPLv2 - data - system.installer - PiSi Linux theme files for Calamares - Calamares sistem yükleyici için Pisi Linux tema dosyaları - calamares-theme includes PiSi Linux theme files for Calamares(Distribution-independent installer framework). - calamares-theme Calamares (Dağıtım bağımsız sistem yükleyici) projesi için Pisi Linux tema dosyaları içerir. - https://github.com/PisiLinuxNew/calamares-pisilinux/archive/0.1a.tar.gz - system/installer/calamares-theme-pisilinux/pspec.xml - - - calamares-theme-pisilinux - - /usr/share/calamares - - - - - 2016-06-08 - 0.1a - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-09 - 0.1a - First release - Pisi Linux Community - admin@pisilinux.org - - - - - - Calamares - http://pisilinux.org - - Ergün Salman - Poyraz76@pisilinux.org - - LGPLv2 - system.installer - A distribution independent installer framework - Dağıtım bağımsız sistem yükleyici - Calamares is a distribution-independent system installer, with an advanced partitioning feature for both manual and automated partitioning operations. - Calamares dağıtım bağımsız bir sistem yükleyicidir. - https://github.com/calamares/calamares/releases/download/v2.2/calamares-2.2.tar.gz - - gettext-devel - yaml-cpp - boost-devel - boost-python3 - ki18n-devel - kcoreaddons - solid-devel - parted-devel - qt5-linguist - qt5-svg-devel - udisks2-devel - libyaml-devel - python3-devel - kconfig-devel - qt5-base-devel - polkit-qt-devel - qt5-webkit-devel - libatasmart-devel - kcoreaddons-devel - qt5-designer-devel - qt5-assistant-devel - libutil-linux-devel - qt5-declarative-devel - libxkbfile-devel - e2fsprogs-devel - squashfs-tools - efibootmgr-devel - rsync - gptfdisk - extra-cmake-modules - kpmcore-devel - kiconthemes-devel - kio-devel - kservice-devel - kconfig-devel - kparts-devel - - - pisi_locale.patch - pisi_set_hostname.patch - mudur_module.patch - no_fsck_and_pymouth.patch - - system/installer/Calamares/pspec.xml - - - Calamares - - libgcc - boost - boost-python3 - python3 - parted - solid - ki18n - rsync - kconfig - kcoreaddons - qt5-svg - qt5-webkit - libatasmart - qt5-declarative - rsync - ntfs-3g - qt5-base - gptfdisk - e2fsprogs - dmidecode - efibootmgr - libxkbfile - dosfstools - libutil-linux - util-linux - kpmcore - partitionmanager - kiconthemes - kio - kservice - kconfig - kparts - calamares-theme-pisilinux - - - /usr/bin - /usr/lib - /usr/share/* - /usr/lib/calamares/ - /usr/include/libcalamares/* - /usr/lib/cmake/Calamares/ - /usr/lib/calamares/modules/* - /usr/libexec/ - /etc/languages - - - calamares.desktop - languages - - - - - 2016-06-08 - 2.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-03 - 2.2 - First Release. - Ergün Salman - Poyraz76@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/syslinux-6.03.tar.xz - - nasm - asciidoc - efibootmgr-devel - upx - libutil-linux-devel - - - 0001-Add-install-all-target-to-top-side-of-HAVE_FIRMWARE.patch - 0035-SYSAPPEND-Fix-space-stripping.patch - gcc-fix-alignment.patch - dont-guess-alignment.patch - btrfs-fix.patch - - system/boot/syslinux/pspec.xml - - - syslinux - - mtools - libutil-linux - mtools - efibootmgr - util-linux - dosfstools - gptfdisk - 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 - - - - - 2016-06-08 - 6.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 6.03 - First release - Alihan Öztürk - alihan@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ç - https://github.com/rhinstaller/efibootmgr/archive/efibootmgr-0.12.tar.gz - - pciutils-devel - zlib-devel - efivar - efivar-devel - - system/boot/efibootmgr/pspec.xml - - - efibootmgr - - efivar - - - /usr/sbin - /usr/share/man - /usr/lib/* - - - - efibootmgr-devel /usr/include - 2016-06-08 - 0.12 + 2016-06-09 + 1.2.6 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-01 - 0.12 - First release - Alihan Öztürk - alihan@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 - - - - - 2016-06-08 - 0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-08-04 - 0.2 + 2014-05-20 + 1.2.6 First release Serdar Soytetir kaptan@pisilinux.org @@ -101907,58 +89488,3081 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - gfxboot - https://github.com/openSUSE/gfxboot + 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 + + + libogg-32bit + libgcc + flac + + + /usr/lib32 + + + + + 2016-06-09 + 1.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.3.1 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-12-03 + 1.3.1 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libsamplerate + http://www.mega-nerd.com/SRC/ 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.12.tar.gz + 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 - xmlto - freetype-devel - util-linux - libxslt - lynx + libsndfile-devel - productname.patch - no-theme-no-git.patch + dontbuild-tests-examples.patch - system/boot/gfxboot/pspec.xml + multimedia/sound/libsamplerate/pspec.xml - gfxboot + libsamplerate - perl-HTML-Parser - freetype + libsndfile - /usr/sbin - /usr/share/gfxboot/bin - /usr/share/gfxboot + /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 + + - 2016-06-08 - 4.5.12 + 2016-06-09 + 0.1.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 0.1.8 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 0.7.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.7.4 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + timidity-shompatches + http://www.i.h.kyoto-u.ac.jp + + PisiLinux Community + admins@pisilinux.org + + as-is + data + multimedia.sound + Sound patches for Timidity (Shom) + Timidity ses bilgisi dosyaları + Containts Matsumoto Shoji's patch collection for TiMidity (Roland SC-55 style) + Matsumoto Shoji'nin TiMidity (Roland SC-55 stili) ses bilgisi dosyaları + https://sourceforge.net/projects/pisilinux/files/source/shominst-0409.zip + multimedia/sound/timidity-shompatches/pspec.xml + + + timidity-shompatches + + /usr/share/timidity + + + + + 2016-06-10 + 0.409 Release Bump Pisi Linux Community admin@pisilinux.org 2016-04-04 - 4.5.12 + 0.409 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + timidity + http://timidity.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + multimedia.sound + Software synthesizer and MIDI converter + MIDI WAV dönüştürücüsü + Timidity is a software synthesizer, MIDI player and MIDI to other sound formats converter which can also emulate a midi port. + OSS ve ALSA ses çıkışı üretebilen MIDI'den WAV oluşturabilen ve midi aygıt emulasyonu yapabilen sunucu + mirrors://sourceforge/timidity/TiMidity++-2.14.0.tar.bz2 + + alsa-lib-devel + libao-devel + libXaw-devel + flac-devel + libvorbis-devel + speex-devel + libXext-devel + libogg-devel + jack-audio-connection-kit-devel + gtk2-devel + Xaw3d-devel + glib2-devel + libX11-devel + ncurses-devel + libpng-devel + + + timidity++-2.14.0-revert-for-required-ctl_speana_data-function.patch + + multimedia/sound/timidity/pspec.xml + + + timidity + + alsa-lib + libao + libXaw + flac + libvorbis + speex + libXext + libogg + jack-audio-connection-kit + gtk2 + timidity-shompatches + Xaw3d + glib2 + libX11 + libpng + ncurses + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/timidity + + + System.Service + + + timidity.conf.d + timidity.cfg + timidity-update + + + + + 2016-06-09 + 2.14.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-21 + 2.14.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.11.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-15 + 0.11.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-26 + 1.2.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 19.20140130 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-21 + 19.20140130 + First release + Alihan Öztürk + alihan@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 + alsa-lib-32bit + pulseaudio-libs-32bit + + + libmikmod + audiofile-32bit + alsa-lib-32bit + pulseaudio-libs-32bit + + + /usr/lib32 + + + + + 2016-06-09 + 3.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-19 + 3.3.7 + First release + Stefan Gronewold + groni@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.7.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 + jansson-devel + mpg123-devel + intltool + + 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 + jansson + mpg123 + 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 + + + + + 2016-06-09 + 0.7.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-17 + 0.7.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-12-25 + 0.6.2 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-09 + 0.0.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.0.5 + First release + Serdar Soytetir + kaptan@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. + https://freedesktop.org/software/pulseaudio/releases/pulseaudio-8.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/pulseaudio/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 + + + pulseaudio-libs + dbus-32bit + glib2-32bit + libsndfile-32bit + json-c-32bit + + + /usr/lib32 + + + + + 2016-06-09 + 8.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 8.0 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-24 + 8.0 + First release + Alihan Öztürk + alihan@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 + + openal + + + /usr/lib32 + + + + + 2016-06-09 + 1.15.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.15.1 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-25 + 1.15.1 + First release + Alihan Öztürk + alihan@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 + cmake + + 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 + + + + + 2016-06-09 + 1.1.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-26 + 1.1.6 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + kaffeine + http://www.kde.org/applications/multimedia/kaffeine/ + + PisiLinux Community + admins@pisilinux.org + + GPLv1 + app:gui + multimedia.video + Kaffeine Media Player for KDE5 + KDE4 için Kaffeine Ortam Oynatıcı + Awesome media player and vcr for KDE5. + KDE4 için harika bir video oynatıcı + https://github.com/KDE/kaffeine/archive/2.0.1.tar.gz + + qt5-base-devel + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-mysql + qt5-assistant-devel + qt5-designer-devel + libXScrnSaver-devel + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + kio-devel + solid-devel + knotifications-devel + kidletime-devel + kdbusaddons-devel + libX11-devel + libXext-devel + gettext-devel + qt5-x11extras-devel + libv4l-devel + vlc-devel + kconfig-devel + kcoreaddons-devel + kconfigwidgets-devel + pkgconfig + extra-cmake-modules + + multimedia/video/kaffeine/pspec.xml + + + kaffeine + + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-mysql + qt5-base + libXScrnSaver + ki18n + kwidgetsaddons + kxmlgui + kio + solid + knotifications + kidletime + kdbusaddons + libX11 + qt5-x11extras + vlc-libs + libgcc + libv4l + kconfig + kcoreaddons + kconfigwidgets + + + /usr/share + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/icons + + + + + 2016-06-09 + 2.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-04 + 2.0.1 + First Release. + Stefan Gronewold + groni@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. + https://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/gstreamer-vaapi-0.7.0.tar.bz2 + + gtk-doc + yasm-devel + mesa-devel + libva-devel + docbook-xsl + libdrm-devel + libxslt-devel + wayland-devel + wayland-cursor + gstreamer-devel + libXrandr-devel + libXrender-devel + gstreamer-next-devel + gst-plugins-bad-devel + gst-plugins-base-devel + gst-plugins-base-next-devel + + multimedia/video/gstreamer-vaapi/pspec.xml + + + gstreamer-vaapi + + yasm + mesa + libva + eudev + glib2 + libX11 + libdrm + gstreamer + libXrandr + libXrender + wayland-client + gst-plugins-bad + gst-plugins-base + + + /usr/share/doc + /usr/share/gtk-doc + /usr/lib + + + + gstreamer-vaapi-devel + Development files for gstreamer-vaapi + gstreamer için geliştirme dosyaları + + libva-devel + gstreamer-vaapi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 0.7.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-15 + 0.7.0 + Rebuild for new gstreamer-vaapi-next + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-02 + 0.7.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-07-23 + 0.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qmplay2 + http://zaps166.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPL + app:gui + multimedia.video + QMPlay2 is a video and audio player which can play most formats and codecs + It can play all formats supported by FFmpeg, libmodplug (including J2B and SFX). It also supports Audio CD, raw files, Rayman 2 music and chiptunes. It contains YouTube and Prostopleer browser. + https://sourceforge.net/projects/zaps166/files/QMPlay2/QMPlay2-src-16.06.01.tar.xz + + qt5-base-devel + qt5-qdbusviewer + qt5-x11extras-devel + qt5-assistant-devel + qt5-designer-devel + qt5-linguist + pkgconfig + cmake + ffmpeg-devel + libva-devel + libvdpau-devel + taglib-devel + portaudio-devel + openal-devel + libcdio-devel + libcddb-devel + libass-devel + libX11-devel + gst-libav-next + pulseaudio-libs-devel + libXv-devel + mesa-devel + mesa-glu-devel + alsa-lib-devel + libva-devel + + multimedia/video/qmplay2/pspec.xml + + + qmplay2 + + qt5-base + qt5-x11extras + alsa-lib + mesa + libXv + libva + ffmpeg + libX11 + libcdio + libass + libgcc + taglib + libcddb + libvdpau + pulseaudio-libs + + + /usr/bin + /usr/share/qmplay2 + /usr/share/icons + /usr/share/applications + /usr/lib + /usr/share/doc + + + QMPlay2.png + QMPlay2.desktop + QMPlay2_enqueue.desktop + + + + + 2016-06-19 + 16.06.01 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-12 + 16.05.06 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-09 + 1.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 1.0.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + https://sourceforge.net/projects/pisilinux/files/source/last_stable_x264.tar.bz2 + + yasm-devel + l-smash-devel + + multimedia/video/x264/pspec.xml + + + x264 + + l-smash + + + /usr/bin + /usr/lib + + + + x264-devel + Development files for x264 + x264 için geliştirme dosyaları + + x264 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-13 + 2245.12062016 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-09 + 2245 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-02 + 2245 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-18 + 1.3 + First release + Serdar Soytetir + kaptan@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 + + + libtheora + libogg-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 + + + + + 2016-06-09 + 1.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.1.1 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.1.1 + First release + Serdar Soytetir + kaptan@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 + + + xine-lib-ffmpeg3.patch + 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 + + + + + 2016-06-14 + 1.2.6 + Release bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.2.6 + First release + Kamil Atlı + suvari@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 + libxml2-32bit + + + gstreamer + glib2-32bit + libxml2-32bit + + + /usr/lib32 + + + + + 2016-06-09 + 0.10.36 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 0.10.36 + Release bump + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-06-26 + 0.10.36 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + gstreamer-vaapi-next + http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2.1 + library + multimedia.video + GStreamer Multimedia Framework VA Plugins + gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. + https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.8.1.tar.xz + + gtk-doc + mesa-devel + libva-devel + docbook-xsl + libdrm-devel + wayland-devel + libxslt-devel + wayland-cursor + libXrandr-devel + libXrender-devel + gstreamer-next-devel + gst-plugins-bad-next-devel + gst-plugins-base-next-devel + + multimedia/video/gstreamer-vaapi-next/pspec.xml + + + gstreamer-vaapi-next + GStreamer-next Multimedia Framework VA Plugins. + + mesa + eudev + glib2 + libva + libX11 + libdrm + libXrandr + libXrender + gstreamer-next + wayland-client + gst-plugins-bad-next + gst-plugins-base-next + + + /usr/lib + /usr/share/gtk-doc/ + /usr/share/doc + + + gstreamer-vaapi-next + gstreamer-vaapi-next-devel + + + gstreamer-vaapi-next + gstreamer-vaapi-next-devel + + + + + 2016-06-09 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-14 + 1.8.1 + First release. + Kamil Atlı + suvari@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 + 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 + curl-devel + zvbi-devel + openal-devel + opencv-devel + libopus-devel + orc-devel + libcdaudio-devel + libkate-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 + curl + zvbi + openal + libkate + libopus + openssl + rtmpdump + libcdaudio + 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 + + + + + 2016-06-10 + 0.10.23 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-14 + 0.10.23 + rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-31 + 0.10.23 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 0.1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.1.3 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-10 + 0.10.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-10 + 0.10.19 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + smplayer + http://smplayer.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.video + A complete front-end for MPlayer + Gelişmiş bir mplayer önyüzü + SMPlayer es un frontend de Mplayer + smplayer is Qt application which intends to be a complete front-end for MPlayer, from basic features like playing videos, DVDs, and VCDs to more advanced features like support for MPlayer filters and more. + smplayer Qt ile yazılmış, gelişmiş bir mplayer önyüzüdür. Basit özelliklerinin yanı sıra, TV, DVD, VCD oynatma, mplayer filtrelerini kullanabilme gibi yetenekleri de bulunmaktadır. + SMPlayer es un reproductor multimedia gratuito y para Windows y Linux con códecs incorporados, que puede reproducir prácticamente cualquier formato de vídeo y audio. No necesita ningún códec externo. Simplemente instala SMPlayer y podrás reproducir cualquier formato sin la molestia de tener que buscar e instalar paquetes de códecs. + smplayer + http://sourceforge.net/projects/smplayer/files/SMPlayer/15.11.0/smplayer-15.11.0.tar.bz2 + http://sourceforge.net/projects/smplayer/files/SMPlayer-themes/15.12.0/smplayer-themes-15.12.0.tar.bz2 + http://sourceforge.net/projects/smplayer/files/SMPlayer-skins/15.2.0/smplayer-skins-15.2.0.tar.bz2 + + qt5-base-devel + qt5-script-devel + libxkbcommon-devel + zlib-devel + qt5-linguist + + multimedia/video/smplayer/pspec.xml + + + smplayer + + qt5-base + qt5-script + smtube + zlib + libgcc + mpv-player + + + /usr/bin + /usr/share/smplayer + /usr/share/applications + /usr/share/icons + /usr/share/kde4 + /usr/share/man + /usr/share/doc/smplayer + + + + + 2016-06-09 + 15.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 15.11 + First release + Stefan Gronewold + groni@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. + https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.8.1.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 + + + + + 2016-06-10 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-02 + 1.8.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-03-29 + 1.6.3 + First release + Yusuf Aydemir + yusuf.aydemir@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.19-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 + libXrandr-devel + + + 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 + + + + + 2016-06-09 + 2.4.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-14 + 2.4.19 + Version bump. + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 0.10.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-29 + 0.10.11 + First release + Alihan Öztürk + alihan@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 + libquicktime-ffmpeg3.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 + + + + + 2016-06-13 + 1.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-13 + 1.2.4 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 0.4.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-01 + 0.4.5 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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-3.0.2.tar.xz + + 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 + yasm-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 + + + + + 2016-06-13 + 3.0.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-09 + 2.8.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-16 + 2.8.6 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-20 + 1.4.2 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -101967,326 +92571,213 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - plymouth - http://cgit.freedesktop.org/plymouth + gstreamer-next + http://gstreamer.freedesktop.org/ PisiLinux Community admins@pisilinux.org - GPLv2+ - app:console + LGPLv2.1 library - system.boot - Graphical Boot Animation and Logger - Açılış animasyonu ve oturum açma altyapısı - plymouth provides an attractive graphical boot animation in place of the text messages that normally get shown. Text messages are instead redirected to a log file for viewing after boot. - plymouth, sistemin açılışı esnasında estetik ve ilgi çekici bir grafiksel animasyon altyapısı sunan bir uygulamadır. - http://source.pisilinux.org/1.0/plymouth-0.8.8.tar.gz - https://sourceforge.net/projects/pisilinux/files/source/plymouth-theme-pisilinux-0.3.tar.xz - - pisilinux/generate-flist.py - + 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. + https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.8.1.tar.xz - kernel-headers - libdrm-devel - libpng-devel - cairo-devel - pango-devel - graphite2-devel - harfbuzz-devel - glib2-devel - gtk2-devel + check + valgrind + gobject-introspection-devel + libxml2-devel + ghostscript-devel - - pisilinux/disable-source-code-tracing.patch - pisilinux/adapt-theme-script.patch - pisilinux/add-pisilinux-theme.patch - mageia/plymouth-restore-suspend.patch - fedora/fix-crash.patch - - system/boot/plymouth/pspec.xml + multimedia/video/gstreamer-next/pspec.xml - plymouth + gstreamer-next - libdrm - plymouth-core-libs - plymouth-theme-pisilinux + glib2 - /bin - /sbin - /usr/sbin - /bin/plymouth - /usr/libexec/plymouth - /etc/plymouth + /usr/bin /usr/lib - /lib - /usr/lib/plymouth/text.so - /usr/lib/plymouth/details.so - /usr/lib/plymouth/renderers - /usr/share/pixmaps - /usr/share/plymouth - /usr/share/plymouth/themes - /usr/share/plymouth/themes/details - /usr/share/plymouth/themes/text + /usr/libexec + /usr/share/gir-1.0 + /usr/share/bash-completion /usr/share/doc + /usr/share/gtk-doc + /usr/share/locale /usr/share/man - /var/lib/plymouth - /run/plymouth - /var/spool/plymouth - /usr/lib/tmpfiles.d/plymouth.conf - - - System.Package - - - tmpfiles.conf - pisilinux/boot-duration - pisilinux/initramfs.files - pisilinux/images/white-head.png - fedora/charge.plymouth - - - - plymouth-core-libs - Plymouth core libraries - plymouth-core-libs contains the libply and libply-splash-core libraries used by Plymouth. - - /lib/libply-splash-core.so* - /lib/libply.so* - plymouth-graphics-libs - Plymouth graphics libraries - plymouth-graphics-libs contains the libply-splash-graphics library used by graphics Plymouth splashes. + gstreamer-next-32bit + 32-bit shared libraries for gstreamer + gstreamer için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glib2-32bit + - plymouth-core-libs - libpng + glib2-32bit + gstreamer-next - /usr/lib/libply-splash-graphics.so* + /usr/lib32 - plymouth-devel - Development headers and files for plymouth + gstreamer-next-devel + Development files for gstreamer + gstreamer için geliştirme dosyaları - plymouth + gstreamer-next + glib2-devel /usr/include /usr/lib/pkgconfig - - - - plymouth-renderer-x11 - An X11 renderer for debugging purposes - - plymouth-core-libs - cairo - gtk2 - atk - cairo - pango - gdk-pixbuf - fontconfig - - - /usr/lib/plymouth/renderers/x11* - - - - plymouth-utils - Plymouth related utilities - plymouth-utils contains utilities that integrate with Plymouth including a boot log viewing application. - - pango - gtk2 - - - /usr/bin/plymouth-log-viewer - /usr/share/gdm/autostart/LoginWindow/plymouth-log-viewer.desktop - - - - plymouth-plugin-label - Plymouth label plugin - plymouth-plugin-label contains the label control plugin for Plymouth. It provides the ability to render text on graphical boot splashes using pango and cairo. - - cairo - pango - plymouth-core-libs - plymouth-graphics-libs - - - /usr/lib/plymouth/label.so - - - - plymouth-plugin-fade-throbber - Plymouth Fade-Throbber plugin - plymouth-plugin-fade-throbber contains the "Fade-In" boot splash plugin for Plymouth. It features a centered image that fades in and out while other images pulsate around during system boot up. - - plymouth-graphics-libs - plymouth-core-libs - - - /usr/lib/plymouth/fade-throbber.so - - - - plymouth-theme-spinner - Spinner theme for Plymouth - plymouth için Spinner teması - plymouth-theme-spinner contains the "Spinner" boot splash theme for Plymouth. It features a simple theme with a small spinner on a dark background. - - plymouth-plugin-two-step - - - /usr/share/plymouth/themes/spinner - - - - plymouth-theme-fade-in - Fade-in theme for Plymouth - plymouth-theme-fade-in contains the "Fade-In" boot splash theme for Plymouth. It features a centered logo that fades in and out while stars twinkle around the logo during system boot up. - - plymouth-plugin-fade-throbber - - - /usr/share/plymouth/themes/fade-in - - - - plymouth-plugin-throbgress - Plymouth Throbgress plugin - plymouth-plugin-throbgress contains the "throbgress" boot splash plugin for Plymouth. It features a centered logo and animated spinner that spins repeatedly while a progress bar advances at the bottom of the screen. - - plymouth-plugin-label - plymouth-graphics-libs - plymouth-core-libs - - - /usr/lib/plymouth/throbgress.so - - - - plymouth-theme-spinfinity - Plymouth Spinfinity theme - plymouth için Spinfinity teması - plymouth-theme-spinfinity contains the "Spinfinity" boot splash theme for Plymouth. It features a centered logo and animated spinner that spins in the shape of an infinity sign. - - plymouth-plugin-throbgress - - - /usr/share/plymouth/themes/spinfinity - - - - plymouth-plugin-space-flares - Plymouth space-flares plugin - plymouth-plugin-space-flares contains the "space-flares" boot splash plugin for Plymouth. It features a corner image with animated flares. - - plymouth-plugin-label - plymouth-graphics-libs - plymouth-core-libs - - - /usr/lib/plymouth/space-flares.so - - - - plymouth-theme-solar - Plymouth Solar theme - plymouth için Solar teması - plymouth-theme-solar contains the "Solar" boot splash theme for Plymouth. It features a blue flamed sun with animated solar flares. - - plymouth-plugin-space-flares - - - /usr/share/plymouth/themes/solar - - - - plymouth-plugin-two-step - Plymouth Two-Step plugin - plymouth-plugin-two-step contains the "two-step" boot splash plugin for Plymouth. It features a two phased boot process that starts with a progressing animation synced to boot time and finishes with a short, fast one-shot animation. - - plymouth-plugin-label - plymouth-graphics-libs - plymouth-core-libs - - - /usr/lib/plymouth/two-step.so - - - - plymouth-theme-charge - Plymouth Charge plugin - plymouth için Charge teması - plymouth-theme-charge This package contains the "charge" boot splash theme for Plymouth. It features the shadowy hull of a Fedora logo charge up and and finally burst into full form. - - plymouth-plugin-two-step - - - /usr/share/plymouth/themes/charge - - - - plymouth-plugin-script - Plymouth script plugin - plymouth-plugin-script contains "script" boot splash plugin for Plymouth. It features an extensible, scriptable boot splash language that simplifies the process of designing custom boot splash themes. - - plymouth-graphics-libs - plymouth-core-libs - - - /usr/lib/plymouth/script.so - - - - plymouth-theme-script - Plymouth Script theme - plymouth-theme-script contains the "script" boot splash theme for Plymouth. It it is a simple example theme the uses the "script" plugin. - - plymouth-plugin-script - - - /usr/share/plymouth/themes/script - - - - plymouth-theme-pisilinux - Plymouth Pisi Linux theme - plymouth için Pisi Linux teması - plymouth-theme-pisilinux contains a simple but elegant boot theme for Pisi Linux. - - plymouth-plugin-script - - - /usr/share/plymouth/themes/pisilinux + /usr/lib32/pkgconfig + /usr/share/aclocal - - 2016-06-08 - 0.8.8 + + 2016-06-09 + 1.8.1 Release Bump Pisi Linux Community admin@pisilinux.org + + 2016-05-02 + 1.8.1 + rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + - 2016-04-21 - 0.8.8 - Release bump - Alihan Öztürk - alihan@pisilinux.org + 2016-05-02 + 1.8.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2016-04-21 - 0.8.8 + 2016-03-30 + 1.6.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-06-10 + 0.10.31 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-28 + 0.10.31 First release Alihan Öztürk alihan@pisilinux.org @@ -102295,42 +92786,246 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - efivar - https://github.com/vathpela/efivar + crystalhd + http://www.broadcom.com/support/crystal_hd/ - Aydın Demirel - aydin.demirel@pisilinux.org + PisiLinux Community + admins@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.23/efivar-0.23.tar.bz2 - - popt-devel - - - 0001-Workaround-rename-of-linux-nvme.h.patch - efivar-no-static.patch - - system/boot/efivar/pspec.xml + 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 - efivar - - popt - + libcrystalhd + Broadcom Crystal HD için kütüphane - /usr/lib - /usr/share/man - /usr/bin + /usr/lib/libcrystalhd.so + /usr/lib/libcrystalhd.so.3 + /usr/lib/libcrystalhd.so.3.6 + /usr/share/doc - efivar-devel + 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 + + + + + 2016-06-09 + 20100703 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 20100703 + First release + Serdar Soytetir + kaptan@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. + https://linuxtv.org/downloads/v4l-utils/v4l-utils-1.10.0.tar.bz2 + + qt5-base-devel + libjpeg-turbo-devel + glibc-devel + mesa-devel + mesa-glu-devel + alsa-lib-devel + libgcc + + multimedia/video/libv4l/pspec.xml + + + libv4l + + libjpeg-turbo + + + /lib/udev/rules.d + /lib/udev/rc_keymaps + /usr/lib/lib* + /usr/lib/v4l* + /usr/share/doc + + + + v4l-utils + Utilities for libv4l + Zbiór narzędzi do urządzeń Video4Linux + + mesa + libgcc + alsa-lib + qt5-base + libv4l + + + /etc + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/applications + /usr/share/icons + /usr/share/locale + + + + libv4l-devel + Development files for libv4l + libv4l için geliştirme dosyaları + Pliki nagłówkowe bibliotek libv4l + + mesa + libX11 + mesa-glu + libv4l + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + 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 + libX11-32bit + mesa-32bit + mesa-glu-32bit + alsa-lib-32bit + qt5-base-32bit + + + libjpeg-turbo-32bit + libv4l + + + /usr/lib32/lib* + /usr/lib32/v4l* + + + + + 2016-06-09 + 1.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-28 + 1.10.0 + update + Serdar Soytetir + kaptan@pisilinux.org + + + 2015-05-25 + 1.0.1 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.0.1 + First release + Serdar Soytetir + kaptan@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 @@ -102338,15 +93033,1369 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2016-06-08 - 0.23 + 2016-06-09 + 0.5.1 Release Bump Pisi Linux Community admin@pisilinux.org + + 2014-05-25 + 0.5.1 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + gstreamermm-next + http://gstreamer.freedesktop.org/bindings/cplusplus.html + + Kamil Atlı + suvari@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/1.4/gstreamermm-1.4.3.tar.xz + + libgcc + glib2-devel + glibmm-devel + libsigc++-devel + gstreamer-next-devel + gst-plugins-base-next-devel + + multimedia/video/gstreamermm-next/pspec.xml + + + gstreamermm-next + + glib2 + glibmm + libgcc + libsigc++ + gstreamer-next + gst-plugins-base-next + + + /usr/lib + /usr/share/devhelp/books/gstreamermm-1.0/gstreamermm-1.0.devhelp2 + /usr/share/doc + + + + gstreamermm-next-devel + gstreamermm için geliştirme dosyaları + gstreamermm-next için geliştirme dosyaları + + glibmm-devel + gstreamer-next-devel + gst-plugins-base-next-devel + gstreamermm-next + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 1.4.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-07 + 1.4.3 + First release + Kamil Atlı + suvari@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 + + + + + 2016-06-09 + 1.3.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-14 + 1.3.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + 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. + https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.8.1.tar.xz + + gstreamermm-next-devel + gstreamer-next-devel + gst-plugins-base-devel + gst-plugins-base-next-devel + libdvdread-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 + libgcrypt-devel + x265-devel + nettle-devel + soundtouch-devel + libtheora-devel + libmodplug-devel + xvid-devel + libvdpau-devel + rtmpdump-devel + schroedinger-devel + gdk-pixbuf-devel + libvo-aacenc-devel + libvo-amrwbenc-devel + git + wayland-cursor + mesa-glu-devel + + 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 + x265 + nettle + openssl + rtmpdump + 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 için geliştirme dosyaları + + gst-plugins-bad-next + gstreamer-next-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2016-06-13 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-12 + 1.8.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-03-31 + 1.6.3 + First release + Yusuf Aydemir + yusuf.aydemir@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. + https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.8.1.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 + + + + + 2016-06-10 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 1.8.1 + Version Bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2016-03-29 - 0.23 + 1.6.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + 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 + + + + + 2016-06-10 + 0.10.36 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 0.10.36 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-20 + 0.10.36 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gst-plugins-ugly-next + 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. + https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.8.1.tar.xz + + orc-devel + lame-devel + glib2-devel + a52dec-devel + libmad-devel + libmpeg2-devel + libdvdread-devel + opencore-amr-devel + gstreamer-next-devel + gstreamermm-next-devel + gst-plugins-base-next-devel + x264-devel + libcdio-devel + + multimedia/video/gst-plugins-ugly-next/pspec.xml + + + gst-plugins-ugly-next + + orc + lame + glib2 + a52dec + libmad + libmpeg2 + libdvdread + opencore-amr + gstreamer-next + gst-plugins-base-next + x264 + libcdio + + + /usr/lib/gstreamer-1.0 + /usr/share/doc/gst-plugins-ugly-next + /usr/share/gtk-doc + /usr/share/gstreamer-1.0 + /usr/share/locale + + + + + 2016-06-10 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-12 + 1.8.1 + Version bumpe + Kamil Atlı + suvari@pisilinux.org + + + 2016-03-29 + 1.6.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-06-09 + 2.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 2.0.0 + First release + Serdar Soytetir + kaptan@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. + https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.8.1.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 + + + + + 2016-06-10 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-02 + 1.8.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-03-29 + 1.6.3 + First release + Yusuf Aydemir + yusuf.aydemir@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.3.0/libdvbpsi-1.3.0.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 + + + + + 2016-06-09 + 1.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.3.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + smtube + http://smplayer.sourceforge.net/en/info + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.video + Play and download Youtube videos + Youtube video indirme yöneticisi + SMTube allows to search, play and download Youtube videos. + SMTube, youtube videolarını oynatmak indirmek ve videolar içerisinde arama yapmak için bir uygulamadır. + http://sourceforge.net/projects/smplayer/files/SMTube/15.11.0/smtube-15.11.0.tar.bz2 + + qt5-base-devel + qt5-script-devel + qt5-location-devel + qt5-webkit-devel + qt5-linguist + + multimedia/video/smtube/pspec.xml + + + smtube + + qt5-base + qt5-script + qt5-webkit + qt5-location + libgcc + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2016-06-09 + 15.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-06 + 15.11 + First release + Stefan Gronewold + groni@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://mirrors.netix.net/vlc/vlc/2.2.4/vlc-2.2.4.tar.xz + + libcdio-devel + eudev-devel + lua-devel + libgcrypt-devel + xcb-proto + zlib-devel + gtk2-devel + zvbi-devel + faac-devel + flac-devel + lirc-devel + mesa-devel + x265-devel + x264-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 + ncurses-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 + zvbi-devel + + + ffmpeg3.patch + lua53_compat.patch + qt4-select.patch + vlc-2.1.1-desktop.patch + + multimedia/video/vlc/pspec.xml + + + vlc + + qt5-base + qt5-x11extras + ncurses + 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 + x264 + 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 + + + + + 2016-06-20 + 2.2.4 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-09 + 2.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.2.0 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-27 + 1.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + l-smash + https://github.com/l-smash/l-smash + + Alihan Öztürk + alihan@pisilinux.org + + custom + app:console + multimedia.video + MP4 muxer and other tools. + Loyal to Spec of MPEG4, and Ad-hock Simple Hackwork library. + https://github.com/l-smash/l-smash/archive/v2.9.1.tar.gz + multimedia/video/l-smash/pspec.xml + + + l-smash + MP4 muxer and other tools. + + glibc + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + l-smash-devel + Development files for l-smash. + + l-smash + + + /usr/lib/pkgconfig + /usr/include + + + + + 2016-06-12 + 2.9.1 + First release + Alihan Öztürk + alihan@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. + https://github.com/webmproject/libvpx/archive/v1.5.0.tar.gz + + libgcc + yasm-devel + + + 0001-Fix-for-issue-1114-compile-error.patch + + multimedia/video/libvpx/pspec.xml + + + libvpx + + libgcc + + + /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 + + + + + 2016-06-12 + 1.5.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-07-15 + 1.4.0 First release Osman Erkan osman.erkan@pisilinux.org @@ -102355,47 +94404,8265 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - memtest86 - http://www.memtest.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/downloads/x265_1.9.tar.gz + + yasm-devel + cmake + + + x265-1.9-enable_static-1.patch + + 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 + + + + + 2016-06-12 + 1.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-23 + 1.7 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mpv-player + http://www.mplayerhq.hu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + multimedia.video + mpv is based on mplayer2 + mpv has Wayland support, Improved OpenGL output, Support for libavfilter (for video->video and audio->audio). This allows using most of FFmpeg's filters, which improve greatly on the old MPlayer filters in features, performance, and correctness.is a movie player that can run on many platforms. Improved OpenGL output. More correct color reproduction (color matrix generation), including support for BT.2020 (Ultra HD) and linear XYZ (Digital Cinema) inputs. + https://github.com/mpv-player/mpv/archive/v0.17.0.tar.gz + + ffmpeg-devel + mesa-devel + pkgconfig + perl + samba-devel + libX11-devel + zlib-devel + libass-devel + lua-devel + yasm + libjpeg-turbo-devel + libvdpau-devel + mesa-glu-devel + libbluray-devel + libdvdread-devel + libdvdnav-devel + enca-devel + libcdio-devel + lcms2-devel + libXinerama-devel + libxkbcommon-devel + libXScrnSaver-devel + libXv-devel + libffado-devel + libva-devel + libdrm-devel + libv4l-devel + libXext-devel + libcaca-devel + alsa-lib-devel + libvdpau-devel + libXrandr-devel + wayland-cursor + wayland-client + pulseaudio-libs-devel + libcdio-paranoia-devel + jack-audio-connection-kit-devel + + multimedia/video/mpv-player/pspec.xml + + + mpv-player + + lua + enca + mesa + zlib + lcms2 + libXv + libva + samba + ffmpeg + libX11 + libass + libdrm + libv4l + libXext + libcaca + libcdio + alsa-lib + libvdpau + libXrandr + libbluray + libdvdnav + libdvdread + libXinerama + libxkbcommon + libXScrnSaver + libjpeg-turbo + wayland-client + wayland-cursor + pulseaudio-libs + libcdio-paranoia + jack-audio-connection-kit + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/applications + /usr/share/icons + /usr/share/zsh + + + + mpv-player-devel + + mpv-player + + + /usr/lib/pkgconfig + /usr/include + + + + + 2016-06-15 + 0.17.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.16.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-28 + 0.16.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-03-27 + 0.14 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-10 + 1.0.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 1.0.11 + First release + Serdar Soytetir + kaptan@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. + https://sourceforge.net/projects/mlt/files/mlt/mlt-6.2.0.tar.gz + + alsa-lib-devel + swig + python-devel + glib2-devel + frei0r-plugins-devel + fftw3-devel + jack-audio-connection-kit-devel + pulseaudio-libs-devel + qt5-base-devel + qt5-svg-devel + perl + libxml2-devel + libsamplerate-devel + ladspa-sdk-devel + libvorbis-devel + sdl-image-devel + libexif-devel + libsdl-devel + ffmpeg-devel + libdv-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 + libsdl + libexif + libxml2 + qt5-svg + alsa-lib + qt5-base + libvorbis + sdl-image + libsamplerate + pulseaudio-libs + 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 + + + + + 2016-06-25 + 6.2.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-20 + 0.9.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-16 + 0.9.8 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + zvbi + http://zapping.sourceforge.net 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 + 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 + doxygen + + + zvbi-0.2.31-linkage_fix.diff + zvbi-0.2.7-fix-build.patch + + multimedia/tv/zvbi/pspec.xml - memtest86 + zvbi - /boot - /usr/share/doc + /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 - 2016-06-08 - 5.01 + 2016-06-09 + 0.2.35 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-01-27 - 5.01 + 2014-05-27 + 0.2.35 + First release + Alihan Öztürk + alihan@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 + libdv-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 + + + + + 2016-06-09 + 3.103 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 3.103 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.13 + First release + Alihan Öztürk + alihan@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 + cmake + + 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 + + + + + 2016-06-09 + 1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-18 + 1.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + darkice + http://darkice.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.stream + Live audio streamer + Canlı müzik, ses yayınlama aracı + DarkIce as a live audio streamer. It records audio from an audio interface (e.g. sound card), encodes it and sends it to a streaming server. + Darkice bir canlı müzik, ses yayınlama uygulamasıdır. Bir ses arayüzünden (örneğin bir ses kartı) sesleri kaydeder, kodlar ve yayınlayacak sunucuya gönderir. + https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/darkice/darkice-1.2.tar.gz + + pulseaudio-libs-devel + lame-devel + faac-devel + libogg-devel + twolame-devel + alsa-lib-devel + libvorbis-devel + libsamplerate-devel + libopus-devel + + + darkice-1.0-gcc44.patch + + multimedia/stream/darkice/pspec.xml + + + darkice + + pulseaudio-libs + lame + faac + libogg + twolame + alsa-lib + libvorbis + libsamplerate + libgcc + libopus + + + /etc + /usr/share/doc + /usr/share/man + /usr/bin + + + + + 2016-06-09 + 1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-08 + 1.2 First release Stefan Gronewold(groni) groni@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 + + + + + 2016-06-09 + 2014.05.08 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 2014.05.08 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + icecast + http://www.icecast.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + multimedia.stream + ShoutCast compatible streaming media server + Shoutcast uyumlu muzik yayın sunucusu + Icecast is a streaming media server which currently supports Ogg Vorbis and MP3 audio streams. It can be used to create an Internet radio station or a privately running jukebox and many things in between. + Icecast, Ogg Vorbis ve Mp3 formatlarını destekleyerek ağ üzerinden muzik yayını yapmanızı sağlar. Icecast ile bir internet radyo istasyonu kurabilir ya da kendinize özel bir şarkı liste oluşturup paylaşabilirsiniz. + icecast + http://downloads.xiph.org/releases/icecast/icecast-2.4.3.tar.gz + + libxslt-devel + libogg-devel + libvorbis-devel + libkate-devel + speex-devel + libtheora-devel + curl-devel + libxml2-devel + openssl-devel + + + pthread_flag.patch + icecast.conf.patch + + multimedia/stream/icecast/pspec.xml + + + icecast + + libxslt + libogg + libvorbis + libkate + speex + libtheora + curl + libxml2 + openssl + + + /etc/icecast + /usr/bin + /usr/share/doc + /usr/share/icecast + /usr/share/man + /usr/share/pixmaps + /var + /run + /usr/lib/tmpfiles.d/icecast.conf + + + System.Package + System.Service + + + tmpfiles.conf + + + + + 2016-06-09 + 2.4.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-08 + 2.4.3 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 0.6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-23 + 0.6.4 + First release + Stefan Gronewold (groni) + groni@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 + openssl-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2016-06-09 + 20150115 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-29 + 20150115 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + dvdauthor + http://dvdauthor.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.editor + A simple DVD tool + Basit bir DVD yaratma aracı + dvdauthor is a set of simple tools to help you author a DVD. + dvdauthor DVD oynatıcıya takıldığında sorunsuzca oynatılabilecek bir DVD üretebilen bir uygulamadır. + http://sourceforge.net/projects/dvdauthor/files/dvdauthor/0.7.1/dvdauthor-0.7.1.tar.gz + + fribidi-devel + libdvdread-devel + imagemagick-devel + GraphicsMagick-devel + fontconfig-devel + freetype-devel + libpng-devel + libxml2-devel + + + config.patch + + multimedia/editor/dvdauthor/pspec.xml + + + dvdauthor + + libpng + fribidi + libxml2 + freetype + fontconfig + libdvdread + GraphicsMagick + + + /usr/bin + /usr/share/doc + /usr/lib + /usr/share/man + /usr/share + + + + + 2016-06-25 + 0.7.1 + First release + Osman Erkan + osman.erkan@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 + python3-requests + + + 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 + + + + + 2016-06-15 + 2.75a + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 2.75a + First release + Ali Algul + alialgul@pisilinux.org + + + + + + 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.16.tar.bz2 + + 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 + libgudev-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 + + + 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 + + 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 + libgudev + 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-an + Gimp translation files for Hollanda Antilleri + locale:ar + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/an + + + + 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-bs + Gimp translation files for Bahama + locale:ar + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/bs + + + + 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 + + + + + 2016-06-09 + 2.8.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 2.8.16 + First release + Alihan Öztürk + alihan02isilinux.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 + + + + + 2016-06-09 + 2.6.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.6.1 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 2.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.0.0 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 3.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 3.0.1 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 0.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 0.16 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 0.29.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 0.29.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + 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 + + + + + 2016-06-09 + 2.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.6.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 + + + + + 2016-06-09 + 1.6.5.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-10 + 1.6.5.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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/* + + + + + 2016-06-09 + 0.7.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 0.7.2 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 3.2.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 3.2.6 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 2.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.0.2 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 2.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.6.0 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-10 + 0.91 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-29 + 0.91 + First release + Stefan Gronewold (groni) + groni@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.4-8.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 + + + + + 2016-06-10 + 6.9.4.8 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-03-22 + 6.9.3.7 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + giflib + + + /usr/lib32 + + + + + 2016-06-09 + 5.0.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 5.0.6 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 5.0.6 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-19 + 2.0 + First release + Alihan Öztürk + alihan@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/files/libcaca/libcaca-0.99.beta19.tar.gz + + imlib2-devel + slang-devel + ncurses-devel + libX11-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 + + + + + 2016-06-09 + 0.99_beta19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 0.99_beta19 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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 + + libjpeg-turbo-32bit + + + jasper + libjpeg-turbo-32bit + + + /usr/lib32 + + + + + 2016-06-09 + 1.900.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.900.1 + Release bump + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-06-26 + 1.900.1 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.4_rc5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 1.4_rc5 + First release + Serdar Soytetir + kaptan@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 + + libpng-32bit + + + openjpeg + + + /usr/lib32 + + + + + 2016-06-09 + 1.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.5.2 + Release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-22 + 1.5.2 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + /usr/lib32 + + + + + 2016-06-09 + 2.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 2.6 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-01 + 2.6 + First release + Stefan Gronewold(groni) + groni@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.4.2/libjpeg-turbo-1.4.2.tar.gz + 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 + + libjpeg-turbo + + + /usr/lib32 + + + jpeg-32bit + + + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.4.2 + Release bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-04-08 + 1.4.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + librecad + http://librecad.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.graphics + A 2D CAD drawing tool based QCad + Bilgisayar destekli tasarım programı + LibreCAD is an application for computer aided design (CAD) in two dimensions (2D). With LibreCAD you can create technical drawings such as plans for buildings, interiors, mechanical parts or schemas and diagrams + LibreCAD ile bina, iç mekan, mekanik parça gibi teknik çizimler oluşturabilirsiniz. + librecad + https://github.com/LibreCAD/LibreCAD/archive/2.0.9.tar.gz + + qt5-base-devel + qt5-svg-devel + qt5-assistant-devel + qt5-designer-devel + qt5-linguist + qt5-qdbusviewer + freetype-devel + icu4c-devel + librsvg-devel + muparser-devel + imagemagick-devel + libxml2-devel + boost-devel + + multimedia/graphics/librecad/pspec.xml + + + librecad + + qt5-base + muparser + qt5-svg + qt5-assistant + libgcc + + + /usr/bin + /usr/include + /usr/share + /usr/share/man + /usr/share/doc + + + librecad.desktop + librecad.png + + + + + 2016-06-09 + 2.0.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-07 + 2.0.9 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 0.1.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-07 + 0.1.12 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 2.3.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 2.3.21 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 0.7.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-05 + 0.7.4 + First release + Stefan Gronewold(groni) + groni@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.6.14.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 + + + + + 2016-06-20 + 1.6.14 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-15 + 1.5.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-08 + 1.5.20 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.23.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 + zlib-devel + libxml2-devel + freetype-devel + xz-devel + + + GraphicsMagick-1.3.14-perl_linkage.patch + GraphicsMagick-1.3.16-multilib.patch + + multimedia/graphics/GraphicsMagick/pspec.xml + + + GraphicsMagick + app:console + + tiff + webp + zlib + bzip2 + libgcc + freetype + libX11 + libxml2 + libpng + lcms2 + libwmf + jasper + libXext + jbigkit + libgomp + ghostscript + libjpeg-turbo + libtool-ltdl + + + /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 + + + + + 2016-06-09 + 1.3.23 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-24 + 1.3.23 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.4.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.4.6 + 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 + + 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* + + + + + 2016-06-09 + 2015.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-06 + 2015.0.0 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-15 + 0.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-20 + 0.2.0 + First release + Osman Erkan + osman.erkan@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 + + + + + 2016-06-09 + 0.4.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-06 + 0.4.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@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 + + + + + 2016-06-09 + 0.16.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-13 + 0.16.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + libgcc + + + /usr/lib32 + + + + + 2016-06-09 + 4.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 4.0.3 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-19 + 4.0.3 + First release + Alihan Öztürk + alihan@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 + + + /usr/lib32 + + + + + 2016-06-09 + 1.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-19 + 1.19 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 4.1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-27 + 4.1.3 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-06-09 + 10.61.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-21 + 10.61.02 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + zlib-32bit + lcms2-32bit + libjpeg-turbo-32bit + libmng + + + /usr/lib32 + + + + + 2016-06-09 + 2.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 2.0.2 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-04 + 2.0.2 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 0.2.8.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.2.8.4 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 2.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.1.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.4.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.4.1 + First release + Alihan Öztürk + alihan@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 + + libsdl + + + /usr/lib32 + + + + + 2016-06-09 + 1.2.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.2.15 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2016-03-27 + 1.2.15 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 5.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-20 + 5.1.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 2.9.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-11-10 + 2.9.19 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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.13.1/libass-0.13.1.tar.xz + + fontconfig-devel + freetype-devel + fribidi-devel + + multimedia/misc/libass/pspec.xml + + + libass + + fontconfig + freetype + fribidi + harfbuzz + + + /usr/lib + /usr/share/doc/libass + + + + libass-devel + Development files for libass + libass için geliştirme dosyaları + + libass + fontconfig-devel + freetype-devel + fribidi-devel + harfbuzz-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 0.13.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-06 + 0.13.1 + First release + Stefan Gronewold + groni@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/ + + + + + 2016-06-09 + 1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-22 + 1.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + sdl2-net + http://www.libsdl.org/projects/SDL_net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie réseau de SDL. + SDL network library 2.0 series + SDL ağ kütüphanesi 2.0 serisi + sdl-mixer is a SDL library for network access. + sdl-net, SDL için ağ erişim kitaplığıdır. + http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz + + libsdl2-devel + + multimedia/misc/sdl2-net/pspec.xml + + + sdl2-net + + libsdl2 + + + /usr/lib + /usr/share/doc + + + + sdl2-net-devel + Development files for sdl-net + sdl2-net için geliştirme dosyaları + + sdl2-net + libsdl2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 2.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-11 + 2.0.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 1.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 1.4 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 1.9.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.9.1 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 2.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 2.3.1 + First release + Alihan Öztürk + alihan@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 + + + + + 2016-06-09 + 0.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-09-16 + 0.2.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-02 + 0.25 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libsdl2 + http://www.libsdl.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + LGPLv2.1 + library + multimedia.misc + Simple Direct Media Layer (Couche Média Simple et Directe). + Simple Direct Media Layer 2.0 series + Basit bir direk ortam erişim katmanı 2.0 serisi + 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/SDL2-2.0.4.tar.gz + + mesa-devel + libXv-devel + libXt-devel + libX11-devel + libXext-devel + DirectFB-devel + alsa-lib-devel + audiofile-devel + libXrandr-devel + libXrender-devel + libXinerama-devel + pulseaudio-libs-devel + + multimedia/misc/libsdl2/pspec.xml + + + libsdl2-docs + libsdl2 reference documents + libsdl2 başvuru belgeleri + + libsdl2 + + + /usr/share/man + /usr/share/doc + + + + libsdl2 + + mesa + libXt + libX11 + libXext + DirectFB + alsa-lib + audiofile + libXrandr + libXrender + libXinerama + libXScrnSaver + pulseaudio-libs + + + /usr/lib + + + + libsdl2-devel + Development files for libsdl2 + libsdl2 için geliştirme dosyaları + + libsdl2 + + + /usr/bin + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/lib/libSDL2main.a + /usr/lib32/libSDL2main.a + + + + libsdl2-32bit + 32-bit shared libraries for libsdl2 + libsdl2 için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + libXt-32bit + libX11-32bit + libXext-32bit + alsa-lib-32bit + audiofile-32bit + libXrandr-32bit + libXrender-32bit + libXinerama-32bit + libXScrnSaver-32bit + pulseaudio-libs-32bit + + + mesa-32bit + libXt-32bit + libX11-32bit + libXext-32bit + alsa-lib-32bit + audiofile-32bit + libXrandr-32bit + libXrender-32bit + libXinerama-32bit + libXScrnSaver-32bit + libXScrnSaver-32bit + pulseaudio-libs-32bit + libsdl2 + + + /usr/lib32 + + + + + 2016-06-09 + 2.0.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-11 + 2.0.4 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 2.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-28 + 2.2.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.6.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.6.21 + First release + Alihan Öztürk + alihan@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 + + + /usr/lib32/ + + + + + 2016-06-09 + 1.2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-31 + 1.2.12 + First release + Alihan Öztürk + alihan@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 + https://gstreamer.freedesktop.org/src/orc/orc-0.4.25.tar.xz + + valgrind + + multimedia/misc/orc/pspec.xml + + + orc + + /usr/bin/ + /usr/lib/ + /usr/share/ + + + + orc-32bit + 32-bit shared libraries for orc + emul32 + emul32 + + 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 + + + + + 2016-06-12 + 0.4.25 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2016-05-27 + 0.4.19 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 0.4.19 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.0.1 + First release + Alihan Öztürk + alihan@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/videolan/libdvdcss/1.4.0/libdvdcss-1.4.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 + + + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-05 + 1.4.0 + First release + Stefan Gronewold(groni) + groni@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 + + + + + 2016-06-09 + 1.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-20 + 1.3.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.15.1b + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.15.1b + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-12 + 2.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-08-02 + 2.1.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + 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 + + + + + 2016-06-09 + 0.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.4.2 + First release + Alihan Öztürk + alihan@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://sources.webos-ports.org/downloads/DirectFB-1.7.7.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 + + + + + 2016-06-09 + 1.7.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 1.7.7 + First release + Yusuf Aydemir + yusuf.aydemir@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 + + + + + 2016-06-09 + 0.3.17 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.3.17 + First release + Alihan Öztürk + alihan@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.9.2/libbluray-0.9.2.tar.bz2 + + libtool + doxygen + pkgconfig + libxml2-devel + freetype-devel + fontconfig-devel + + multimedia/misc/libbluray/pspec.xml + + + libbluray + + libxml2 + freetype + fontconfig + + + /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/ + + + + + 2016-06-09 + 0.9.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-04 + 0.9.2 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + sdl2-ttf + http://www.libsdl.org/projects/SDL_ttf/ + + Mathias Freire + mathiasfreire45@gmail.com + + LGPLv2.1 + library + multimedia.misc + TrueType font support for SDL2 + SDL2 TTF kitaplığı + SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu'elle. + SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. + SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır. + SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable. + http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz + + libsdl2-devel + freetype-devel + + multimedia/misc/sdl2-ttf/pspec.xml + + + sdl2-ttf + + libsdl2 + harfbuzz + freetype + + + /usr/lib + /usr/share/doc + + + + sdl2-ttf-devel + Development files for sdl2-ttf + sdl2-ttf için geliştirme dosyaları + + libsdl2-devel + sdl2-ttf + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl2-ttf-32bit + 32-bit shared libraries for sdl2-ttf + sdl2-ttf için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libsdl2-32bit + freetype-32bit + + + libpng-32bit + libsdl2-32bit + harfbuzz-32bit + freetype-32bit + sdl2-ttf + + + /usr/lib32/ + + + + + 2016-06-09 + 2.0.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-11 + 2.0.14 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + sdl-mixer + http://www.libsdl.org/projects/SDL_mixer/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie du mixer SDL. + SDL mixer library + SDL ses yükleme kitaplığı + SDL_mixer is a SDL library for loading sound files. + SDL_mixer, SDL için bir ses yükleme kitaplığıdır. + http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12.tar.gz + + libsdl-devel + libmikmod-devel + libvorbis-devel + libogg-devel + smpeg-devel + timidity + + + ldflags.patch + + multimedia/misc/sdl-mixer/pspec.xml + + + sdl-mixer + + libsdl + libmikmod + libvorbis + libogg + smpeg + timidity + + + /usr/lib + /usr/share/doc + + + + sdl-mixer-devel + Development files for sdl-mixer + sdl-mixer için geliştirme dosyaları + + sdl-mixer + libsdl-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl-mixer-32bit + 32-bit shared libraries for sdl-mixer + sdl-mixer için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libsdl-32bit + libmikmod-32bit + libvorbis-32bit + libogg-32bit + smpeg-32bit + + + sdl-mixer + libsdl-32bit + libmikmod-32bit + libvorbis-32bit + libogg-32bit + smpeg-32bit + + + /usr/lib32/ + + + + + 2016-06-09 + 1.2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-21 + 1.2.12 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + 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/libcdr-0.1.2.tar.xz + + doxygen + zlib-devel + lcms2-devel + icu4c-devel + libwpd-devel + boost-devel + librevenge-devel + cppunit-devel + + multimedia/misc/libcdr/pspec.xml + + + libcdr + + lcms2 + icu4c + zlib + libgcc + librevenge + cppunit + + + /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 + + + + + 2016-06-09 + 0.1.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-02 + 0.1.1 + 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 + + + + + 2016-06-09 + 0.19.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-23 + 0.19.6 + First release + Alihan Öztürk + alihan@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.3/libdvdread-5.0.3.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/include + /usr/lib/pkgconfig + + + + + 2016-06-09 + 5.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-05 + 5.0.3 + First release + Stefan Gronewold + groni@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 + + + + + 2016-06-09 + 5.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-31 + 5.0.3 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + jansson + http://www.digip.org/jansson/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + MIT + library + multimedia.misc + Jansson is a C library for encoding, decoding and manipulating JSON data. + It features: Simple and intuitive API and data model, Comprehensive documentation, No dependencies on other libraries, Full Unicode support (UTF-8), Extensive test suite. + http://www.digip.org/jansson/releases/jansson-2.7.tar.bz2 + + glibc-devel + + multimedia/misc/jansson/pspec.xml + + + jansson + + glibc + + + /usr/lib + /usr/share + /usr/share/doc + + + + jansson-devel + + jansson + qt5-base-devel + glibc-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2016-06-09 + 2.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 2.7 + First release + Stefan Gronewold (groni) + groni@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 + + + + + 2016-06-09 + 8.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-08 + 8.5.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ccd2iso + http://sourceforge.net/projects/ccd2iso + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.converter + CloneCD image files to ISO converter + CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir uygulama + ccd2iso converts CloneCD image files to ISO image files. + CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir komut satırı uygulaması. + mirrors://sourceforge/ccd2iso/ccd2iso-0.3.tar.gz + multimedia/converter/ccd2iso/pspec.xml + + + ccd2iso + + /usr/bin + /usr/share/doc/ccd2iso + + + + + 2016-06-09 + 0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-18 + 0.3 + 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 + + + + + 2016-06-09 + 0.7.24 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.7.24 + First release + Serdar Soytetir + kaptan@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 + + + + + 2016-06-09 + 0.0_661 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-22 + 0.0_661 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + unoconv + http://dag.wieers.com/home-made/unoconv + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.converter + A document converter + Bir belge dönüştürücü + unoconv converts between any document format that OpenOffice / OpenOffice understands. + unoconv, her belge biçimini OpenOffice ve OpenOffice'in anlayacağı biçime dönüştüren bir terminal uygulamasıdır. + http://dag.wieers.com/home-made/unoconv/unoconv-0.7.tar.gz + + asciidoc + xmlto + + multimedia/converter/unoconv/pspec.xml + + + unoconv + + asciidoc + xmlto + + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2016-06-09 + 0.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 0.7 + First release + Stefan Gronewold + groni@pisilinux.org + + + system FIXME diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index f6c2d3e91a..9bf8ec90bd 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -bd42f9c64cd0a3e458da2202d25d9e725582cb52 \ No newline at end of file +758608a18301c444ad58d082ae6b56917a3aa449 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index 148a4da0161406aac4bde4ceface373190d03d74..5cf6737b6a3b6f1da4fa11a033cd11877c1d96de 100644 GIT binary patch literal 387320 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Å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Μ%q||b@SP` z{sAX)v-QLU=J&hE3+UWi#PKf11BUB|@4q1g3eXd@vX@%z_)BX$IGxiUwV1h!^`?Bv z2FBlWXq^ z9F4itZD``sGqB+_Q+&K~cnvX&5HW!>dEvXk9ach{gtysDx(SMt6NXqCl?mz#1=Q~R zjaFBH%-0n5X$}!d8YYL+Z~Pc_VSvt2j4IFeIgQ%Zp%X0qdB#yrm^s=df6WFlom7n2uqwb z{$s;a<`5M+wK$p1=(SY88mMlGBwW~_oydui~mV#BqUiEq5@|i5& zVz=k!iD_Em;hyz)aT~JotU6&U|3&6ay^EZp@;#6S?*SLpaN~JSBX0RWPQRjfh$Q5A zg+X)%eUD5(G7u9c6ce_@6z2fhyF&#!^YtSwo+#LnTBz&(P-rQB9z38h0y*&aN>fIQ z+!TK;{KAj7cMMJ0B*OUNuK9by%2yx^btF<#C=p=_6Y zv=T{UQkwNR-kVhK|iq$Fyzy^XPtnxrCpD6jP<_K#Q8z;#Vd;C_*oI3 zCZfG-?YgEyA^|lOAjSAy-J*YV0GG`2w95P$9|(l@0#>pI|F>SWC7ALVJV|??PH#=b zqpSn^*>L7}tCN$UFdkDmzzLP9XgJl-e(Peu#bS3n%bk?I>=u}bO=VZGL=;B}L~fcg zw?DZIE_@A`=Gc_UvvB;CM8}#2!tZLL#bS|Pv^Ju1@+STyO7BzW0vuR~8&;XOD zn4FI_DH=h2K93cEOy$G zHYRPOga-n$qk;}BiiOVA*V|q|!T!=Xn)rf_ZS?!xF5(3FRs*SQPTeWlr`evsVX`gg zTBB-3kj>ua@gh|e()_<`GOiYI`Xp+zrQmh)3fEwgjXk-7h43WI1y!NWL7&Agr4u)RMDG4#Z$78@ z^61Q!C&dD@rBDSB*ol&@nZ23xJcV@^?DLpt&hW-fx9WcH`Ei9QO-^ChR{k7brcqK4 znuKT7RcuqPh<*#yBtI_l@{YoC5E1)e+b{bEZQX;_!A|H6nK#28ia71?s(5~{L}+Gt z8>|#b*{(GK9BHAWSDEC;c1N0R^-HM#li=du1z~LwKA#kh!Wttcl9Zk)K?3U!cM~c| zXO9(iP2CuGgFx=DX)N>Te8dbh?IlSbPDPCbh8a?w3PqRt|85UVX%hh2V$tTPwSP|R z&)VyRupjh<2s$P>N#)kgU2a@9qu$pw{LdZC8|>gmwXPyS+;JdAxRy7L;i})`;+#|L zu43iHL^mpP3iWgMWET~EQcuQ=p~BPUoz4Tnlt@$lbhh);-jZUs=X1*5rm|&(;X8HC zs+EPu*u=H`!yl_?D&XjR{s|Wp1tMAG-?N5zhluea#{H{lFV|<7T9L*Bf=HzGIpi#z zEWCe~XBpvg#NJ3aO0!m=0n>oM>}kHcD~Uimerg#Jks9sN2_GE3g{nB{D9-Hfa@Mm` zNL0E)PkesARi6Jp_QJDpjCOTktNBXRC&CMDaid0;=4_SL0+fhXBBT?r)H9u`+N}C1 z7bnRVM33#RZq+!82$d5Wvp$BzO&9F!;t{mzYI#^4L+(V?i!ScKsWiqh8WMzk{1X_6 z8o*YhK&d@j@Z&>xMeuutC}WKpP48K&Uvzmisxx=N83 zjZ{S5>Rt(Ls*q9Z``%N11=u{)q8GQ0#juekrqUzk_0Z2bAOsrYNu6t_v?i>G2P$2u z)LRPc-|`)kQdRk{a2}U_QTp3Uv#RRGmALUqpKJKF^O#J6jSj)~qs4xlFP`Q=D}J(0 zj4OQA$#zP{Pn>mwRzc*wQNd-m(C+^X18Q!gUAp7?$w2R27z{9#mXZ^+*+#x?O-#E- zo@K$(NJv!)wR+9eM`ak%dvvY0p^nra1Xq?CouB6x!(wi|0XEB>l&Euz5RIU0k+xX+b<^lYwoYO;(>iP`fZny|NA(z$B zB6z>qR%Wrp8ka4CcW}BU;UBz`7jl$ag2J)Dr2#SDZT~iHpkX?o4f3hQag4h$Kq1N8 z=j-g8itPaKcGXAFT$NMz$lZWrDfzI zk#ga!!-`_ntML>p!i>W~^EX5|amc2LO6b_z>XrHKbzIQh3X~i;8DnttcP9W$oJUTm z&*Nf4#a=w_^oZ-ZGkVM-?*w5Y{8Yl;9@z=?GZ7 zebdlxAZmW9_WBjlf4N4M-6R~eG$T%GzP7!lC7>BsmzxwY%NVH$9-yAkP3ec$s+PXs zp?k%)BCFzzjcMFAWN8#(eX+p+wV?=ZDGo-U(XEW}UJ=nEqHJ6=EnqXIEmE;M#Snp- z_Pqo2O<`45X3;{(1*P@WsU{_d_KCXRL0_S`mpoceiwa)mk4EI&{rZR)YUEHs&8zVV z%QjBUseI8l58g$d>vPNebr2cVAy#vTZ@g_BS42n>(Xw^W+<~&7CV6L(I*zN^Fw&6w z7%7Pg@>V#{K}wQrg7PavE+qz1?Gkg0uOL5U+Gdc(8hB0jQl}FIb&viufD=KbYZ-W5 zVjQd;)3jOJLP*f)j0S#=7b1oNyL7-TC$S4q(@wXGuAW=^z zYe(?dWPhKt!#(j1E4o_pw*EqVE~GFU5O+a~8)Q6YX)Fv@CnNd77SzqiW5={Y=@A6S zQk4L51D5hU3iPVQ(|0pH{*I+s)^|AVtyo6A{>j+HrLppi-=G7S37Qu>Q=pdmEQUB} z#A-N?>4^or;O%3a=9W%DkENTbCpD>BqgX2xvb{s?$aArWd6b-BR1*3!ajHffxYc5> ziWtBDX@&uVy7%7Ze7wjgIUXw7H^3GdNk`Q2^y}}7Y#Q|^?YMnz2 zGEKS<`i%?88JF$^eb8i;ETEx!!570e$jR60nml@VvvY1Vs-P3^}1um~V4G~fa z2AZXs)7={Zs7(zLNy;1tYm@3-0Uq^mp1WvB?>0~aj)~8E^EXGgbdktMl89j6>ASb4 zh0Wd)`4|O-a2iJWRgH6{b&hU-eO31uy!B^KX)4KOQpvN*Jln|_^w=W3z(6bqB$-6^ z4P+m@ULY2=YBs}V3<2>OsPqmIx=v4oT+FsS)RHA5NFRY1n_71h{}C@P!Hj1k(_McU z(JP)jg5}a1Llm)6{aWGMU4z|iXI6M+bu02TxnkYvq!-J^Hlsp$Q>I*g_<_Q1jH*=4 zD=GO&!1QIYXuY&6$_VRa)=rYr;w^z4AKR08{;6?Y{GEOa!|xhh@xv)CF{)bIc8*43ne^uKnCs+kFf4FIKe%?`soc`+<}|_@0fJ^pdFK zr-?(ZmQ`SAaA}H3)%dW5?hlmj$xZ2d;dYUmJQ+&_<(@3x3jyNYnRA>GeQg$P!8~N9 zj#}AIfEw%X+RIneR5S;k4LD#>e*-P*hUmVr9_Q#p)9=3EOlyS9jm1zI&vTUJSY<6o z^rpVEiY4;w(J4L-6ETuO$GG@}@6{$DtNQ579IV+j=$kx-<+1wYg$be>o|ADUDDrM3UGn4gl$Z;td5;^$9M8 zFqqnP%p6tRuX~DdKw}cCu>w@B=YoLm*VHAZe5N47Wvt%?Tg%gx6#k*xlxo61_c`6u z9j2=TBj2q31!)S-gRO?qRQnr>=~Lfy5{A?bJUs0Z&^=_>y>jYFbCZST6TUK6pyJrx z(tl+jzCmAXi^%mEg;1|J(z@IIgtH@smE=5hG{1&}FGe9bC0f?8MxZ|jy|ih7KDCP; z!pYODGLE4;TuIF@^mLQr@RK6`pTq(KpxRY3;5~c@XT|5X2klRovr%1C7c+fk-wZXhb~+3zCG7*I)}q?7%Z*5yQ&AT;)wh& zt4>}5u3U6XZT?xmqLQ7OJuWB9>tXUA-)KV+4lVXI>tXQuY;1^3Wgkg-KGcyqy2O{259Jg&lxiszh?>KPZMKk<3O*se8FF zZJQ7|41dJ-5LtYi3o&p@uY~s^pIXRZ3iYNH=Z810(kM}6Q{!hy31?FmT?msC|tjd+}ZGon{4gPG;X1O?*>$@sH}~ zX@PcILSZG#*Z6H7DXFK7p08!b(dR*Wn>ld#JxvEja~#g&w6x zL5l&FlHh8DgHMlA_?K}hUr$;na7&Mz>s^wZ^;DIv**S|_^KY26#XKvXo6asmZPdVd z?Lcgfrep2rM6(>gl{gCY%MoQK$Le{sw3L$_U+DsC)5ZUZKDqe-Jvj?bv|y2Ix{sa? zJJ))n+-O5hyp7gM5H^epK&d=CpgSVSb0_3f-)8tGBm$A{@bgYcNDie5f!<6o|Di1O zs)236FHC{ks`nt`2!}-jS(eSdh-C39NDIfuiY9uXP*#f{kS6zpd175_sg!h*$2xv;(ep1*u1*?E3im0X_>qbpn zZ}GG#E=3On*xf&MibN7<{(>L_of+DSs{TK`QAItH$*^5T*a#2nzs@}rZvxH+JD=nE zr>%eNc|r+p74lc8)#hD?**WNasj0YQo&d@ZADi|QiC!IzhL#FiBm{e%?pQ?3Jb z8zqoYunyhp=1yr^s*skJ($@CHbE-0kpBPMXE;5A)(fL)ARx}piio3?ii9}EQ27Ln& zLWqdg%ejtX%yBHaf?Pr6RK%Q_Wi@(s_ry6*1~%ZEs|XE5PXr-w@$l_jMzH8wc?+iM z6G6=qT#uS+Wcyn`OUc?gu4i{tiN9p0;p7Sl5=k_Fb`Cg+jJ^RUtQGUyRJO+_m_o@M z&Sr?aukZcJ1?o`2<}=aUi>7Wfr@nTcd2ZJI7D4+34)}|v$ncm7(@cc4r3FKi;AwFR zdhELy@g`sLeK{UqO$YnC@l1Ih(zG4iP1Tdhc~iha;^Q?B!vj<`o@t-v1#uaUkKWw7 zUddg{yme*&AO|Nl{FKYiC+Di7D%r6!$b_en!`?D^lS()xoQA@>_tEaSDrv78Hw+6= zdi8?P9Xpf?T9Sy@1=JgR|Kl=H?HmW|KL6K%xEI{HUcOgk8Hwo%IebEuLaJaXEU?%3QUFEyWzN~b`m4Bh9kZaj5XAMwJT1ZjFwz|gOn zHVMh3n3WoA3{_=_7=kBD@pmF7a<0yy0Y>Vm(LQQ^$0(w$?yNCh8{6?@%8OHN`>PDh z>0%vzC$4_TT{XcaeVW$XJl^m8bQt@%h80-3@Q{oJJ6ePvG6PoY8%{|| zw9$h^Zn374W(4rDVr75awC~%s#~)H@WdsCgkID3+}*G@xg-$NoDSj;v!G=w|ul$GySg0*PKl5BaP#}C0rPd0jjrH1z8Mp=iPGO z1eX=#0ra<^Zo0QaIsWE?g1>uJ5k^oLqpgtrto$X0Pj7*}L@$$J;#_25pSUZQ3vU#Z zH5&H8&ArkawcCL<;yA3U{K%Fq1F6tjZ6RXD@-H^ueEa>QBViYHLSbvJwB6$a9g&^O zR37_hfZzE)v<~-Lan?Vr2wF8AWN|R^u$~&Rzn0*#zJ1H0iygBtJ{BoM10lg!IrO>2 zbIk#vdu&@0Fa(ZKJ6Ilz`>|iX^vIz-r0PJ#M~b78QTVGxZm#0A0P2D&PbTnl#25tZ zPC#hWz6(2+ScyPWpjcLC66eoT>&v#{hN9hoINo~2a!LQ1UEBm*95q{4sVU@N(>sSs zz`<((RWe&xH!XTyz}#@u^%@0+5l$l6(lsga7#|(Nrrx6Fw|)Y;O1rdr(HmR9+4R9$ zeJ`CSm7aRYS+CZWQK6eUd#i#l`(E9ke{P@erhXQ3yCeM$!YHF*D};qLu}%`2da9vN zmKjYx@%I>!N(RCTqc1lG4X#Qe2DC=@3weJ%o7jyX`(IDLqjuot={Qd#iw`!o{z@sf z8W`&@b4Pj$StsG%@v=7p`u`&HW4pgrom1X3hKtXt4k?MfZA`}St$Tsfav^TTKRRS{ zgLP@^irFR;*B9MXH}tFmKbUv#sPrK z)gH^{Nt^0^W#4=?B<}_$PrC8?mGna#qp4ZvY?t^f0h>4C8CE3erUV%}U3%#%vb+?* zAA8OKQ`b`57moAjV-lyI;Z1`d;H9lhi3{h;TCt6cgYE+Ls_w5(gM4*p+O7_7qSo%2 z&QZAA96|4eomDIpFj?H+uKQk{+>~*dWO^=$w518NT%eMdQR>M!n8+zreeD>wmkh6` zrhN(t#=jN)&oQ5_+g&=3C-=@|vCtl+ZiOw+fPSBk!z&s5E? zIDOC&SgESO^@Mv8iIRcit$lrvq!4UYfGS|rEo|{Q2n!sXu%X^f55sc2@ZhAIeMssY z*49Y8de`f`2!4M4k{rPODD0a?)7aI@t_YERxD!9r7*w`~JB zG6{YBq|>o?0Sga#b$C;V-Q%(2mudcQOwf`Yj|~a8KyoZ_Z3e&c7}PnhD?be@M%GA) z;eY`X@5_Mlj%z=Sf08`Vh&nh_`9YUX7^zRPiG;Qw(D{Vke{3yA7s>f@oM-RWWz43# zSc!ZD_}^nvvD_x(Gl9~yfZ1W_Vu zG&a14j9+xi@^A!6+sBpknK+$}HRak#CwbniM6s;SUdA|@5XlMVxjZ3M3)__IkdZ&{<{IqDp} z0d(?j!?C0>_^7{Z{3)5(WomFhz#he1kYY$(?vhL+#cLT>Q;lZ>EUz88gL5odBmOrz znR|sIU7U*f117KNRI!*S=fV4-BJFW^_U;pisxJRZMJ(~fcUYTuc0^X&Q^I?xn(mpUq-3ifhbqG&{FVyO zXb6YyP~sG;^a3}6(G~4&^V8W#jzXMY> zI^vi*TXs0xC0rZ&SRp$Nn*Ao_klU&Bjoi_l(O`7MnqnuW5W|M^e~+nJgvM+TZ~>iG z0&p5Tuk+Tsr{-I}w~X0d$T+CUfA`IpN#ZO@S@V$PTZ2$2PgebN{ITlSVUN~0=on@F zq)=izD3gJ}f4|_RPdq(PV7nd@yrXSWgxcg!co)AHJm;it(J-yw&SE-&i$8;!W8;r= zW)al@l_ktyD-EBREdvstL)@Bt_dwo+a3rx@fC`WFy+*~`DAf~T@(!LaWHDhkNg~@v z9)nQg0m%uJr^3Rre#9(x)zLl3Hde)o6*XNlT5IbKrct1AA59u#Qx*nNh9pr)c0dLy-NNxRP98V zpJcwj_z-gvIRdVugib368WsF?aPB->v9YFrHd&dbcYpd@aUC3n7OET{z|G(^I6-uN((5|@jSh# zmbFl{Dy1wCP-;kZTfC-x{td54OIsp59*8!a{!$i8A%11 zK+h`W?snL5sSI7wR)U{P#o(Qs6(?P)c&WsVjHy&<5`wv{59ZOKB}got(a=!BXu3`j*fnqrAkPHDqFoll$? zunG!mJV7pa1aS9hbW?a9zQ2`b=IFuf2eOQ_v0jLpg)Gimw-s2*Q@TQB>119X3P9r*H1dmTjw(AVDv8EFH~h?2l)4SNrZC~RtTGEr%0}g~>i&py ze=(t>eE|r9tx#$L>Ls%3?L)y~ zv&fFV`$B)?EBKR>l;3*z?VV|0h#DTnkwLj0A*Ccnuum#$FyY z96d&Nzem@i$MZE;NBHmnI`Zv`Yse|ihwFoCym{<~BCDoXL$a{wAzZS+CVj#6rYmGw zg|dX64K79a=1L?CV3Oto^p;(XGYrWcZIE>A z^P$cvwd9;&>61bM|JERI$8m@e8L`cxEgxZ`@g>G!3|I=}GL5{Q4bPcybRv~lh^79^ z@s$nrg0luD5j^`xA2?q-&m&4>oRb0bs4j&@sITJF+vn%&jgnJcU>A^LxIcgO@P78> zJ$OJFe8iB;Fj6<@Or1Ue%sGyfIN~{J5(-Yp(^&mdT#pFTP(+Iv zpVZ3hNXS6$vTgIJO#swqjGD*BYEb2qGh!B2$akP;8v-&E#z1RocD#@d8QKGKq?2a{9T@HV!A*-ihH|$Q62&QMHf%a%!(ITf& zNG}owV0CQ4J0;EMaxJ0+!)R`Stvmsuanl=BmHK=L(8`mV@ZVf}XV0s#r4adUiNc`3%T()71zl3Pep7Sh z%+}y)Qi31kAAXwE(T9OdK*8P7iG_c6BW~)$a&o|}{$HRgixd%vD|GcAr3term;Ji; z@A+Pf70=faro0F8Mix1}WzaUn07XE$zvPldV;3bMx#Wt#1TQ>(KRZk=ja(~*B?F2{ zdB}hj22nddP35hjTg0=z$+2%awTfIFV$~DS;N#wgIFy3h3HSU!`0FVVpBZ>8O(dmX zQR^dd7@>sKOM;!8-GL$6IuGe-+4pffPF+YvV6-}EaOcO%<&`*^%9(p~_BRsrDtaEr zmZ?4^-9{^QCzdlO9g(Qf@1#LX?rJO@i&A_rC#KBJl7Q8Sd8b+}$v}F_R8dy)0G}$G z>MRp@ATAq2X}bB+_b^i&3L)u+&$ASM3UL}~Gr8U#^? z;w_Z+_dpn9%V!RGlwji6yYaV20OSrknn9R3g53^M_YWFES)MjxRA&y`4smVZ}; zS$wx07xm7A0g$$Gf0%w6bUiDHgWs!JJOsY*vGHhbB3d&yImRy8P&AB8 zkS<$&o)JdCk`>C5lFT_L19a!fxYh3Sh^jqS0yK13-njDsrsqyLZT{9Dpv3@P`g~7; z<|n5FS6(G1hD(mlUU(5P-#aS6rn;X%;56)|NO)Q8g58`m#u7VT&n)sIiG$7Ye@ zL}v03s7Mq|+{gCqv1fXk`vEg`iOJTJe(`XF=*6`d*w?CPaeMLn0cBjNvAEaia?;uhf_cb zdhM*5%b+eSg9yWQ?dmJENem!f^g9V>p6SQ@JdFP%u85-<{7NW)ek!QW)1^hw zxGroE8zVEwwaRFR`a8Ku)&%Q6W?^Etebow%5^&fYoO(FEjOtZj#t z7bCcmp;|sYo9K-qrk^(8;^a~4H#?L~^e5dZ--+-xy7K({upDcM@jw2@v@ zBU(O_^swlwW#!^MOsvyz5fDViJTztA;E`yzJ9apSfj=B*09XkjU*3^z)6lf28T`oQ z66qcLSBJnm@Tul-Zk0ZBP*THbwRr361+4wlnI2)S1Dd1o%U16A1KkTiIR3Yfsu3-KG9>;z6v%160H)3x=koM+n~;cZn^ zX4tglSFnnjp^*KU$xUq*6N{1m3FMqeItV{5JVji#F})Y17cLJ0@Zw&XY~=HDgO_z2 z#dr3$4mlkIvovDuIVvz$Jy8`6ZI)xW;PE{|vId8Upjq zk{rs-cB?ZEY?PB?nF*@5h*pX-Y-iCLq$ z&l&y%UJjkkbe~4vyU=0UK?Oa{a-rP^`D&_8+=iqy&fA{OEWGZxv`Sqj4hAXm%Tc`2 zYUH@-b%q8J?cqEJ#XpL6vBE;sB(N938FAyz?reU8%6ki&vB^P=;S3~)k&;nJS{KPM zl}pILgZknXh^|wY~Rzwg&KeP42isJSUu4yPjxkJ4s_N$cL3BO*bVFa7wPlY9{ z^uR-e;rM|E<^9(;)-}jozxiI^Eh?88K*Zb$Yx))ZBGHbHRb%KKxwC?NB78$OEe}tn zp9x>rFsawd+undCdSIjs&j)V)YJNwsw|U<)SreCg>dOqka7gK4$gLWx=%Sz)cVKUj6^M`jrpy^z#z=ce@{EyU$Y~b>|=fuRYa!8cF@x zE#7tUOb=YIme1x|b^{Qf_&H5JzV)keMRvtQo6)S6%!yO2p$Z&F?ShI!?v^q{cR6)^ z^^Q%|$>cp94j5I?n`?deO-WCQIklzFTR;6^Eq1gDrUSL2Gb8r&az*9fxe8<9% z|1G0uo7~*1U-w>reu8hI7D#3WLoJRg-9lYIF~@IoH4LB?N-5rdF?H+R>Gi@pBR@7w zA~daDeubHK<*qyGj6;K1j%4%(k4+pS6l9v(W;;fO#C}&jfvx%Kn^YQGy5j11{voqi z59|Io72#YIlNfwVuM7&k%xGziF5B^i#~poFHgmC)i?Qolkyp5fpF-|lFez{K1WKKjRX)wVCP3OT9|)M^3W+$6`7nu*TLY9odaD46(9%Ix@OSw zBrda&^Ug8jP!rE-k2=?`Kdge6dp0fQaJfXSM5}cj$?De>g6C3A*xh$aXZbc8tz5DN z;H>XuGi8fFX6GosX#O}2nEh7_6Ff{<|FMO8kiiR`=#r{}fNds0R)n1XI2$CIQd`rlm5$`dpcbIH?X16ztZNF# z>w)-xgETr#S`$S9A`z@5^MXz1N@~$x;#YuYf8|_S53P>-ZXF0s@S^?Py=|jG%^|R5 z54j%CG(=$odp{HgE~{(GA>+Ujp8XflbnpT7VuqCxX9Ys{D2ZjPW*l}Znz(=?5dvow zwPC_0Cq?nS$bTaNpZ0%j_hG|r7c>tNEQ94$H9FBFGA#BOrL%AQBP6{X*WR4xYY`{m zPtl6@i+1;7cK`W+8RBBGi{Xj`H+USIOL5@kNoc$6BIPqP=L@M zcVsRsdw$BYtgu|MrrK3^c4eJmDMf6*o~;#pjv;zquQ0Lr3CAsV4rfpTugCO^ZnLyR zQqyK+ItAfKzJ2>|1@&Qq^TFmk2VqV{ZGSXR0rFk%m9L1{SVtP2qdQ%h9BpWI22zWd z@)>X;cPP-)HAH=NC@2JXcQ4g1QnRHK6uDwVJozY{#lTIkb*oM6R3g>o(bcrPw@34v zX@sCbc-?~+L|~L0x_RO_x}W;vnHFlRn5BNlj*8|X1Xx@Q9V7xodfw}mCm6kJs<90o z3#aZuS$OaeT{3{r#N#zzozR+X>uORPQfu@Hl9`FT^;)x0hSA6!z~7+DuCg-2ny zW@K3>=%9X zdT+Z?MnFA-YX!Rj^rQ|)q(^$ta&}`k4Qpg`n>i2dc%^*kcY_W&@o;@BDL60jCcs`h zI&wTk%ExL%uv45M_astA^r>k7Z4}nAE-bWpm0%R{Ok=3>f#@{DziOpUZ5D!_O-&l4 zZiuboRHT6yLZ>-`cs)f?{$?}~A0i-CXc&c$skb5GH{r;S_d#J_C#OF&(DQ`cFB?jC{KvlJ9zLJ2Vq( ze?2oFWh5cLsJ*(y&(c~gLYIY19bh>^qJns<{R)Eh@0?Ne4Q5=fZYUZ}9@2hQ`g%Om zWevR!NfeH~R614#ORRIINSOP_73^y2C`JW!8@Aoo6p?*)ne1nUj6f^A(=-;5I?M^t z6{ga7J~~>J8Lf}xX456@8u{QR0M2Y&$>?dO;!V_+0za1TeSQBAVL=iE4!nZ>mB;*A zmPd=IIFD<}{nq|mQAo*eXu;lC{(|n=@WM!ZME_ohwz^zv}^2X+V z`5oH6m8bsYP#DR4CAA(wemVU%AMZPU=;}O>zrxS0c}vJ!pq15^X|2o9H0g9?VXEKw z362GQLlVq!sGmJF zJ_ukVTdB=qQekxF5rMk0pGt5u6Un+U3F|4tT-4rYH+Co#dnp8_K;3ni;JC<8sz%(ouj#}$J3 z98brn3FvXX4tnRW#KG0UmblIGn?}ZyLD5M9l9y0#l*BcL>&fJy5iV=A7!V`k$;2eLZ zVW!hL^q>+J37WeON9A6I)o7WzJ->@bOiWTi1+B>|lL|`-@_>A2d5Cfuc~=xU(Fw@- z;;2bv6OeJYvpL7lCYUv~fu#TlJ*omvApk zX0CCb>HFWKVTsh5CFF%;L5}Ou)VD3I|a@4tx)-X7|!*JT65m{RPDn!aG?aWi2kcdjy z=>*uOV1p&glR|#cUs7`~fY(<1h5E+FS96ZgDq?1T<-Q9- z{1w^==lUEEQtv_fPm*@T8omrzs03RY6#87rLY8}4d6IM*UWwa~T?&<<==f}UfqJ8gF&Qe_Aj<|aGD?xdpt(XY0)EMZg$W!xPEx+9`W8(s(N+vB zO@-!I#{I;nYP);|s!fM>v$pH0u6f4Ux7k4y$vo{x=oJ{)c(Jso|L@Y0e0`3C|H8>V z=;&pLkT~+%kpfCF?nFf_wR?ry+Lc-RW3CMKg}p)Exti88i6eyagYr5rC2mDWVe zkZoIuX|3VxAC)Xo9MHy427|(r>nbzF7_+Xp<6hH#9FM+6U|Hz@DmG=jL~z-!UHET0 zrPwm)X?*O$u03$kIMKuo3!4%eL~_-}5H zodby4_7$t$&Vq;h0#=pav{&4Y>!-XCyS<)xrb~U{DCqK z0hEV_PEd)-fxOE1uSDO?K(n*sI#v-i^OKtIsy!4aUt(mAC0`AFnV5xY`c|_K) z1Ty1RKhKZc$-S%cu#-untJEk+wRRtLQEtvbiVO@k%LMH$Ctp4vWJQP$ycDZ~v<>Fy za=zV1Vaz;`b3LU|dqn=aw%oB6eL&2LkOV3ZV0n}Rq03Rp%`I(nZDjXtp*6qPCo(PRXU!m0?3{( zfRnGaUFQF?LfwUwxh95gBVhL+5B>YD(8U+Y;?8)*)=KoqVomx-zTd>`pOLsw6^P0{ z&&m3TGw|~GhL%e0PmMG)7TaSCKcKCEXkaOr$EjcGQzjqSoLd$n@EBl?Sud-&E(jgG z=TJ8T7@@^yk&~v?%1UQ)u>X)7AW{fDt>-A1Bu(T65jz)|chwII$my^P(Z|6Q$tSG> zDOIttgCq3vc~IHo@6+lWSN%T7dz@#=?BX4weL*C}kL3&AMNkRCrc7sUjH8#AvTqv*Z(E~$r#HoV|MiXS z&GB%;L3kKV#zPZ#)DLNK`VtCn6(xh|2z>mjXdKInZVY2%0E4cJe-afaCj}}hPIFR8u*C{X*F{hQ`QhR5E4w?fK!luRWP6z zc+c#C22ZA^rh3QHYmFzzga^H#&({{fJ&n+%U0b$&21vR>l(u7b2tm+@bz^gV9 zUaZRHD&vke7X-xFXNnpK4jZ1fZCT%`clqb?k>@6?pHlWlP>v0P7IPdDheGep0NMMO z0KU{?2|DYvd z+S-s#gK)768M?Yz$M@_nIm;$SoV0G@&i8AW<=Utleh-0}49D0!Cz7ea+Daok0CUta zXN?GCwl5tA&}M-Lc#gW1KR3Mw45DV#t>*x(2E&Gbwm_4{(vHu;5ZP@HOruFOb>Mk} z;fB&hu+I^;I*scqR9RWkArUadgVNTG6j}tWbkI3xDw5K`CzbHFfH{iG2?`O9?K#CP z&>V)a;jZx$j8RwUxpa^chcIJ9mmmAd%*wk~nI2sFjL!fYQlJ-nWyTRS>-)En&ox z$17kl)Gg7OYOJxH1)*Uu#NCV z&|7=fr2=*58KsC8}%t81x(5ZAyvI&Vuezi@I-^m8Vh0!5Z+wR59 ztq?RICC69N)!)|Ttb6fs^mGHto1vxXb6G7;MzWa7C1@L_#@a%Q`!4%1hoW03vPdZr-l9JW3lL&o)5S0K=;?l}%Hz z215?@{4~kM#BTG&xm4v4s9g_1${T+aAF*Yxz|3{$=<|kxVL(<9V^DZG6HQXaLhX!A z&?lzheK;ABsNY=LRzcWu;O8uh^byH}?t3BZ5e%)C!@61A&f-dGLsG6TcYpVLZsia0 z{R6V$*!+o9o0bWEHu_!%f00^4KB$e?cgSx0H0v%%z&l+rYcKb~wSdK-`6xhoBBn%8 zhKO$L`V0uEgqrvKdE5gl&^Z;-=T-FGHP7Owl;`W;omY?_p?Z^eRO8uVz#! z$>PNq2S45tf%IbQ1mvl_fir7avx|tc*8!VtjAR!fSA2?4)}?$T+G1WBu!?{uPKtCx zK(J39VjX=mr^?Flx+j{(W_fv{UkW78E=IF(+%<|5v3f8%IiTU?O-DGYrG*@Y9}Aau z5|YA+fnz*Kv3UN{5pjb}?1EoSKRlopTnrzTR&ddgx}@=w?ht^ib`1inQ{A&egV(VF2By8Z|#r#$3B;agdCYjl>k(T*Xm6V9Cr?_l9=HC zb!bL@Z20QD1+0@7O2H_~p4Y$Cqq*>}JhOa6ddu(?;C z^`)JzB%;B6o*!viuaYlReq-f^oN#?3^N0L8gJBm81R0Y7$uov;`f@+OMe&pEA<;UR z8aFeyirhI{i4^C+AOJ*Km&uy)UlEJLUH65qSp0b8p5tzpAvk3o{j)mZ>|%(q4waU$ zu#m0527cW~%i(Hh8-5{44ro>S=XVw{gKYO=MVqYH=O@sEb|IFq-rd3#8pyya2qfP_ z@_iS|9Q%m-ICvaz)`8`AA{=5*=C&y9Xy_v7&@~U-hKUHhmtQq#qSIaOJ%4Sv^?p4K zc7)%)+Lzdy`{8ET@T}lih36kZ44Z@{USN!{9=HH3B!gmMUOX8}+mjL48V5hb)146Y zlLDzIS}*6iIp`$iAexr+G95{n?DehS>G?=TeZ7*>iZ7<6J`~PlCW%TluBp=BAF~Gi zbhlKd8uh@B8ih`;_J=ma-0feJkvHf3xndlXI@9i$E-=Q4b4-6Od|E#`6S>EM<8{#O zpC-PoPYA{>Ujhq-WQwUPL2zu`_4fWN_kn%mk({s-+(nXsXz9tXS{PWKOauZN9!w?- zgjO^0bw79tn@*08V-@(4tbXvDu=&|j(NrZ7u4$Xe8L5og-XJH+icJhzT#62}!t`1P1Mq;0ck9fD_G5xFfg~cdBi9z?!>GRb!jHBWo!&i@} z4oFjVmk)iQm?uHK8`pDqY=^J6t7fJXQ1a+dTNDZ1r?$@wiSXX7y;xqM#U&nL2k?a> z!^qVHL!{EffcJ_YzF%aVcvj1vi3y$T@u2rkx`K!24+$ZUSFKi1$tZ|zLv3d&bhFKu+$ex z<*6j?FAK{Y65YTbUT7<&pbkgQA49DUVdKn7-bF3bN>G7#+GST+byFDm-DmBXCxz?= zVj)S5Dr9pJf}zLXMhVHMB(L@vOKe}R9fzz}WZFvhO36vuc9g0(c|&4N`aM zEFxPAEZ`^*)~bWi5@T}NIg-6~^DHq~g8>Mq@s0*S!+S8@7q6 zEriSVJv}Lxwd>{IN9r;W;Q4wVr4Y`(<%cXyg%kvBlC}HvIfFNTN|^5#@<8Aqr-9Vv z#^O~j|HZp`+8Y}Yljo9lH07etBSRz>mVSFJ=h`Gnwl$T5+4z#W;aKBm3-awS%(xogE=xlJc=$gZ^hW#GC?Y~Iow+e&y)-u+tT>2B#piX?UKVc? zP4O`v)ItS|BnH;*@0%x;kJLk8+$VMnp%K!y@+M)szeJkPhbno@ByZqJ0HT{D-3)t< zjHJAEXVfG%Nlap}?v%lv;hSb> zfQmCnE;yZXms$qw=hQQJ>S1XJ}Sq^wu6i1yD3 zkyWM=58%LBpscmj<*6PUQpOx1H6wO+xu)rtL?gl1dx_qe>&WNHJy7eV)vk0D;7ZLcsY#fjD_tPSL1cVuxO2!4<=DeVm zana?0C(|xJNF&RpLct>UGvU(_$YA-}X2Q$@8FlkdikY;@)XHLzVGRq6V_oc~v|o@s*`9n=C?meo8S~z)su2q?_WyM|1bggMoq9Dp6xoqU@B@h)AgV z9%#U|Z1_nfUDV{2o9^AJ$+4#Pe=PEj)6+^0eWv}q{+U~p+Ox%1&L=N2hS4K&m^%RJ z>|NMm&CI~w_6s&l`&Ve!>T_RwbHpv#$KJs-nZ>*d-B(y8 z2GWDGk=`SIqb%}}zZnOYRd%TaeYW?b@X>pd5XGZ};jbb;Aj)fF+0 znEZT!^}n_HjJhK2^oR(xaKUMRfZ>ef_kozw37wsIezii6kIhae@2|78qTK~(@4=a) z=Gq2Sw;4XBx}SngoT4s(Q&`fWKZSAR>XqVHPD1=iLBE8$+=A>!2MxK*#^{k6`3X~j z8@i?n59EYpoK^8}?8Q-!J+vt3*qeIySO5Rugxl0sI-#&E?io3>-s(dJ(G98g#)pK1P01Em-;)7Dcq3Phx2X zngf`lSN^g0`d24AK&t&7X5(YZHmQh1qo zNM64NS$gnA**cLw_=Ii$4~l6`^Gn|)#XAZShWapiDw~Vc@IJ?l=NB`Trxaw?dp9uF z-@fM#w8q3mm20cM5(sKv58c#hej&Up5+;|f1UBdti0VjB$#sF=RXQdIg$m8eW;Hk9 zq*-HopQ-@emy@Ynx>TPc#y{Y+P~faUbWKikq7JuL$i{e7PtSJ(sCN=yozmKQQ}9Fu z8CeMBeeE2DG*;XiLAFyT<8YY`fv$A)t)mVQV+x2|BvyMLo!>TFhj4B z$x$nK)Q>y&E0aIy&haEB6}B(plv501K{@U8w%Xnui;Pz%{N;#i#L1mEq??~fiA z=od%9NTt){72p9!a&1iX#+d8p(^&#m^3cW&V!EYUacnz>QNQyB*revFz6ANcZCTsm z*8i4>$z~-^0H~M&mOthAKfW(=;({)X=D3*5jX=g7)4aS=VcY86)ES7Sh3qx_&G_yK zV$)`6!!R(kxu{yaHt?6=7T`vcWoVG?Lxmas-r;;JRLP_Y&_ZN4F_7akCqn4&R!Q71 zIZ;ARJBVZzFcDEm*vKK+C+bg<$#YG@XIT68M+GRB$8r2DRl+R_@%LkV2RQ z#yBA?B;RSbKjsbX4V_m&?`t^nsdW-}e~I^^?|8MaxadQLA@+sYT;8r`Ezr2*IvHfr zvAflAG?;4pBAF%-<+`<#aT|3L9oahzG3p7P}#;yqAfkcbB z2P#_9)n-OiBs7DVa&!HZa?5QohahKprzm0FSY0h+W5k! zB_;4@n&3mrcrpPmhEf|$>aksZwMiH#K|)U995!`P+-E9ALMM(cZIg-UB4bIY#HPxM^Na7k{xv6O_; zdT@7;5xqwUXAl7QFn7z|sufthL$o8@DF}xQc^y8P!3O5MX7K(%E>uqKQ@^q+F2? ziUwZyiLF?oRT`Aiv&Z=8f=xkXue{{;t5+=0OERrH5^8{5EncI`_#V>rqoZ9G#c9Td z>G3qF?~5%I!cFXwz7rl9{UYEoik49C2gc||q!J}YshX`4ZQhbz5`R0?^T2f?cCD{A zm9!u`arwgruT#Gn3I68uwNYu{-FCGynMbO>;7HOAT;GO-On>${{@wdnLGh>ptk4k< zJ}DD`9>uycJ6Dj-o zDo{#}Fp5<^ekZ55_2ihd4`tz?UA4XBD|G!}frR&OPPgm=y;!PaDrh`mX%kbamZjEn zCd@V|aF^+)#e#lCS+nSlzx_rJwU=7PJUYsOU98eNW75=%m;{--u?|0}Y0n5NMHBvN zh`eQvgxjmr^7%uscP5%i@Ia9JoH25)IAo|rumw0Ytojko5{th{R)$+WS;$%+04;mQ z#?tPXXtjRb2s@FwNvV>=LVq4_-F4Lu^aqI@dZYz?ccd>OIGn9QO>_J#XFm!DmG&7u z)$dmN19zQ_A=YB@$%0VeODFz!Hk!SM226jP>)Y);T7?T%#H4$|&uk90E*o(6-v|Sb zBTnB()(t7d*-;*3;d8Ml2W8MTYU15F<>>R&aDw%i%~W#)+1?xtj+re*g9#muU@O4u zk<7K3QRIegy*P%5(@|6crJ`QEY(oT8e>(>+!O_EvgAjX+cq|_s{*_HZw{>QyyW;XG z;);WmhN`&HnCEpXM~w9czCiGqR-A(JL-NF95HmBC@HbukPI8Q>?sX$7o2wC|gn0GW z^C#HVAZg%WuP@(dO8h~O^@?MO`BKPCf@}dRP0O5_hmTHPUSi>Wr^J8`>%VFZ62Ytf zr6WT>H_j^!5+`{iE6*NBhA&QDV&#zINell*x2Z=1r{spp@JEN^emwa3 zHAq$0?eVC7K5ZYk3aZ|G5MKsJd3jAiRy=>zK6eL%%cz0A8wXLxz&tsmOX~#eqV#=n zSTBQwtHaDJ$D^cBEcuM0wzT5Z`l>%D#h*%1-A6pKV^lLQPUy#LK4Nb+eJMUwRniv%-8ce$v8vF+?4L>6!c=&1%GuNPG z&7lP#37E{Br?H&c;u~`%Xv^^ZoZt(64kzEPFT?K|;zfVinfb_8^;yc@moEY;@4t@% zfS%nvCUE{Uq}$f|9qovv0Q*I?!4)(IH$LGXcezbp?*5@VpVNW7?`+T=j$;~~-a*tI zT=8XH0Z$RCaxgbn*d_esnX{N_sUxCnanAO|bKIdw0nnQ5B@}0zu1m zS076kN+RQvGru-yg)yFh0+!+rSY(h8#fKPC2=e7r{b1SGoJJE9VSTaU3iEh3wK zxqvxQ{3l2#rAV_oe2FeHUtfO`j~oo~tiOZ`5KK%)uXips287;isW~7#Ckx#XhH9xl z=LvgDXe7Wl$^p2zZGnvBs(Pd1@L+Ic7@ZwSHe?1+Z*|ly+|w_y$|7)~TpL{L8>d3w z)zl}vK^8*)BT!6nGGWYoSu|Ba`n;kfRknNGe!pG>#K5qlIQ_c(oFW6!+p&pTnIFW-|jg1jjQ8_w9Fi zvxnUXpFbIalNI~4_Oni3Lqm@K#*I3y0khj)I}8K3U8{cpv6q|5QMNke4BiaguBOH; zLRTK=wcyF8lb^D0@wqMjh{Prt6efKvWT)WZoP0pwAO)T1oW&1eCh{*J6y|%S+&ejt z`((0`m9OKZ^UBYapom+fIGYjVHzaVGFZnvHaC_Djq4GUkXC2G^F}X`)g_1?n!RDIA zdNIQ>bAN336bDYVW4WsmRyZfQQc>TKLy~$pnP{{7N=8>AcY?hByTqbPZ3^~&zEGuC zV3eqY6|HyGM|x9KjS#OQi-=t%=@ud>wBtIsA);=34>^(T-s}%)>X4i<H0QWKps6kryL|@m7F${PcQIvf@l3gE2V^Xcw~L(D5(ubTwg@U4}wfCWfkxblf0@p@&*)katmEdY%3bt`qCa>N!u6WEX)zW=vOGD? z@EfN$Z=po1-~E)k3mTr(oA1W;cc--BtSYDWk#hu7*q76^?n=JUrTUlX22Ur#&ZObDHQH)wz)DRECs_mN}N+)tn zoVxe?4(P8ARSDyuX(QBo>kYE{IO}AxpAm_%+-CTILlMN1`R0U#b2EwWtWw7A!Ss7R z;lwrduZZT0752+Iep1)E;cNgRu`ut-I4siSGmlebj_kl&L&`^MRC3=OGA6Quz zVzEU7Eia)(dtj^=VR!QkC~v8kA6jg;Kx>g`)v`0jpKFdo`~VkSOWV@Xs^!aDN*h|7 zoSx%^0mEXmeUigo?ofv9(r~uDm`RM)Hn{g)4A4(BuyE>|urj%SEQb_;P4%XM3DvIN z`~8^)iPy0GYXPd}CpiR}+gV0lm{So7`iF*PUvLqV(2LBWXdR*TWjjMN0d>w&f(g); z(h}O)2Cl)C!ePXFTTxNzlSE z*Xh}~hp+$w*gbjWZyFYr#EXadm=G9`KK9aD^JjulGqY!LFe6G)Y$K~9XK8~(_qDQ8 z4C)C5kzl&kwezEfgUnCAU%d{a6Wc{0--Oi}I*Km*Kx&1IV1@Dc)Sdh6;lJzc8XP?= z=k;U;pUix^fFB`&=vR-Y;IC^Kj@Aj3mG_uk5*XcXcvYnowbqyeG|99BK_Y{}qi4{xn0Q-gyCj`R%b$ zoLf+%Vkg*>+g;OfaVGy59LcQGziOJzdWut>X9F zey?OmQZdY=$GMbF-m5^tRY$P?8Ma`Jg!l#4XRS7nAGLybrJU4My1>U^;*PTcZRGfp zj}fWqwB&;iTna`%SkldtG;~AP;7YO*Zr9E%I9`p*w-e9PWP$iL;uASLQv2_rW{~dz zk#|sBQD5*%tfH^iufS$1(#m@=br&C!!~xkHPO;tGYReOPZo?Wv*9wMRLvGQp0I3IB z#5y(Z8J}8^gI2ljV7FC8`hVk)be$<*%*dniL;E>8-$N=+cguAijZJ!KY8%frJ@8Jxs$|1-eZT*h9R&e^kr z3+H~}l@}!45z-t_3y3pOwAJ5Ut)Nnu6B(?v+UyOc?n7cqo_ZF9WJO#`Q&Lh=CgCPt z&eE3Ef$#AevLy(s(wu8M!iZo&f>8PEt5FkSNkf;q9?b&GP}kfU zl0-LjP6$7#pMrOUKd8d91r^YBZraq$$NNbrOpr+zgKr4wi>RY4Lu=hdV$nCyD@^Jf zK83Rn^t!p+r_J%)7zltOau2GG*~z7GG#zx`Vxim)sg!hVRtpLk-4?^WTmAn2t?Wi@ zh7bC8O*eH3s-DDog~mYa#pf=CasN`diHo=hi~~g`wZ=-uwL`qjk8;5hC>&sB-C>MS zCR=K+BeUW}n@cLVA=i@&-XL5jGC2pNRBj@_?Bq!%uTqPI=(HIt}$J1gkk#D=whW9UO zHfU*dNPIcuocB)WJgaxQ-ZNSKw?HY!UlT*%O${%xjy4BQQxUy#;fK{zyI2u~@6X}l zBqw^9JLCN)aV0VglI>e7<~FH9F0SPza4x%!@t}Hwy)@vBRf>&^bYz<)$+XRkJMhus zy-XW^)`Y#CUT9iNLx@gWhCZeHE70~R8ZS(_Vh|K*NB}KMeqZE+u>DXfjph|bd<4iiJ(ETqYE`GjyKsnE) z$mt#1pzZWDAf@@z7Dn5QB(I&M1%y;hHI+R%8C{AAZJvnokMSYIv;gR9u%Q% z>TnOM96+xyrr6hcZNqga*JoI8oHoxY2|LJU#MFAwa@hv|I|H71d`oD2SPq1?P#1`` z7jC24ugxVN$VP`1| z5sDJF@6DG$&DeE71iP}QgJRX*p%if|sPQeiNsKZhR~qocAy&;fHje*7qjPaKR49tl zESY@Jk#d@}KhWFD!`$p_QH~O3yGhQzp*q9nVX`YZP%CKD`(s(ZX)&GmS!?+q?ujAGi7BC*3h)(=#rWg<>!i~Sx@#= z3)YH_oXode>}2#PM(E!3y96zRP+@bN(BttC*tkccviuwu9VeKaY7*@yY67E_Vw&{W z4^uPTQD0QE4Zr9)^1dI&^8l+%c~gj7p}w;n|DQ=CU-RQR#VqvYtiC(x1a%MeBd)l| z`PMv2{IvjoG|G-#RPTDGoz$*R#mlBiTs9rlvh293f??1DgBqi;y0*ayhvw6ju~~j? zkis6%`72=;)PnCnkRk$cBEZe{y!>IwZzdp|p8o3N_}?NId(7ys?L45a9M({#e)(`p z0_-ynA?^RcelcmrP-+{BO-O(4`r~^@1@@Bji+q5fZ~|sqIUhqdJCKgeJAtFFB1(gx z{dU3d z*d8>pEtjvWO>nsn82We;G9hU@R*ri5r+IL17%6l&TnCEiRuZoAMf?eeb>ftRh2FK zT5C)!|HP%U$Z&ge4@m*fg4uR&INGiq&2&2r< z+)!Y=1Mqpkhmh>nH zQ-Ldc30Jkr^TD5Bt{ZoWM?=qPp8Q?b_~uQ-+SzH47DknQPIEASp}Up{u|z8+t`_>g z_u3+OI-0B9;pgzWb6-@}TS-EMAp|c}su>A_rTZ#vd%Pc!LZHSp*AagSy6oR4;E{tP zs%1^GEKm*MdJ|J(^D?p^a6grs>e+6ifpBj9Z*{oDzyS*YQ?h%X^&VUpVB`{s+?E*8 z9t_J)xcHer0LgSgjX~`62oWWH4gPsbc}RBS_q@ z>xE(dr*TEAS4}bnXui&&`LLpPkdwE5&m{_ifRa4`gd?N|Ec~CK^g2o&D4x~jj-)e; z)C8|@Xi^$p9o?RHIurehRJ4dI{SHg9QBi1|)Rw_&adnm(5#O>7TI8#dFVl$=)zNkXmCrfH0vs<9h}62O3n`0geFx|m zNf9}|USCHDgee^Q3k$*EJK|QA-c48BB5rpZp{RPkdC-a{Uv09FZ9yuQyT&tAI(Fz(VOx?<$>~A2q+GqD7CS=2)?=>o2eUw zY3DxVn+54F2EzWNM9CB4RFb$qV6lo!-q=enR>u8dFh`$e3`Y#`@_(L- zEj^`THur8)=6=t=Z8wH_4vxiOEvH_FEMfp&b|i2n>bI^`^-G{4zaiBmo|kC7T7*^a zWSIQ^dWXSkryy_V+SZ&!+PfKb+HYpDx= z7Vp9f@PO%di(mjGC8MLA1Z{aG-=(lMC&|XX67glsNbrU*ok9#747|QKfR(A5kKz6J zqp0|bkU)FM$f4T`9?)xLf$(t723&>qf_KEbToZRey3=5vmFbLx6-9DCBPOhMsv4T` z)WYj(f2Fs+#R+v0XFjdcWzodVWyHF?NwDN@Q4PoI*YD<`YE==XJDxU4wlz`b%t_x*hhR!1>+)jh&{Cg1`Gw>1ZK+!A>9xhm(z_}n83r56HF*G#*_ak zGihrnK~Q5$u|WN-aN2Sn&qj(R~&N@$j4TXZ*Q? zXS?g^K2Nodvt@<<4UYfuIm4$i+Gvy)NavU1iIkO!^sd%aj)&l5)Lp#rOT0jFhmyTF zv^KR+MGgSvr;&FF3*<=7T%QN-ZsbzSES(zJmzFo!l}`;izWI~Ey}si^QmlAc#{pTG zUGxbcZOL$K2g%xdG$${Gxl=YRSO_uu<*J-Wm%0ysZSTd7;YQgQVZ_os$a*>w?SJ1+MGZT{n45xuFyv=bgg~;k;j%ZOiD-2ocC6Rs;F@{^V;Ua)}#a7(WAkQLgs9^ zmx_FV6yvat1wyqt*Jue3(S%eIW9vl`xYQs!P+@mo1ZmIN2n%)LI#3|_g@dJCkP zeEU;F5Eu*&_^RuPc96z}h}+5@MReLh*e!lG&eePDqoIQ|5=l{i_Q$eAPVbjYyMzyA z1uL1|SptfyG2(>_?^nMYX3_SVV!@%a@3doi6S3(>3Ac|F||y)wFbQbpvcj^d+(_S z=xK9QA#eTVlu)8S*1`kDp)1nC(4xoq=jJ4DdpB2dP2yqzH&TthICJ3K^iQ=IGUm_BB$oTj*&JJw2PPo{C3 zb@rE63E)=5w}BR^JeYH_I$Mn3TSMthOMd6i*~EV1D~YD`*z2_IQ1tAeP?L6ix)9}3 z*>}5S{IV60M6~lLvPJlf4MyqF77ZTIM?jQT#+_=-a30(*VCgP`&n4wYqr`W@ddT8v9Ly!h z9&-KmL&Xv^THyxVz;9$P9t3lVO#}T#u=o8UI;Rfv_Ph!$u+9-@GTK0(hZN{!tzo-{ z5)eyH&@OIQ((?SGjFQn3)a2pFEw z;2Ovv&vBvP%A7;`-G8%9ilm68dWr>Pq_&T8ChT8ffMr8=XlZ|yw3{{c?D|9ep`il| z_!4R;zxDI>v_a}cLt}p5P+SRrUR$622j>(Pc_eKdFjx0_4%OojB_=-DW-*`Ad%bDU zkx8aiN81S*<-Nw1(Ek?m%YGAqnDELDvB%383?6zdNNq?z0;7dm+=%Xott_C!WDv{O zbz!zcKZFAlL~9QoSooIhnr&L4bf@^?;_xXd{1(`gg|%<3X$|(o{pVT5x0H$pU6n_f z7KK}}U?I5}kfoXy0UE6aH4&GjZ?86e?Pp6Pu$OolNZe@C+B8%YvlsoC3Oha=#qt!* z*)+_o3o^I?RO7hH?W~jS@VXYx+N`V1X5yrOn)vle1vU!n?l^e23A6Zq^;R(mku5}| zB}P%4ItdUtt&FdY`pgxdShTtv$Vq%tm;PbzW`iI2G|@m#M9y;nN>JR&jxB^iob0Yht4 zZ(4u+R?Y+55ae7r_3LEI?$O>A&b6X zo|PL=Rpl4IhOIzB$NEP8o{k7`3a(?Fg6^bLC^UevmVVkbW{aNWSFN-HKYiDbP2~Zy z0?hG7H1*6TbB=?bVX}PHbA1NS4%KSkxkKp}lptO6&G?WmeDMGw)5C<#3;Jc_w@v*! z8X&dogMRtZl7%)>i1qik_T$o5U9HtrQEkg8bv5U{;b34sE7VuEo-U2*)DK2i+Y$0d z03xlU%#}c0Eo+ovfJ_PVVs8347pP}qi}PmI+uo1}Cwb5(vz@|! z5+sR8+u6(EBPWhz3pMZt?S+xJ6E28>daT!(D)(uDbsbmRkDo^ zN4l59oDjCLNd0D;4gg{oFfhgs<+CeMJ$Hfim~0v-@MK}`Sttb;;`*k2Pt^pG+vBS^ zje%wwC3>Drc?E676WbiEzP)bIDiDv5%nf6h7rmjEd7U)owPdo`x@p#h-<8ik6vClN z5sITuKBDDEAL1tQz^Ka8Y+cFxNbTb2c}A%c)ztjS%Q1P^XxO$_p?L1Un%)+)+jq?Ziy>3d$opTs3>)E zd;R}_2Q!N@B)`3hrSDe7#Zsr+!0SNEld#D&^lc6dVIV z$HFFC6NCqn#x(+B#&$O9iC0wH$XlGH_1WN#Icqrrl-FYz=OM=r{B# zcnre%*SK^QK*hsQ&6!F9h8y`ZR_ry)($rq!jK5-ZBRAEsc^j-;11#Hr?ORIKS6W2l zcwmS<(Hhfqu~ks{Z}pF%RTfE~*glRrF?q(ROFMMbvKf&qhQDyFN|niusa`hGQ!WU@ zMihacC@{wn3nex+5w~}Q6_Q-Q^);d@M%76Ady~LPsDoG|wx<$z$baXTu;<@;9vkc+ zfKF`?D3AD431~G_7>8hKu^jNqj1lm6IugEdu!dC11*~1a*4I>0{7oh$+WNv+xPqkn zV;_`R0>O6-(v7#T572*teh@(zcXQ%RJPtMH+l*d(6TTNX%i3dppYwpZOGWnlB%O`? zuwI=w?j(}1nwtt_G8O*S=@@Ra6+A1YSV9WFJATQIX#|C{lGgelD~zuZjP#nf>f~~- ze26gQ(tek|-xCrpW#eD)I>kmIuC-Amzq1vN-ZH!&3<_7-CI0)Ww(Fct^z7B~N$wGZ z4$7glZZ1GKqhditPQR(p`~*UF#3W6=Xg9EoWO`sEr%)3f83nhdp^;=qBEQT3knfVk zbJ<2WP-$}q3P-sA?jhL#->Hyw(_QDyP*06#mrBQY9Sg>{knNF1{8%^14mYb+(O#$J zeVV6Nf>V(hYKl(=OT+84u(kD8ZqFIX4@w%7N*}ga3pl<(vFVNOg;}hTr()$QCe^=f zQ$Sm_1<(ov9w=KkLRh2w(ufOxk}PvT?9l^4+IaOEjUt|aC2q{Ok}e_j|KcriF}C0t zINU6s#`E($aEL;CKSpc^f@5h+Rp})v*7Z+SvFT2Z)>(|m_%RVQUVv(a0u!FpEZ?G)U8iYW ze)CQnD|Il7HIEuLtM2SNP9V$mL`e4Inc#A{G{|P6JXH#$hn4ZbqrZ;tzoFcyIb)RqN-TFDcizKn8vULvZvI`bQ`Aiz%uUA4Y2E*&uiYka@f8tq?&1{ou3KvQ(R6&h)-tTBwR~& zlNsU_*Ylg5w*55-$27TVsbme%wm3y66(PVe>{cL)q>_5Ik)M^d$q_x=_==6|BU|5a zlwT4}wAO2aNW;e1THd}g(q@RmxzTsJx9uv}Yo5$NpX7==xfBo(mjU4}pf!q41U_}v zZ+qC_ljoGhSKD%L=1SsRkLjLambT$4EIS=WuAj&g3goTQ!obf(G-(ntTS1k z&X)D3!Uqa>aJc97-9?Jwka!Hrej5f0*5{OlKH({^pj*iSxL`+>4cLwky%;nQ;bS^8 z8%9{%B~(0scsi#sttr|3JLo7qmbaYFW}IsJ;&V2$$+3yLupi3 zYkI4m*X-10eI@7dt-@X7V>Xvw5^96Y5X{lsPmxhXrU-~p`<2j~rB4dOBTJN2oPg}$ z>k5}+`T84&%I!f^qPmabEL|0!P7@!l8gN4eX6tWfVBkv8@CX33vl`-YX%)!6J zK}hq7$!dv`iSW>N?IHBkTLH20)knGj{YtTCa)oq(u2=74O-^b>vsT)ZIX@#5cYFgK zh_v(SXP~y$RD|p-WEcdC5gGZ-=qom4mNS*mEx;^+H4}q(wv(>+3dRv??KxPlr3vG9 z`}hHK2=v8r^*z`G<;eX0oB$H3YxBgFdkEi;>K}vex)Rd{OAe$nkLmxA^+X}yez<}a zH;W}{gOZ;wWo~VenkPFKf|+&KYWvN`n-JS|mItO*6(o>|kn{q}_}7I5NgovDw zB^xRG3)IbdFaro>AM8_{v`vyw%w|Xm4J^{dZJi&Qu zuYKXOjM*-5mlAKrRD^y~*7!(ws=97&uOfpfi;3o73qDoBz)PGC-rxDmeb&m8s$i2j z*K^t39CT#?NoE=Rr1`xZH-$fi3|d4XK4EL#0TkOaSd9v+#G0`d$GW-uIvWP=M*4I{ ztMe!x`6)@q>ZnOnOBw1d`E(T0WBeDIZ1u8-U+&fD$L8H#*Tmwz@pa7t?jbREK-1QJ zPVAvt+^D%jGP)Xp&CYOxoivc!W`;|2CxlJTB;Na##6#d@4N=27e~k6p{w(_~H%qS4 zRZ1(&`OKmoOt{|JHFQAe&n1e(kR%@t73>Jyweqf#10vRX0dG1@Y$zYcuV7|Y6_{mUu4{84;yTWGwPtU7Pvu(;k| z3|}0ku!jzF1w|`|Y#V(YViHN8<&YLNbK9hJud&G5cBQGTX!dzNFb$eAYi}yNR2JO5 z9a=~}QoY>@xf}7P|0t6Jn+>Vhn);@|@wUV$LNXT*ZxVkuF%?hryUt5x?L#gVnfyL( zA3^7-#>Jc!$h{Dn8?=#Q;(9N{WBwDtov}-~BRZe+2~B_#Q>mQi8Y*SM2I(b(Re?QG zT3~VGi_>~fE zp~${$V_&a?%+N?r9P_ap57KXWpvD}_1g63BrHVy;Qo4B!x+M>5&Tnr$(#}yCF!4wv zHsu$qjq=7}q~#Wg#iBpubY$`{HVJwkHZ`!$n|s8-KF|DqirPEMFU~8!j3&=ibVY;z z8N>adodrxkHnWGt&-ag197mPDu~C0gu>sYc&$zZn8CFx2)|$*#a~=QUn=Or-Q;EUB z6%GVuBLKg-hxc4^t{j*$tE8Sc*l9RIX;_>zv2v_djKF%xL^pA!NWsMke=fnJ&q0-n z&H_A<<}hK_uWGTIH?hzq5FA%t$LwJqra_JR75^i_Z8x&(M*SDnrlTpkA~CeI+-KP? zw)69EY}Ga!2L$$9k$kEiYQ)%T{m8efP_u)i)AsMl<72Y>axJCI4!W8nJSM>g*Q+bGrcL%6Y z;Z)&M(>weA#Iy%V^=NusD4O#G_^{NblA-wnH#_#aQ*`e67e#I%%0x)&-9^S+wG@>g z=AxyaQ3yBIqVjUHFEYby4|gY?e_>Vc|0>UE`G9aQYJj=2QeGisPOK!0M~s|m)SO7# zK|bVz8N|t71&6u;xNLnbB~chy(Bb#oRyKnz8^Ut&A|8S0DpehIVh_b=+EV#U|K9Ao% z)omwF9dUIseyy!1X3G)CiL({(+`?H|qxy*8xMVmvSm@!5a(ORI>j@dV#j7bH*iLUI z-FK@Bc%V4GQ5LaUHTisd$iTdLW}02dVJ0Yy`i|K59EX-BP8E9eB;w?M$v8CFaT@J_ zp`sBfI$|CtItg;ET2md zyM#yVwqNx8H5LuH)+zh>%^1>-tG67SOeFB$4jN%7_jZT>RFjAcP(|0L_B~6 z-~ZsEUR|&bKmk8pN%e-X|G$K^u*VzPc8w)OQ)uxLevK zi$&Ok5z4oCeKNAhCaG9IiQW`^#kj|E{90_^06X9KxE8goE-wx>u@hXPkRd#|OP?!M z1C@gTR@HU1g)nrGupOJ%0q)Nm>fJn|dBXuNAM2)5p>~7Y1#8F`dKpr&g>CZLdg{T7 zXA!hkt#PB3MAYThBmOA<1>e;j|H06TAL0NM`)rg8N*!8(*Z>QDJK6O#Sva^p5Ltc- zVWY!cUCxYB)CJGxzqLl#_~|Yx|3ysvQ-k7lR#jBK=%9|(HfBAj49@E~qt}3xFWJPm zp|`l+z4p60>q9p>7)Ljug;)2N@^H&2=%0;OUFO8C`s~`J0gu*$h*zVaBk&fqdnbiR z`yo3l7_;MsZY^x7P~6xf=U%yvYmuNYV0N-8c-FSEt~Q1yYIe~-xzF;Q;!-JiT)L`u z^~zLq54fWFj{+G+g;rN$qn3|pRI}{y{rff~X^0lUJh5ZPzTWY2Qvs{hGKf+aiuq>O zR{oHp+U>fT8Xa8Oxq-L?7KeX_*&)F_%2JsB2u zS~E?mdc=4)j}y`ueCe+YOG2?-@@QMn5y3R}SxF#Kj{CzwWG8-Y-ZukWk_b%N)F~kE zI=ASHe&hKhzv^!*6h`cRHPhSh4=ft4hMJ#012{!Z&xw&ZRKdhs5fC=~U{0co%yxvOM)BqS2p^5Xa*zbjn`Y@1qWC5xsm3OIUi!hHqJX3$t zu;^~Z@iQmtru?+OqqPsJVojr#?Xb|yjz`}jL2(g1@Kcu1eJmq<9yF(^-4#W$;A4dA zf_>u?^3$+|)q$NkYBIY`KeR6ikjcgP(liWWz7{?PIyQ9NBS*62sQ9Fh0Uy@(S1eoxLEvC`3H28U&ysh)juNN4e#42w3Qx#Tbt`o^ zs1n6O#icR(KE-b}+iY0pG)Imyr* zuMz(TTYX;*;AgC@);1roAk#|`j&w@lfp+gs`TXX3)7#O)v_!lY>j_cyux;!81 zF$poBLoiIC{$S=E66I#5y{8JH6FT5i(HWi*7+?+)so>z6_5XL2H1qC{EV|#^YHMG8 z+-^OfSNkWQj*v~)#bM9KPu=2(w0W;b2oN+);x!=*V}wNt`vQR{+ah@qzLJ1ap;sq@ z2F?Io{0%-Zc*+J4z}rVoeoL2o5D}f0gI>`9v3TP=U;Q-6;hLb7XI+#lzku|;mmgM8jpC?(Ui+Xb1`zesrt5~uM}%bAUb z>mtZ1c5gQHMc}l#SYef_55iX9j5akmOuHK9fBir$eVkq^A@4M1Upn*th{MK?#>0iy zD4HP`KtBzQ(9e^vgQL=DRWqFbC^!Lf^>1lRvY~4Q3dcJJhv>DIdiW3tTGMR&ixAvH zlNtmzdq3R6?KFs}eBN|<>Z-(iAThkr25p5m!qcmr!NftOs)AN-EIpaHR3<@!ychP+ tsc;=%+C*tj005;sDue(5&(Rmg#=imp005mK4;Gu_Q9uI#00001Sy~l--829I literal 385556 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%0Dl8R{fv@i0 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%0A{0Q7*=A`WT%# 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 dGYUSY9}_3m=XheK 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

8M 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%0D_IxfI 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[~MgP)ywnZd4|&Pn9nD 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 diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index cfbc0d90e5..97e2ca8d83 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -4b1a0ead22cd5827af7e94da54337625b102fda6 \ No newline at end of file +41414f6eb74a8876bd80603865635e5f5b4b149d \ No newline at end of file