kde5 needen library and programs moved.
This commit is contained in:
@@ -15,41 +15,47 @@
|
||||
<Description>KDE library for extracting meta data from files.</Description>
|
||||
<Archive sha1sum="9217d8ab8adda24e34c1ab2b7e11add09a0a57d6" type="tarxz">http://download.kde.org/stable/plasma/5.3.2/kfilemetadata-5.9.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>ebook-tools</Dependency><!--1-->
|
||||
<Dependency>exiv2-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>taglib-devel</Dependency><!--2-->
|
||||
<Dependency>poppler-qt5</Dependency><!--3-->
|
||||
<Dependency>karchive-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>kfilemetadata</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>ebook-tools</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>exiv2-libs</Dependency>
|
||||
<Dependency>taglib</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>taglib</Dependency>
|
||||
<Dependency>poppler-qt5</Dependency>
|
||||
<Dependency>karchive</Dependency>
|
||||
<Dependency>ki18n</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>ebook-tools</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>exiv2-libs</Dependency>
|
||||
<Dependency>taglib</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>poppler-qt5</Dependency>
|
||||
<Dependency>karchive</Dependency>
|
||||
<Dependency>ki18n</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/qt5</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/qt5</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>kfilemetadata-devel</Name>
|
||||
<Summary>Development files for kfilemetadata</Summary>
|
||||
<Summary>Development files for kfilemetadata</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency release="current">kfilemetadata</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
autotools.make("CC=%s CFLAGS='%s'" % (get.CC(), get.CFLAGS()))
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s prefix=/%s install-bin install-man" % (get.installDIR(), get.defaultprefixDIR()))
|
||||
|
||||
pisitools.dodoc("AUTHORS", "CHANGELOG", "LICENSE", "README")
|
||||
@@ -0,0 +1,31 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
if [ -r /dev/mem -a -x /usr/sbin/dmidecode ]; then
|
||||
# dmidecode to grab the Chassis type
|
||||
dmitype=$(dmidecode|grep Chassis -A 10|grep -m1 Type|sed -e 's/.*Type: \(.*\)/\1/')
|
||||
|
||||
if test "$dmitype" = "Notebook" || test "$dmitype" = "Portable"; then
|
||||
exit 0;
|
||||
fi
|
||||
fi
|
||||
|
||||
# check for any ACPI batteries
|
||||
if [ -d /proc/acpi/battery ]; then
|
||||
results=`find /proc/acpi/battery/ -mindepth 1 -type d`
|
||||
if [ ! -z "$results" ]; then
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
# check for APM batteries. This sucks, because we'll only get a valid response
|
||||
# if the laptop has a battery fitted at the time
|
||||
if [ -f /proc/apm ]; then
|
||||
battery=`awk '{print $6}' </proc/apm`
|
||||
if [ "$battery" != "0xff" ] && [ "$battery" != "0x80" ]; then
|
||||
# There's a battery
|
||||
exit 0;
|
||||
fi
|
||||
fi
|
||||
|
||||
#probably not a laptop; exit
|
||||
exit 1
|
||||
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dmidecode</Name>
|
||||
<Homepage>http://www.nongnu.org/dmidecode/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Tool to analyse BIOS DMI data</Summary>
|
||||
<Description>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.</Description>
|
||||
<Archive sha1sum="d264591f27cc0e918f299feb3ef990ef122c609b" type="tarbz2">http://download.savannah.gnu.org/releases/dmidecode/dmidecode-2.12.tar.bz2</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>dmidecode</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0755" target="/usr/bin/laptop-detect">laptop-detect</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2014-01-22</Date>
|
||||
<Version>2.12</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2011-01-25</Date>
|
||||
<Version>2.11</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dmidecode</Name>
|
||||
<Summary xml:lang="tr">BIOS DMI verisi inceleme araçları</Summary>
|
||||
<Description xml:lang="tr">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.</Description>
|
||||
<Description xml:lang="fr">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.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,31 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static \
|
||||
--disable-rpath \
|
||||
--with-udev-rules=69-libmtp.rules")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
#install HAL file for portable audio players
|
||||
pisitools.insinto("/usr/share/hal/fdi/information/10freedesktop", "libmtp.fdi", "10-usb-music-players-libmtp.fdi")
|
||||
|
||||
#rename UDEV rules
|
||||
#pisitools.rename("/lib/udev/rules.d/libmtp.rules", "69-libmtp.rules")
|
||||
|
||||
#pisitools.removeDir("/usr/share/doc/libmtp-*")
|
||||
|
||||
pisitools.dodoc("ChangeLog", "COPYING", "README", "AUTHORS", "TODO")
|
||||
@@ -0,0 +1,92 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libmtp</Name>
|
||||
<Homepage>http://libmtp.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>An implementation of Microsoft's Media Transfer Protocol (MTP)</Summary>
|
||||
<Description>libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP) in the form of a library suitable primarily for POSIX compliant operating systems.</Description>
|
||||
<Archive sha1sum="31bebf3e49612f712f4ab1a03284dedf7044000f" type="targz">mirrors://sourceforge/libmtp/1.9/libmtp-1.1.9.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>libusb-devel</Dependency>
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="1">0001-Fixup-device-OS-descriptor-probe-code.patch</Patch>
|
||||
<Patch level="1">0001-Fix-inverted-boolean-logic.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libmtp</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libusb</Dependency>
|
||||
<Dependency>libgcrypt</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/lib/udev</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d</Path>
|
||||
<Path fileType="data">/usr/share/hal</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libmtp-devel</Name>
|
||||
<Summary>Development files for libmtp</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libmtp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2015-04-28</Date>
|
||||
<Version>1.1.9</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-05-25</Date>
|
||||
<Version>1.1.6</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-04-05</Date>
|
||||
<Version>1.1.6</Version>
|
||||
<Comment>Rebuild for libgcrypt.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-31</Date>
|
||||
<Version>1.1.6</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-16</Date>
|
||||
<Version>1.1.5</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libmtp</Name>
|
||||
<Summary xml:lang="tr">Microsoft'un medya aktarım protokolünü destekleyen araçlar için bir kütüphane</Summary>
|
||||
<Description xml:lang="tr">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.</Description>
|
||||
<Description xml:lang="fr">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.</Description>
|
||||
<Description xml:lang="es">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.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libmtp-devel</Name>
|
||||
<Summary xml:lang="tr">libmtp için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>hardware.powermanagement</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
autotools.make("CC=%s LIBDIR=/usr/lib EXLDFLAGS= PROG_EXTRA=sensord user" % get.CC())
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("PREFIX=/usr MANDIR=/%s PROG_EXTRA=sensord DESTDIR=%s user_install" % (get.manDIR(), get.installDIR()))
|
||||
|
||||
# Drop static lib
|
||||
pisitools.remove("/usr/lib/libsensors.a")
|
||||
|
||||
pisitools.dodir("/etc/sensors.d")
|
||||
|
||||
# Install systemd service
|
||||
pisitools.insinto("/lib/systemd/system", "prog/init/lm_sensors.service")
|
||||
|
||||
pisitools.dodoc("CHANGES", "CONTRIBUTORS", "README")
|
||||
@@ -0,0 +1,102 @@
|
||||
Submitted By: Fernando de Oliveira <famobr at yahoo dot com dot br>
|
||||
Date: 2014-05-21
|
||||
Initial Package Version: 3.3.5
|
||||
Upstream Status: Fixed
|
||||
Origin: Upstream
|
||||
URL: http://www.lm-sensors.org/changeset/6216
|
||||
http://www.lm-sensors.org/changeset/6237
|
||||
Description: sensors.conf.default: Add support for NCT6779 and NCT6791
|
||||
fancontrol: Deal with moving hwmon attributes
|
||||
|
||||
diff -Naur lm_sensors-3.3.5.orig/etc/sensors.conf.default lm_sensors-3.3.5/etc/sensors.conf.default
|
||||
--- lm_sensors-3.3.5.orig/etc/sensors.conf.default 2012-01-31 11:25:29.057246000 -0300
|
||||
+++ lm_sensors-3.3.5/etc/sensors.conf.default 2014-05-21 09:35:56.110779242 -0300
|
||||
@@ -308,7 +308,7 @@
|
||||
# set in8_max 3.0 * 1.10
|
||||
|
||||
|
||||
-chip "w83627ehf-*" "w83627dhg-*" "w83667hg-*" "nct6775-*" "nct6776-*"
|
||||
+chip "w83627ehf-*" "w83627dhg-*" "w83667hg-*" "nct6775-*" "nct6776-*" "nct6779-*" "nct6791-*"
|
||||
|
||||
label in0 "Vcore"
|
||||
label in2 "AVCC"
|
||||
diff -Naur lm_sensors-3.3.5.orig/prog/pwm/fancontrol lm_sensors-3.3.5/prog/pwm/fancontrol
|
||||
--- lm_sensors-3.3.5.orig/prog/pwm/fancontrol 2013-05-23 11:09:22.043242000 -0300
|
||||
+++ lm_sensors-3.3.5/prog/pwm/fancontrol 2014-05-21 09:35:56.109779277 -0300
|
||||
@@ -206,6 +206,65 @@
|
||||
return $outdated
|
||||
}
|
||||
|
||||
+function FixupDeviceFiles
|
||||
+{
|
||||
+ local DEVICE="$1"
|
||||
+ local fcvcount pwmo tsen fan
|
||||
+
|
||||
+ let fcvcount=0
|
||||
+ while (( $fcvcount < ${#AFCPWM[@]} )) # go through all pwm outputs
|
||||
+ do
|
||||
+ pwmo=${AFCPWM[$fcvcount]}
|
||||
+ AFCPWM[$fcvcount]=${pwmo//$DEVICE\/device/$DEVICE}
|
||||
+ if [ "${AFCPWM[$fcvcount]}" != "$pwmo" ]
|
||||
+ then
|
||||
+ echo "Adjusing $pwmo -> ${AFCPWM[$fcvcount]}"
|
||||
+ fi
|
||||
+ let fcvcount=$fcvcount+1
|
||||
+ done
|
||||
+
|
||||
+ let fcvcount=0
|
||||
+ while (( $fcvcount < ${#AFCTEMP[@]} )) # go through all temp inputs
|
||||
+ do
|
||||
+ tsen=${AFCTEMP[$fcvcount]}
|
||||
+ AFCTEMP[$fcvcount]=${tsen//$DEVICE\/device/$DEVICE}
|
||||
+ if [ "${AFCTEMP[$fcvcount]}" != "$tsen" ]
|
||||
+ then
|
||||
+ echo "Adjusing $tsen -> ${AFCTEMP[$fcvcount]}"
|
||||
+ fi
|
||||
+ let fcvcount=$fcvcount+1
|
||||
+ done
|
||||
+
|
||||
+ let fcvcount=0
|
||||
+ while (( $fcvcount < ${#AFCFAN[@]} )) # go through all fan inputs
|
||||
+ do
|
||||
+ fan=${AFCFAN[$fcvcount]}
|
||||
+ AFCFAN[$fcvcount]=${fan//$DEVICE\/device/$DEVICE}
|
||||
+ if [ "${AFCFAN[$fcvcount]}" != "$fan" ]
|
||||
+ then
|
||||
+ echo "Adjusing $fan -> ${AFCFAN[$fcvcount]}"
|
||||
+ fi
|
||||
+ let fcvcount=$fcvcount+1
|
||||
+ done
|
||||
+}
|
||||
+
|
||||
+# Some drivers moved their attributes from hard device to class device
|
||||
+function FixupFiles
|
||||
+{
|
||||
+ local DEVPATH="$1"
|
||||
+ local entry device
|
||||
+
|
||||
+ for entry in $DEVPATH
|
||||
+ do
|
||||
+ device=`echo "$entry" | sed -e 's/=[^=]*$//'`
|
||||
+
|
||||
+ if [ -e "$device/name" ]
|
||||
+ then
|
||||
+ FixupDeviceFiles "$device"
|
||||
+ fi
|
||||
+ done
|
||||
+}
|
||||
+
|
||||
# Check that all referenced sysfs files exist
|
||||
function CheckFiles
|
||||
{
|
||||
@@ -306,6 +365,10 @@
|
||||
echo "Configuration appears to be outdated, please run pwmconfig again" >&2
|
||||
exit 1
|
||||
fi
|
||||
+if [ "$DIR" = "/sys/class/hwmon" ]
|
||||
+then
|
||||
+ FixupFiles "$DEVPATH"
|
||||
+fi
|
||||
CheckFiles || exit 1
|
||||
|
||||
if [ -f "$PIDFILE" ]
|
||||
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lm_sensors</Name>
|
||||
<Homepage>http://www.lm-sensors.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2+</License>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Hardware monitoring tools</Summary>
|
||||
<Description>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.</Description>
|
||||
<Archive sha1sum="179989a52bae8f01ba8ed77e8a15af6ec653d89e" type="tarbz2">http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-3.3.5.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rrdtool-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>lm_sensors-3.3.5-upstream_fixes-1.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lm_sensors</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>dmidecode</Dependency>
|
||||
<Dependency>rrdtool</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/lib/systemd/system</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lm_sensors-devel</Name>
|
||||
<Summary>Development files for lm_sensors</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">lm_sensors</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2014-04-14</Date>
|
||||
<Version>3.3.5</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Burak Fazıl Ertürk</Name>
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-19</Date>
|
||||
<Version>3.3.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lm_sensors</Name>
|
||||
<Summary xml:lang="tr">Donanım sıcaklığı izleyicisi</Summary>
|
||||
<Description xml:lang="tr">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.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lm_sensors-devel</Name>
|
||||
<Summary xml:lang="tr">lm_sensors için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("README", "NEWS", "AUTHORS", "ChangeLog")
|
||||
@@ -0,0 +1,79 @@
|
||||
From e1443c945a4cf67096d8c27721aadd7368382b3f Mon Sep 17 00:00:00 2001
|
||||
From: Gilles Dartiguelongue <eva@gentoo.org>
|
||||
Date: Tue, 6 Apr 2010 15:22:25 +0200
|
||||
Subject: [PATCH 2/2] gentoo: use ISO types for fixed type size
|
||||
|
||||
---
|
||||
Makefile.am | 11 ++---------
|
||||
art_config.h | 5 +++++
|
||||
configure.in | 10 ----------
|
||||
3 files changed, 7 insertions(+), 19 deletions(-)
|
||||
create mode 100644 art_config.h
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index 95952da..6aa2fe3 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -2,13 +2,6 @@ check_PROGRAMS = testart testuta
|
||||
|
||||
bin_SCRIPTS = \
|
||||
libart2-config
|
||||
-
|
||||
-noinst_SCRIPTS = gen_art_config.sh
|
||||
-
|
||||
-BUILT_SOURCES = art_config.h
|
||||
-
|
||||
-art_config.h:
|
||||
- ./gen_art_config.sh > art_config.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
libart.def \
|
||||
@@ -173,5 +166,5 @@ install-data-local: install-ms-lib install-libtool-import-lib
|
||||
|
||||
uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
|
||||
|
||||
-CLEANFILES = $(BUILT_SOURCES) $(bin_SCRIPTS)
|
||||
-DISTCLEANFILES = $(BUILT_SOURCES) $(bin_SCRIPTS)
|
||||
+CLEANFILES = $(bin_SCRIPTS)
|
||||
+DISTCLEANFILES = $(bin_SCRIPTS)
|
||||
diff --git a/art_config.h b/art_config.h
|
||||
new file mode 100644
|
||||
index 0000000..5985f1f
|
||||
--- a/art_config.h
|
||||
+++ b/art_config.h
|
||||
@@ -0,0 +1,5 @@
|
||||
+#include <stdint.h>
|
||||
+
|
||||
+typedef uint8_t art_u8;
|
||||
+typedef uint16_t art_u16;
|
||||
+typedef uint32_t art_u32;
|
||||
diff --git a/configure.in b/configure.in
|
||||
index e4804f7..ddcac4f 100644
|
||||
--- a/configure.in
|
||||
+++ b/configure.in
|
||||
@@ -92,15 +92,6 @@ AC_FUNC_ALLOCA
|
||||
|
||||
AC_C_BIGENDIAN
|
||||
|
||||
-AC_CHECK_SIZEOF(char)
|
||||
-AC_SUBST(ART_SIZEOF_CHAR, $ac_cv_sizeof_char)
|
||||
-AC_CHECK_SIZEOF(short)
|
||||
-AC_SUBST(ART_SIZEOF_SHORT, $ac_cv_sizeof_short)
|
||||
-AC_CHECK_SIZEOF(int)
|
||||
-AC_SUBST(ART_SIZEOF_INT, $ac_cv_sizeof_int)
|
||||
-AC_CHECK_SIZEOF(long)
|
||||
-AC_SUBST(ART_SIZEOF_LONG, $ac_cv_sizeof_long)
|
||||
-
|
||||
AC_CONFIG_FILES([
|
||||
libart-features.h
|
||||
Makefile
|
||||
@@ -109,6 +100,5 @@ libart-2.0-uninstalled.pc
|
||||
libart-zip])
|
||||
|
||||
AC_CONFIG_FILES([libart-config],[chmod +x libart-config])
|
||||
-AC_CONFIG_FILES([gen_art_config.sh],[chmod +x gen_art_config.sh])
|
||||
|
||||
AC_OUTPUT
|
||||
--
|
||||
1.7.0.4
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
From f3afed3b06c34c588a7c67cb83064e16255f54b4 Mon Sep 17 00:00:00 2001
|
||||
From: Gilles Dartiguelongue <eva@gentoo.org>
|
||||
Date: Tue, 6 Apr 2010 15:11:46 +0200
|
||||
Subject: [PATCH 1/2] gentoo: do not build tests if not required
|
||||
|
||||
---
|
||||
Makefile.am | 2 +-
|
||||
1 files changed, 1 insertions(+), 1 deletions(-)
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index aec6c5d..95952da 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -1,4 +1,4 @@
|
||||
-noinst_PROGRAMS = testart testuta
|
||||
+check_PROGRAMS = testart testuta
|
||||
|
||||
bin_SCRIPTS = \
|
||||
libart2-config
|
||||
--
|
||||
1.7.0.4
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
diff -Nur libart_lgpl-2.3.21-old/art_config.h libart_lgpl-2.3.21/art_config.h
|
||||
--- libart_lgpl-2.3.21-old/art_config.h 2010-08-29 16:42:06.822999763 +0300
|
||||
+++ libart_lgpl-2.3.21/art_config.h 1970-01-01 02:00:00.000000000 +0200
|
||||
@@ -1,10 +0,0 @@
|
||||
-/* Automatically generated by gen_art_config */
|
||||
-
|
||||
-#define ART_SIZEOF_CHAR 1
|
||||
-#define ART_SIZEOF_SHORT 2
|
||||
-#define ART_SIZEOF_INT 4
|
||||
-#define ART_SIZEOF_LONG 4
|
||||
-
|
||||
-typedef unsigned char art_u8;
|
||||
-typedef unsigned short art_u16;
|
||||
-typedef unsigned int art_u32;
|
||||
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libart_lgpl</Name>
|
||||
<Homepage>http://www.levien.com/libart</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A LGPL version of libart</Summary>
|
||||
<Description>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.</Description>
|
||||
<Archive sha1sum="dbac185c65696381ef188de1f98b348b530e22f9" type="tarbz2">http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-2.3.21.tar.bz2</Archive>
|
||||
<Patches>
|
||||
<Patch level="1">noartconfig.patch</Patch>
|
||||
<Patch level="1">libart_lgpl-2.3.21-crosscompile.patch</Patch>
|
||||
<Patch level="1">libart_lgpl-2.3.21-no-test-build.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libart_lgpl</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libart_lgpl-devel</Name>
|
||||
<Summary>Development files for libart_lgpl</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libart_lgpl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-24</Date>
|
||||
<Version>2.3.21</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-29</Date>
|
||||
<Version>2.3.21</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-12</Date>
|
||||
<Version>2.3.21</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libart_lgpl</Name>
|
||||
<Summary xml:lang="tr">libart'ın bir LGPL sürümü</Summary>
|
||||
<Description xml:lang="tr">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.</Description>
|
||||
<Description xml:lang="fr">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.</Description>
|
||||
<Description xml:lang="es"> 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.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libart_lgpl-devel</Name>
|
||||
<Summary xml:lang="tr">libart_lgpl için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DWITH_ASF=On -DWITH_MP4=On")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS","COPYING*")
|
||||
@@ -0,0 +1,31 @@
|
||||
diff -ruN taglib-1.4.org/taglib/toolkit/tstring.cpp taglib-1.4/taglib/toolkit/tstring.cpp
|
||||
--- taglib-1.4.org/taglib/toolkit/tstring.cpp 2005-07-26 06:31:15.000000000 +0900
|
||||
+++ taglib-1.4/taglib/toolkit/tstring.cpp 2006-05-26 12:02:55.000000000 +0900
|
||||
@@ -202,12 +202,22 @@
|
||||
s.resize(d->data.size());
|
||||
|
||||
if(!unicode) {
|
||||
- std::string::iterator targetIt = s.begin();
|
||||
- for(wstring::const_iterator it = d->data.begin(); it != d->data.end(); it++) {
|
||||
- *targetIt = char(*it);
|
||||
- ++targetIt;
|
||||
+ bool cjk = false;
|
||||
+ //pre-scan: is there any cjk unicode character? if so, convert the string into utf-8.
|
||||
+ for(unsigned int i=0; i< d->data.size(); i++){
|
||||
+ if(d->data[i] > 0xff){
|
||||
+ cjk = true;
|
||||
+ break;
|
||||
+ }
|
||||
+ }
|
||||
+ if(!cjk){
|
||||
+ std::string::iterator targetIt = s.begin();
|
||||
+ for(wstring::const_iterator it = d->data.begin(); it != d->data.end(); it++) {
|
||||
+ *targetIt = char(*it);
|
||||
+ ++targetIt;
|
||||
+ }
|
||||
+ return s;
|
||||
}
|
||||
- return s;
|
||||
}
|
||||
|
||||
const int outputBufferSize = d->data.size() * 3 + 1;
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>taglib</Name>
|
||||
<Homepage>http://developer.kde.org/~wheeler/taglib.html</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A library for reading and editing audio meta data</Summary>
|
||||
<Description>TagLib is a library for reading and editing the meta data of several popular audio formats.</Description>
|
||||
<Archive sha1sum="4fa426c453297e62c1d1eff64a46e76ed8bebb45" type="targz">http://taglib.github.io/releases/taglib-1.9.1.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>taglib</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>taglib-devel</Name>
|
||||
<Summary>Development files for taglib</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">taglib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-25</Date>
|
||||
<Version>1.9.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-11-24</Date>
|
||||
<Version>1.9.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-22</Date>
|
||||
<Version>1.8</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>taglib</Name>
|
||||
<Summary xml:lang="tr">Ses dosyalarının etiket bilgilerini okuma ve düzenleme kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">TagLib ses dosyalarının etiket bilgilerini okumak ve işlemek için kullanılan bir kütüphanedir.</Description>
|
||||
<Description xml:lang="fr">TagLib est une librairie pour lire et éditer les méta-données de nombreux formats audio populaires.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>taglib-devel</Name>
|
||||
<Summary xml:lang="tr">taglib için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,45 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import perlmodules
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def setup():
|
||||
shelltools.export("AUTOPOINT", "/bin/true")
|
||||
# autotools.autoreconf("-vfi")
|
||||
autotools.configure("--disable-silent-rules \
|
||||
--disable-static \
|
||||
--disable-rpath \
|
||||
--enable-perl \
|
||||
--enable-ruby \
|
||||
--enable-lua \
|
||||
--enable-tcl \
|
||||
--enable-python \
|
||||
--with-rrd-default-font=/usr/share/fonts/dejavu/DejaVuSansMono.ttf \
|
||||
--with-perl-options='installdirs=vendor destdir=%(DESTDIR)s' \
|
||||
--with-ruby-options='sitedir=%(DESTDIR)s/usr/lib/ruby' \
|
||||
" % {"DESTDIR": get.installDIR()})
|
||||
|
||||
pisitools.dosed("Makefile", "^RRDDOCDIR.*$", "RRDDOCDIR=${datadir}/doc/${PACKAGE}")
|
||||
pisitools.dosed("doc/Makefile", "^RRDDOCDIR.*$", "RRDDOCDIR=${datadir}/doc/${PACKAGE}")
|
||||
pisitools.dosed("bindings/Makefile", "^RRDDOCDIR.*$", "RRDDOCDIR=${datadir}/doc/${PACKAGE}")
|
||||
pisitools.dosed("examples/Makefile", "examplesdir = .*$", "examplesdir = $(datadir)/doc/${PACKAGE}/examples")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s includedir=/usr/include" % get.installDIR())
|
||||
|
||||
# remove unnecessary files
|
||||
perlmodules.removePacklist()
|
||||
perlmodules.removePodfiles()
|
||||
@@ -0,0 +1,22 @@
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -148,7 +148,7 @@
|
||||
AC_PROG_CPP
|
||||
AC_PROG_CC
|
||||
AM_PROG_CC_C_O
|
||||
-AC_PROG_LIBTOOL
|
||||
+LT_INIT
|
||||
|
||||
dnl Try to detect/use GNU features
|
||||
CFLAGS="$CFLAGS -D_GNU_SOURCE"
|
||||
@@ -204,9 +204,6 @@
|
||||
AC_CHECK_FUNC(acos, , AC_CHECK_LIB(m, acos))
|
||||
|
||||
|
||||
-dnl add pic flag in any case this makes sure all our code is relocatable
|
||||
-eval `./libtool --config | grep pic_flag=`
|
||||
-CFLAGS="$CFLAGS $pic_flag"
|
||||
|
||||
|
||||
dnl Checks for library functions.
|
||||
@@ -0,0 +1,27 @@
|
||||
Install dir:
|
||||
/usr/$(get_libdir)/rrdtool/ifOctets.tcl
|
||||
/usr/$(get_libdir)/rrdtool/pkgIndex.tcl
|
||||
|
||||
Due to the following change, pkglib_{DATA,SCRIPTS} is invalid:
|
||||
http://git.savannah.gnu.org/cgit/automake.git/commit/?id=9ca632642b006ac6b0fc4ce0ae5b34023faa8cbf
|
||||
|
||||
---
|
||||
bindings/tcl/Makefile.am | 5 +++--
|
||||
1 files changed, 3 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/bindings/tcl/Makefile.am b/bindings/tcl/Makefile.am
|
||||
index c0e8b0f..b7205e7 100644
|
||||
--- a/bindings/tcl/Makefile.am
|
||||
+++ b/bindings/tcl/Makefile.am
|
||||
@@ -27,8 +27,9 @@ tclpkgdir = @TCL_PACKAGE_DIR@
|
||||
tclpkg_DATA = pkgIndex.tcl
|
||||
tclpkg_SCRIPTS = ifOctets.tcl
|
||||
else
|
||||
-pkglib_DATA = pkgIndex.tcl
|
||||
-pkglib_SCRIPTS = ifOctets.tcl
|
||||
+tclpkgdir = $(libdir)/@PACKAGE@
|
||||
+tclpkg_DATA = pkgIndex.tcl
|
||||
+tclpkg_SCRIPTS = ifOctets.tcl
|
||||
endif
|
||||
|
||||
# Automake doen't like `tclrrd$(VERSION)$(TCL_SHLIB_SUFFIX)' as
|
||||
@@ -0,0 +1,118 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>rrdtool</Name>
|
||||
<Homepage>http://oss.oetiker.ch/rrdtool/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A system to store and display time-series data</Summary>
|
||||
<Description>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).</Description>
|
||||
<Archive sha1sum="cd6397be2f9fc51af07ad868ac1f9f3c184e30df" type="targz">http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.5.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>lua-devel</Dependency>
|
||||
<Dependency>tcl-devel</Dependency>
|
||||
<Dependency>ruby-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>libart_lgpl</Dependency>
|
||||
<Dependency>dejavu-fonts</Dependency>
|
||||
<Dependency>perl</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>tcp-wrappers-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--Patch level="1">rrdtool-1.4.7-ruby-2-fix.patch</Patch-->
|
||||
<!-- <Patch level="1">0001_rrdtool-1.4.7-configure.ac.patch</Patch> -->
|
||||
<!-- <Patch level="1">rrdtool-1.4.5-automake-1.11.2.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>rrdtool</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lua</Dependency>
|
||||
<Dependency>tcl</Dependency>
|
||||
<Dependency>ruby</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libart_lgpl</Dependency>
|
||||
<Dependency>dejavu-fonts</Dependency>
|
||||
<Dependency>perl</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>tcp-wrappers</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/rrdtool</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>rrdtool-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">rrdtool</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2015-04-25</Date>
|
||||
<Version>1.5.2</Version>
|
||||
<Comment>Rebuild for ruby, ver. bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-12-20</Date>
|
||||
<Version>1.4.7</Version>
|
||||
<Comment>Rebuild for lua.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-05-28</Date>
|
||||
<Version>1.4.7</Version>
|
||||
<Comment>Rebuild, rm unused deps.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-12-01</Date>
|
||||
<Version>1.4.7</Version>
|
||||
<Comment>Rebuild for new perl.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-05-29</Date>
|
||||
<Version>1.4.7</Version>
|
||||
<Comment>Build for ruby 2.0</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-09-01</Date>
|
||||
<Version>1.4.7</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>rrdtool</Name>
|
||||
<Summary xml:lang="tr">Zaman serisi verilerini saklamak ve göstermek için bir araç</Summary>
|
||||
<Description xml:lang="tr">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.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.configure(sourceDir="..")
|
||||
|
||||
def build():
|
||||
cmaketools.make("-C build")
|
||||
cmaketools.make("-C build doc")
|
||||
|
||||
def install():
|
||||
pisitools.dodoc("README", "TODO", "LICENSE")
|
||||
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dohtml("doc/html/*")
|
||||
|
||||
pisitools.remove("/usr/bin/lit2epub")
|
||||
@@ -0,0 +1,82 @@
|
||||
diff -up ebook-tools-0.2.1/cmake/FindLibZip.cmake.libzip_pkgconfig ebook-tools-0.2.1/cmake/FindLibZip.cmake
|
||||
--- ebook-tools-0.2.1/cmake/FindLibZip.cmake.libzip_pkgconfig 2008-04-06 12:16:33.000000000 -0500
|
||||
+++ ebook-tools-0.2.1/cmake/FindLibZip.cmake 2012-07-10 14:48:32.540578446 -0500
|
||||
@@ -2,35 +2,55 @@
|
||||
# Once done this will define
|
||||
#
|
||||
# LIBZIP_FOUND - system has the zip library
|
||||
-# LIBZIP_INCLUDE_DIR - the zip include directory
|
||||
-# LIBZIP_LIBRARY - Link this to use the zip library
|
||||
+# LIBZIP_INCLUDE_DIRS - the zip include directories
|
||||
+# LIBZIP_LIBRARIES - Link this to use the zip library
|
||||
#
|
||||
# Copyright (c) 2006, Pino Toscano, <toscano.pino@tiscali.it>
|
||||
#
|
||||
# Redistribution and use is allowed according to the terms of the BSD license.
|
||||
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
||||
|
||||
-if (LIBZIP_LIBRARY AND LIBZIP_INCLUDE_DIR)
|
||||
+if (LIBZIP_LIBRARIES AND LIBZIP_INCLUDE_DIRS)
|
||||
# in cache already
|
||||
set(LIBZIP_FOUND TRUE)
|
||||
-else (LIBZIP_LIBRARY AND LIBZIP_INCLUDE_DIR)
|
||||
+else (LIBZIP_LIBRARIES AND LIBZIP_INCLUDE_DIRS)
|
||||
+
|
||||
+ # use pkg-config to get the directories and then use these values
|
||||
+ # in the FIND_PATH() and FIND_LIBRARY() calls
|
||||
+ FIND_PACKAGE(PkgConfig QUIET)
|
||||
+ PKG_CHECK_MODULES(PC_LIBZIP libzip)
|
||||
|
||||
find_path(LIBZIP_INCLUDE_DIR zip.h
|
||||
+ HINTS
|
||||
+ ${GNUWIN32_DIR}/include
|
||||
+ ${PC_LIBZIP_INCLUDEDIR}
|
||||
+ ${PC_LIBZIP_INCLUDE_DIRS}
|
||||
+ PATH_SUFFIXES libzip
|
||||
+ )
|
||||
+
|
||||
+ find_path(LIBZIP_LIB_INCLUDE_DIR zipconf.h
|
||||
+ HINTS
|
||||
${GNUWIN32_DIR}/include
|
||||
+ ${PC_LIBZIP_INCLUDEDIR}
|
||||
+ ${PC_LIBZIP_INCLUDE_DIRS}
|
||||
+ PATH_SUFFIXES libzip
|
||||
)
|
||||
+ set(LIBZIP_INCLUDE_DIRS ${LIBZIP_INCLUDE_DIR} ${LIBZIP_LIB_INCLUDE_DIR})
|
||||
|
||||
- find_library(LIBZIP_LIBRARY NAMES zip
|
||||
- PATHS
|
||||
+ find_library(LIBZIP_LIBRARIES NAMES zip
|
||||
+ HINTS
|
||||
+ ${PC_LIBZIP_LIBDIR}
|
||||
+ ${PC_LIBZIP_LIBRARY_DIRS}
|
||||
${GNUWIN32_DIR}/lib
|
||||
)
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
- FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibZip DEFAULT_MSG LIBZIP_LIBRARY LIBZIP_INCLUDE_DIR)
|
||||
+ FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibZip DEFAULT_MSG LIBZIP_LIBRARIES LIBZIP_INCLUDE_DIRS)
|
||||
|
||||
# ensure that they are cached
|
||||
- set(LIBZIP_INCLUDE_DIR ${LIBZIP_INCLUDE_DIR} CACHE INTERNAL "The libzip include path")
|
||||
- set(LIBZIP_LIBRARY ${LIBZIP_LIBRARY} CACHE INTERNAL "The libraries needed to use libzip")
|
||||
+ set(LIBZIP_INCLUDE_DIRS ${LIBZIP_INCLUDE_DIRS} CACHE INTERNAL "The libzip include paths")
|
||||
+ set(LIBZIP_LIBRARIES ${LIBZIP_LIBRARIES} CACHE INTERNAL "The libraries needed to use libzip")
|
||||
|
||||
-endif (LIBZIP_LIBRARY AND LIBZIP_INCLUDE_DIR)
|
||||
+endif (LIBZIP_LIBRARIES AND LIBZIP_INCLUDE_DIRS)
|
||||
|
||||
-mark_as_advanced(LIBZIP_INCLUDE_DIR LIBZIP_LIBRARY)
|
||||
+mark_as_advanced(LIBZIP_INCLUDE_DIRS LIBZIP_LIBRARIES)
|
||||
diff -up ebook-tools-0.2.1/src/libepub/CMakeLists.txt.libzip_pkgconfig ebook-tools-0.2.1/src/libepub/CMakeLists.txt
|
||||
--- ebook-tools-0.2.1/src/libepub/CMakeLists.txt.libzip_pkgconfig 2012-07-10 14:32:58.356257360 -0500
|
||||
+++ ebook-tools-0.2.1/src/libepub/CMakeLists.txt 2012-07-10 14:32:58.359257323 -0500
|
||||
@@ -1,6 +1,6 @@
|
||||
-include_directories (${EBOOK-TOOLS_SOURCE_DIR}/src/libepub ${LIBXML2_INCLUDE_DIR} ${LIBZIP_INCLUDE_DIR})
|
||||
+include_directories (${EBOOK-TOOLS_SOURCE_DIR}/src/libepub ${LIBXML2_INCLUDE_DIR} ${LIBZIP_INCLUDE_DIRS})
|
||||
add_library (epub SHARED epub.c ocf.c opf.c linklist.c list.c)
|
||||
-target_link_libraries (epub ${LIBZIP_LIBRARY} ${LIBXML2_LIBRARIES})
|
||||
+target_link_libraries (epub ${LIBZIP_LIBRARIES} ${LIBXML2_LIBRARIES})
|
||||
|
||||
set_target_properties (epub PROPERTIES VERSION 0.2.1 SOVERSION 0)
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ebook-tools</Name>
|
||||
<Homepage>http://sourceforge.net/projects/ebook-tools/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A tool for accessing and converting various ebook file formats</Summary>
|
||||
<Description>ebook-tools is a programming library for accessing and converting various ebook file formats. It also contains a console application.</Description>
|
||||
<Archive sha1sum="1f10bef62c9125cf804366134e486a58308f07ff" type="targz">mirrors://sourceforge/project/ebook-tools/ebook-tools/0.2.2/ebook-tools-0.2.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libzip-devel</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">ebook-tools-0.2.1-libzip_pkgconfig.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ebook-tools</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libzip</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ebook-tools-devel</Name>
|
||||
<Summary>Development files for ebook-tools</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">ebook-tools</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ebook-tools-docs</Name>
|
||||
<Summary>Documentation for ebook-tools</Summary>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/ebook-tools/html</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2014-01-22</Date>
|
||||
<Version>0.2.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-13</Date>
|
||||
<Version>0.1.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ebook-tools</Name>
|
||||
<Summary xml:lang="tr">Çeşitli e-kitap dosya biçimlerine erişmek için bir araç</Summary>
|
||||
<Description xml:lang="tr">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.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ebook-tools-devel</Name>
|
||||
<Summary xml:lang="tr">ebook-tools için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ebook-tools-docs</Name>
|
||||
<Summary xml:lang="tr">ebook-tools kitaplığı için belgelendirme</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -15,18 +15,21 @@ def setup():
|
||||
--disable-poppler-qt \
|
||||
--disable-gtk-doc-html \
|
||||
--disable-zlib \
|
||||
--enable-libcurl \
|
||||
--disable-gtk-test \
|
||||
--enable-poppler-qt4 \
|
||||
--disable-poppler-qt4 \
|
||||
--enable-cairo-output \
|
||||
--enable-xpdf-headers \
|
||||
--enable-libjpeg \
|
||||
--enable-libopenjpeg"
|
||||
--disable-libopenjpeg"
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
options += " --libdir=/usr/lib32 \
|
||||
options = " --libdir=/usr/lib32 \
|
||||
--disable-libcurl \
|
||||
--disable-utils \
|
||||
--disable-gtk-test \
|
||||
--disable-poppler-cpp \
|
||||
--disable-libopenjpeg \
|
||||
--disable-poppler-qt4"
|
||||
|
||||
autotools.configure(options)
|
||||
|
||||
@@ -14,16 +14,15 @@
|
||||
<Description>poppler is a PDF rendering library based on xpdf.</Description>
|
||||
<Archive sha1sum="d0b5545f0e5f0104eb141d356003c0b571601d6f" type="tarxz">http://poppler.freedesktop.org/poppler-0.31.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>openjpeg-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -31,9 +30,11 @@
|
||||
<Name>poppler</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>openjpeg</Dependency>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>poppler-data</Dependency>
|
||||
@@ -58,7 +59,7 @@
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<!--<Package>
|
||||
<Name>poppler-qt</Name>
|
||||
<Summary>Qt wrapper for poppler</Summary>
|
||||
<RuntimeDependencies>
|
||||
@@ -80,7 +81,7 @@
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/pkgconfig/poppler-qt4.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
</Package>-->
|
||||
|
||||
<Package>
|
||||
<Name>poppler-cpp</Name>
|
||||
@@ -110,6 +111,8 @@
|
||||
<Summary>Glib wrapper for poppler</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency release="current">poppler</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -159,7 +162,6 @@
|
||||
<Dependency>lcms2-32bit</Dependency>
|
||||
<Dependency>libjpeg-turbo-32bit</Dependency>
|
||||
<Dependency>libpng-32bit</Dependency>
|
||||
<Dependency>openjpeg-32bit</Dependency>
|
||||
<Dependency>tiff-32bit</Dependency>
|
||||
<Dependency>freetype-32bit</Dependency>
|
||||
<Dependency>fontconfig-32bit</Dependency>
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure()
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,15 @@
|
||||
Index: libdbusmenu-qt-0.3.2/CMakeLists.txt
|
||||
===================================================================
|
||||
--- libdbusmenu-qt-0.3.2.orig/CMakeLists.txt
|
||||
+++ libdbusmenu-qt-0.3.2/CMakeLists.txt
|
||||
@@ -44,6 +44,10 @@ include_directories(
|
||||
${QT_QTGUI_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
+link_directories(
|
||||
+ ${QT_LIBRARY_DIR}
|
||||
+ )
|
||||
+
|
||||
configure_file(dbusmenu-qt.pc.in ${CMAKE_BINARY_DIR}/dbusmenu-qt.pc @ONLY)
|
||||
|
||||
install(FILES ${CMAKE_BINARY_DIR}/dbusmenu-qt.pc
|
||||
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libdbusmenu-qt</Name>
|
||||
<Homepage>https://launchpad.net/libdbusmenu-qt</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Qt implementation of the DBusMenu spec</Summary>
|
||||
<Description>libdbusmenu-qt library provides a Qt implementation of the DBusMenu spec.</Description>
|
||||
<Archive sha1sum="308cc53a4a1f2db40f8ffbcfc71e987a4839ec45" type="tarbz2">https://launchpad.net/libdbusmenu-qt/trunk/0.9.2/+download/libdbusmenu-qt-0.9.2.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<!-- required to build test application -->
|
||||
<Dependency>libqjson-devel</Dependency>
|
||||
<Dependency>qt-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">add-qt-library-dir.diff</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-qt</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-qt-devel</Name>
|
||||
<Summary>Development files for libdbusmenu-qt</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libdbusmenu-qt</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-05-25</Date>
|
||||
<Version>0.9.2</Version>
|
||||
<Comment>rebuild</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-08</Date>
|
||||
<Version>0.9.2</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-29</Date>
|
||||
<Version>0.9.2</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-29</Date>
|
||||
<Version>0.9.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libdbusmenu-qt</Name>
|
||||
<Summary xml:lang="tr">DBusMenu spesifikasyonunun Qt gerçeklemesi</Summary>
|
||||
<Description xml:lang="tr">libdbusmenu-qt kitaplığı DBusMenu spesifikasyonunun Qt gerçeklemesini sağlar.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-qt-devel</Name>
|
||||
<Summary xml:lang="tr">libdbusmenu-qt için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,67 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
import os
|
||||
|
||||
shelltools.export("HAVE_VALGRIND_FALSE", "yes")
|
||||
|
||||
def setup():
|
||||
for (path, dirs, files) in os.walk(get.workDIR()):
|
||||
for file in files:
|
||||
if file.endswith(".c"):
|
||||
with open("%s/%s" % (path, file)) as f:
|
||||
lines = f.readlines()
|
||||
new_file = ""
|
||||
for line in lines:
|
||||
if not line.find("g_type_init()") == -1:
|
||||
new_file = new_file + "#if !GLIB_CHECK_VERSION(2,35,0)\n" + line + "#endif\n"
|
||||
else:
|
||||
new_file = new_file + line
|
||||
open("%s/%s" % (path, file), "w").write(new_file)
|
||||
|
||||
options = "--disable-static \
|
||||
--disable-silent-rules \
|
||||
--disable-scrollkeeper \
|
||||
--disable-dumper \
|
||||
--disable-tests \
|
||||
--enable-introspection=yes"
|
||||
|
||||
shelltools.makedirs("../gtk2-rebuild")
|
||||
shelltools.system("cp -R * ../gtk2-rebuild &>/dev/null")
|
||||
|
||||
autotools.autoreconf("-fvi")
|
||||
autotools.configure("%s --with-gtk=3" % options)
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
shelltools.cd("../gtk2-rebuild")
|
||||
autotools.autoreconf("-fvi")
|
||||
autotools.configure("%s --with-gtk=2" % options)
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
shelltools.cd("../gtk2-rebuild")
|
||||
autotools.make()
|
||||
|
||||
"""
|
||||
#Requires dbus-test-runner (https://launchpad.net/dbus-test-runner)
|
||||
|
||||
def check():
|
||||
autotools.make("check")
|
||||
"""
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING*", "README", "NEWS")
|
||||
|
||||
shelltools.cd("../gtk2-rebuild")
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.removeDir("/usr/share/gtk-doc")
|
||||
@@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libdbusmenu</Name>
|
||||
<Homepage>https://launchpad.net/dbusmenu</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv3</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Library for applications to pass a menu scructure accross DBus</Summary>
|
||||
<Description>libdbusmenu is a small little library that was created by pulling out some common code out of indicator-applet. It passes a menu structure across DBus so that a program can create a menu simply without worrying about how it is displayed on the other side of the bus.</Description>
|
||||
<Archive sha1sum="067b77564f90633aa58494e54b99d733a21f3142" type="targz">https://launchpad.net/dbusmenu/12.10/12.10.2/+download/libdbusmenu-12.10.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>gnome-doc-utils</Dependency>
|
||||
<Dependency>json-glib-devel</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-glib</Name>
|
||||
<Summary>GLIB bindings for libdbusmenu</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libdbusmenu-common</Dependency>
|
||||
<Dependency>json-glib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libdbusmenu-glib*</Path>
|
||||
<Path fileType="library">/usr/lib/libdbusmenu-json*</Path>
|
||||
<Path fileType="data">/usr/share/libdbusmenu</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-common</Name>
|
||||
<Summary>Common files for libdbusmenu libraries</Summary>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="library">/usr/share/vala/vapi/Dbusmenu-*.vapi</Path>
|
||||
<Path fileType="library">/usr/share/gir-1.0/Dbusmenu-*.gir</Path>
|
||||
<Path fileType="library">/usr/lib/girepository-1.0/Dbusmenu-*.typelib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-gtk</Name>
|
||||
<Summary>GTK 2.x libraries for libdbusmenu</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libdbusmenu-glib</Dependency>
|
||||
<Dependency>libdbusmenu-common</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libdbusmenu-gtk.so*</Path>
|
||||
<Path fileType="library">/usr/share/vala/vapi/DbusmenuGtk-*.vapi</Path>
|
||||
<Path fileType="library">/usr/share/gir-1.0/DbusmenuGtk-*.gir</Path>
|
||||
<Path fileType="library">/usr/lib/girepository-1.0/DbusmenuGtk-*.typelib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-gtk3</Name>
|
||||
<Summary>GTK 3.x libraries for libdbusmenu</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libdbusmenu-glib</Dependency>
|
||||
<Dependency>libdbusmenu-common</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libdbusmenu-gtk3.so*</Path>
|
||||
<Path fileType="library">/usr/share/vala/vapi/DbusmenuGtk3-*.vapi</Path>
|
||||
<Path fileType="library">/usr/share/gir-1.0/DbusmenuGtk3-*.gir</Path>
|
||||
<Path fileType="library">/usr/lib/girepository-1.0/DbusmenuGtk3-*.typelib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-tools</Name>
|
||||
<Summary>Some examples for testing libdbusmenu</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libdbusmenu-glib</Dependency>
|
||||
<Dependency>libdbusmenu-common</Dependency>
|
||||
<Dependency>json-glib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/libexec</Path>
|
||||
<Path fileType="doc">/usr/share/doc/libdbusmenu/*dbusmenu-bench*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-devel</Name>
|
||||
<Summary>Development files for libdbusmenu</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libdbusmenu-glib</Dependency>
|
||||
<Dependency release="current">libdbusmenu-gtk</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-05-25</Date>
|
||||
<Version>12.10.2</Version>
|
||||
<Comment>rebuild</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-10-19</Date>
|
||||
<Version>12.10.2</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-28</Date>
|
||||
<Version>12.10.2</Version>
|
||||
<Comment>Dep Fixed</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-12-13</Date>
|
||||
<Version>12.10.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libdbusmenu</Name>
|
||||
<Summary xml:lang="tr">Uygulamaların DBus üzerinden menü yapılarını gönderebilmelerini sağlayan bir kitaplık</Summary>
|
||||
<Description xml:lang="tr">libdbusmenu, indicator-applet uygulamasında kullanılan bazı genel kodların ayrı bir kitaplık haline getirilmesiyle oluşturulmuş bir kitaplıktır. Bu kitaplık ile uygulamaların menü yapısı DBus ile başka uygulamalara iletilebilir, bu sayede uygulamalar karşı tarafta menünün nasıl gösterileceğini dikkate almadan menüler oluşturabilirler.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-glib</Name>
|
||||
<Summary xml:lang="tr">libdbusmenu için GLIB bağlayıcıları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-gtk</Name>
|
||||
<Summary xml:lang="tr">libdbusmenu için GTK 2.x kitaplıkları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-gtk3</Name>
|
||||
<Summary xml:lang="tr">libdbusmenu için GTK 3.x kitaplıkları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-tools</Name>
|
||||
<Summary xml:lang="tr">libdbusmenu testleri için çeşitli örnekler</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-common</Name>
|
||||
<Summary xml:lang="tr">libdbusmenu kitaplıkları için ortak dosyalar</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdbusmenu-devel</Name>
|
||||
<Summary xml:lang="tr">libdbusmenu için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dodoc("ChangeLog", "COPYING", "TODO*", "NEWS", "README")
|
||||
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cln</Name>
|
||||
<Homepage>http://www.ginac.de/CLN/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A class library (C++) for numbers</Summary>
|
||||
<Description>cln is a library for efficient computations with all kinds of numbers in arbitrary precision.</Description>
|
||||
<Archive sha1sum="11c56780eb83ed54f2ad1ecef7f0dc0f609c426d" type="tarbz2">http://www.ginac.de/CLN/cln-1.3.3.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gmp</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>cln</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gmp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="info">/usr/share/info</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>cln-devel</Name>
|
||||
<Summary>Development files for cln</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">cln</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-06-14</Date>
|
||||
<Version>1.3.3</Version>
|
||||
<Comment>Rebuild for gcc</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-10-30</Date>
|
||||
<Version>1.3.3</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-25</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cln</Name>
|
||||
<Summary xml:lang="tr">Sayılar için bir C++ sınıf kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">cln, her türlü hassaslıktaki sayılarla hızlı hesaplamalar yapmak için tasarlanmış bir kütüphanedir.</Description>
|
||||
<Summary xml:lang="fr">CLN, une librairie de classes (C++) pour les nombres.</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>cln-devel</Name>
|
||||
<Summary xml:lang="tr">cln için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.rename("/usr/share/doc/libqalculate-%s" % get.srcVERSION(), "libqalculate")
|
||||
@@ -0,0 +1,22 @@
|
||||
diff -Naur libqalculate-0.9.6.old/po/POTFILES.in libqalculate-0.9.6/po/POTFILES.in
|
||||
--- libqalculate-0.9.6.old/po/POTFILES.in 2005-06-01 14:13:50.000000000 -0400
|
||||
+++ libqalculate-0.9.6/po/POTFILES.in 2007-07-08 20:21:17.000000000 -0400
|
||||
@@ -1,6 +1,7 @@
|
||||
# List of source files containing translatable strings.
|
||||
[encoding: UTF-8]
|
||||
src/qalc.cc
|
||||
+src/defs2doc.cc
|
||||
libqalculate/BuiltinFunctions.cc
|
||||
libqalculate/Calculator.cc
|
||||
libqalculate/DataSet.cc
|
||||
@@ -12,3 +13,10 @@
|
||||
libqalculate/Unit.cc
|
||||
libqalculate/Variable.cc
|
||||
libqalculate/util.cc
|
||||
+data/currencies.xml.in
|
||||
+data/datasets.xml.in
|
||||
+data/elements.xml.in
|
||||
+data/functions.xml.in
|
||||
+data/planets.xml.in
|
||||
+data/units.xml.in
|
||||
+data/variables.xml.in
|
||||
@@ -0,0 +1,11 @@
|
||||
diff -Naur libqalculate-0.9.6/libqalculate/Number.cc libqalculate-0.9.6.new/libqalculate/Number.cc
|
||||
--- libqalculate-0.9.6/libqalculate/Number.cc 2007-05-18 04:03:22.000000000 -0400
|
||||
+++ libqalculate-0.9.6.new/libqalculate/Number.cc 2008-04-01 10:46:53.000000000 -0400
|
||||
@@ -15,6 +15,7 @@
|
||||
#include "Calculator.h"
|
||||
|
||||
#include <sstream>
|
||||
+#include <climits>
|
||||
#include "util.h"
|
||||
|
||||
#define REAL_PRECISION_FLOAT_RE(x) cln::cl_float(cln::realpart(x), cln::float_format(PRECISION + 1))
|
||||
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libqalculate</Name>
|
||||
<Homepage>http://qalculate.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Multi-purpose calculator library</Summary>
|
||||
<Description>libqalculate underpins the Qalculate! multi-purpose desktop calculator for GNU/Linux.</Description>
|
||||
<Archive sha1sum="c15f7f3a97995decf62cc964956fc1e374ecd78c" type="targz">mirrors://sourceforge/qalculate/libqalculate-0.9.7.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cln-devel</Dependency>
|
||||
<Dependency>gmp</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">libqalculate-0.9.6-check-fix.patch</Patch>
|
||||
<Patch level="1">libqalculate-0.9.6-gcc4.3.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libqalculate</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>cln</Dependency>
|
||||
<Dependency>gmp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share/qalculate</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libqalculate-devel</Name>
|
||||
<Summary>Development files for libqalculate</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libqalculate</Dependency>
|
||||
<Dependency>cln-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-06-14</Date>
|
||||
<Version>0.9.7</Version>
|
||||
<Comment>Rebuild for gcc</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-02-01</Date>
|
||||
<Version>0.9.7</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2011-07-14</Date>
|
||||
<Version>0.9.7</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libqalculate</Name>
|
||||
<Summary xml:lang="tr">Genel amaçlı hesap makinesi kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">libqalculate, Qalculate! hesap makinesi tarafından ihtiyaç duyulan genel amaçlı bir kütüphanedir.</Description>
|
||||
<Summary xml:lang="fr">Qalculate ! est une calculatrice de bureau multi-usage pour GNU/Linux.</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libqalculate-devel</Name>
|
||||
<Summary xml:lang="tr">libqalculate için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>x11.im</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,40 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
pisitools.dosed("configure.ac", "(SCIM_HAS_CLUTTER=)yes", "\\1no")
|
||||
autotools.autoreconf("-vfi")
|
||||
shelltools.system("intltoolize --force")
|
||||
autotools.configure("\
|
||||
--with-x \
|
||||
--disable-static \
|
||||
--enable-ld-version-script \
|
||||
--x-includes=/usr/include/X11 \
|
||||
--x-libraries=/usr/lib \
|
||||
--disable-clutter-immodule \
|
||||
")
|
||||
#--disable-panel-gtk \
|
||||
#--disable-setup-ui")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
#Remove scim-setup related stuff
|
||||
pisitools.removeDir("/usr/share/pixmaps")
|
||||
pisitools.removeDir("/usr/share/applications")
|
||||
pisitools.removeDir("/usr/share/control-center-2.0")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "README*", "TODO", "THANKS")
|
||||
@@ -0,0 +1,10 @@
|
||||
--- scim-1.4.14/src/scim_hotkey.cpp.bero 2012-06-25 10:04:12.597708463 +0200
|
||||
+++ scim-1.4.14/src/scim_hotkey.cpp 2012-06-25 10:04:30.092707639 +0200
|
||||
@@ -26,6 +26,7 @@
|
||||
#include "scim_private.h"
|
||||
#include "scim.h"
|
||||
#include "scim_stl_map.h"
|
||||
+#include <unistd.h> // for access()
|
||||
|
||||
namespace scim {
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
--- configs/global~ 2008-11-09 07:17:11.000000000 +0100
|
||||
+++ configs/global 2008-11-09 07:19:44.000000000 +0100
|
||||
@@ -1,4 +1,4 @@
|
||||
-/SupportedUnicodeLocales = en_US.UTF-8
|
||||
+/SupportedUnicodeLocales = en_US.UTF-8,zh_CN.UTF-8,zh_HK.UTF-8,zh_TW.UTF-8,jp_JP.UTF-8,ko_KR.UTF-8
|
||||
/DefaultPanelProgram = scim-panel-gtk
|
||||
/DefaultConfigModule = simple
|
||||
/DefaultSocketFrontEndAddress = local:/tmp/scim-socket-frontend
|
||||
@@ -0,0 +1,33 @@
|
||||
--- scim-1.4.2/src/scim-restart.in.1-restart 2005-09-02 12:05:35.000000000 +0900
|
||||
+++ scim-1.4.2/src/scim-restart.in 2005-08-25 22:52:29.000000000 +0900
|
||||
@@ -0,0 +1,10 @@
|
||||
+#!/bin/sh
|
||||
+
|
||||
+SOCKET_CMD="@SCIM_LIBEXECDIR@/scim-launcher -d -c `scim-config-agent -c global -g /DefaultConfigModule` -e all -f socket --no-stay"
|
||||
+XIM_CMD="@SCIM_LIBEXECDIR@/scim-launcher -d -c socket -e socket -f x11"
|
||||
+
|
||||
+OPT="-u `id -u`"
|
||||
+
|
||||
+pkill ${OPT} -f "${SOCKET_CMD}" && ${SOCKET_CMD}
|
||||
+pkill ${OPT} -f "${XIM_CMD}" && ${XIM_CMD}
|
||||
+pkill ${OPT} scim-bridge
|
||||
--- scim-1.4.2/src/Makefile.am.1-restart 2005-07-10 22:32:23.000000000 +0900
|
||||
+++ scim-1.4.2/src/Makefile.am 2005-09-02 11:42:57.000000000 +0900
|
||||
@@ -141,6 +141,7 @@
|
||||
|
||||
|
||||
bin_PROGRAMS = scim scim-config-agent
|
||||
+bin_SCRIPTS = scim-restart
|
||||
|
||||
scim_SOURCES = scim.cpp
|
||||
scim_LDADD = libscim-1.0.la
|
||||
--- scim-1.4.2/configure.ac.1-restart 2005-08-16 15:56:59.000000000 +0900
|
||||
+++ scim-1.4.2/configure.ac 2005-09-02 11:42:57.000000000 +0900
|
||||
@@ -516,6 +516,7 @@
|
||||
intl/Makefile
|
||||
po/Makefile.in
|
||||
src/Makefile
|
||||
+ src/scim-restart
|
||||
src/scim_types.h
|
||||
utils/Makefile
|
||||
data/Makefile
|
||||
@@ -0,0 +1,31 @@
|
||||
--- scim-1.4.5/src/scim_hotkey.cpp.8-hotkey~ 2005-06-18 23:19:35.000000000 +1000
|
||||
+++ scim-1.4.5/src/scim_hotkey.cpp 2007-04-17 10:15:41.000000000 +1000
|
||||
@@ -362,11 +362,26 @@
|
||||
if (config.null () || !config->valid ()) return;
|
||||
|
||||
KeyEventList keys;
|
||||
+ String lang = scim_get_locale_language (scim_get_current_locale ());
|
||||
+ String userconf = scim_get_user_data_dir () + String (SCIM_PATH_DELIM_STRING) + String ("config");
|
||||
+ bool userconf_exist = true;
|
||||
+
|
||||
+ //If this is the first time to run scim on a machine.
|
||||
+ if (access (userconf.c_str (), R_OK) !=0)
|
||||
+ userconf_exist = false;
|
||||
|
||||
// Load the least important hotkeys first.
|
||||
for (int i = SCIM_FRONTEND_HOTKEY_SHOW_FACTORY_MENU; i >= SCIM_FRONTEND_HOTKEY_TRIGGER; --i) {
|
||||
- if (scim_string_to_key_list (keys, config->read (String (__scim_frontend_hotkey_config_paths [i]), String (__scim_frontend_hotkey_defaults [i]))))
|
||||
- m_impl->m_matcher.add_hotkeys (keys, i);
|
||||
+ if (userconf_exist == false ) {
|
||||
+ String config_paths = String (__scim_frontend_hotkey_config_paths [i]) + "/" + lang;
|
||||
+ if (scim_string_to_key_list (keys, config->read (config_paths, String (__scim_frontend_hotkey_defaults [i]))))
|
||||
+ m_impl->m_matcher.add_hotkeys (keys, i);
|
||||
+ config->write (String (__scim_frontend_hotkey_config_paths [i]),
|
||||
+ config->read (config_paths, String (__scim_frontend_hotkey_defaults [i])));
|
||||
+ } else {
|
||||
+ if (scim_string_to_key_list (keys, config->read (String (__scim_frontend_hotkey_config_paths [i]), String (__scim_frontend_hotkey_defaults [i]))))
|
||||
+ m_impl->m_matcher.add_hotkeys (keys, i);
|
||||
+ }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
# This file is encoded in UTF-8 encoding.
|
||||
/DefaultIMEngineFactory/si_LK = IMEngine-M17N-si-wijesekera
|
||||
/DefaultIMEngineFactory/ta_IN = IMEngine-M17N-ta-tamil99
|
||||
# scim-python pinyin
|
||||
/DefaultIMEngineFactory/zh_CN = 29ab338a-5a27-46b8-96cd-abbe86f17132
|
||||
/DefaultIMEngineFactory/zh_SG = 05235cfc-43ce-490c-b1b1-c5a2185276ae
|
||||
# CangJie3
|
||||
/DefaultIMEngineFactory/zh_HK = 5da9d4ff-ccdd-45af-b1a5-7bd4ac0aeb5f
|
||||
# chewing
|
||||
/DefaultIMEngineFactory/zh_TW = fcff66b6-4d3e-4cf2-833c-01ef66ac6025
|
||||
/FrontEnd/OnTheSpot = true
|
||||
/FrontEnd/Socket/ConfigReadOnly = false
|
||||
/FrontEnd/Socket/MaxClients = 512
|
||||
/FrontEnd/X11/BrokenWchar = true
|
||||
/FrontEnd/X11/Dynamic = false
|
||||
/FrontEnd/X11/OnTheSpot = true
|
||||
/FrontEnd/X11/ServerName = SCIM
|
||||
/Hotkeys/FrontEnd/NextFactory =
|
||||
/Hotkeys/FrontEnd/NextFactory/zh_CN = Control+Alt+Down,Shift+Control+KeyRelease+Shift_L,Shift+Control+KeyRelease+Shift_R
|
||||
/Hotkeys/FrontEnd/NextFactory/zh_HK = Control+Alt+Down,Shift+Control+KeyRelease+Shift_L,Shift+Control+KeyRelease+Shift_R
|
||||
/Hotkeys/FrontEnd/NextFactory/zh_SG = Control+Alt+Down,Shift+Control+KeyRelease+Shift_L,Shift+Control+KeyRelease+Shift_R
|
||||
/Hotkeys/FrontEnd/NextFactory/zh_TW = Control+Alt+Down,Shift+Control+KeyRelease+Shift_L,Shift+Control+KeyRelease+Shift_R
|
||||
/Hotkeys/FrontEnd/PreviousFactory =
|
||||
/Hotkeys/FrontEnd/PreviousFactory/zh_CN = Control+Alt+Up,Shift+Control+KeyRelease+Control_L,Shift+Control+KeyRelease+Control_R
|
||||
/Hotkeys/FrontEnd/PreviousFactory/zh_HK = Control+Alt+Up,Shift+Control+KeyRelease+Control_L,Shift+Control+KeyRelease+Control_R
|
||||
/Hotkeys/FrontEnd/PreviousFactory/zh_SG = Control+Alt+Up,Shift+Control+KeyRelease+Control_L,Shift+Control+KeyRelease+Control_R
|
||||
/Hotkeys/FrontEnd/PreviousFactory/zh_TW = Control+Alt+Up,Shift+Control+KeyRelease+Control_L,Shift+Control+KeyRelease+Control_R
|
||||
/Hotkeys/FrontEnd/ShowFactoryMenu =
|
||||
# disable trigger hotkey by default, except for the locale below:
|
||||
/Hotkeys/FrontEnd/Trigger = Control+space
|
||||
/Hotkeys/FrontEnd/Trigger/ja_JP = Zenkaku_Hankaku,Alt+grave,Control+space
|
||||
/Hotkeys/FrontEnd/Trigger/ko_KR = Alt+Alt_L+KeyRelease,Shift+space,Control+space,Hangul
|
||||
/Hotkeys/FrontEnd/ValidKeyMask = Shift+Control+Alt+Meta+Super+Hyper+CapsLock
|
||||
/Panel/Gtk/Color/ActiveBackground = light sky blue
|
||||
/Panel/Gtk/Color/ActiveText = black
|
||||
/Panel/Gtk/Color/NormalBackground = #F7F3F7
|
||||
/Panel/Gtk/Color/NormalText = black
|
||||
/Panel/Gtk/Font = default
|
||||
/Panel/Gtk/DefaultSticked = false
|
||||
/Panel/Gtk/LookupTableEmbedded = true
|
||||
/Panel/Gtk/LookupTableVertical = true
|
||||
/Panel/Gtk/ShowStatusBox = false
|
||||
/Panel/Gtk/ShowTrayIcon = true
|
||||
/Panel/Gtk/ToolBar/AlwaysShow = false
|
||||
/Panel/Gtk/ToolBar/AutoSnap = true
|
||||
/Panel/Gtk/ToolBar/HideTimeout = 2
|
||||
/Panel/Gtk/ToolBar/POS_X = -1
|
||||
/Panel/Gtk/ToolBar/POS_Y = -1
|
||||
/Panel/Gtk/ToolBar/ShowHelpIcon = true
|
||||
/Panel/Gtk/ToolBar/ShowFactoryIcon = true
|
||||
/Panel/Gtk/ToolBar/ShowFactoryName = true
|
||||
/Panel/Gtk/ToolBar/ShowMenuIcon = true
|
||||
/Panel/Gtk/ToolBar/ShowSetupIcon = true
|
||||
/Panel/Gtk/ToolBar/ShowStickIcon = false
|
||||
/IMEngine/RawCode/Locales = default
|
||||
@@ -0,0 +1,9 @@
|
||||
/SupportedUnicodeLocales = en_US.UTF-8
|
||||
/DefaultPanelProgram = scim-panel-gtk
|
||||
/DefaultConfigModule = simple
|
||||
/DefaultSocketFrontEndAddress = local:/tmp/scim-socket-frontend
|
||||
/DefaultSocketIMEngineAddress = local:/tmp/scim-socket-frontend
|
||||
/DefaultSocketConfigAddress = local:/tmp/scim-socket-frontend
|
||||
/DefaultPanelSocketAddress = local:/tmp/scim-panel-socket
|
||||
/DefaultHelperManagerSocketAddress = local:/tmp/scim-helper-manager-socket
|
||||
/DefaultSocketTimeout = 5000
|
||||
@@ -0,0 +1,5 @@
|
||||
XMODIFIERS="@im=SCIM"
|
||||
export GTK_IM_MODULE="xim"
|
||||
export QT_IM_MODULE="xim"
|
||||
export XIM_PROGRAM="scim -d"
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
##start the servers
|
||||
/usr/lib/scim-1.0/scim-launcher -d -c simple -e all -f socket -v 100 -m all -o /tmp/scim.main.log --no-stay --no-socket
|
||||
/usr/lib/scim-1.0/scim-launcher -d -c socket -e all -f x11 -v 100 -m all -o /tmp/scim.x11.log
|
||||
@@ -0,0 +1,15 @@
|
||||
diff -u scim-1.4.5/extras/panel/scim_panel_gtk.cpp.12-workarea-xprop scim-1.4.5/extras/panel/scim_panel_gtk.cpp
|
||||
--- scim-1.4.5/extras/panel/scim_panel_gtk.cpp.12-workarea-xprop 2006-11-15 11:25:48.000000000 +1000
|
||||
+++ scim-1.4.5/extras/panel/scim_panel_gtk.cpp 2006-11-15 11:25:48.000000000 +1000
|
||||
@@ -3658,6 +3694,11 @@
|
||||
return 0;
|
||||
}
|
||||
|
||||
+// set Emacs cc-mode style
|
||||
+// Local variables:
|
||||
+// c-file-style: "cc-mode"
|
||||
+// End:
|
||||
+
|
||||
/*
|
||||
vi:ts=4:nowrap:expandtab
|
||||
*/
|
||||
@@ -0,0 +1,165 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>scim</Name>
|
||||
<Homepage>http://www.scim-im.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Smart Common Input Method - framework for Input Methods</Summary>
|
||||
<Description>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.</Description>
|
||||
<Archive sha1sum="73391be371dd7ef9f9af8b3a211e2bedec0cf71b" type="targz">mirrors://sourceforge/scim/scim-1.4.14.tar.gz</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile permission="0644" target="configs/config">scim-system-config</AdditionalFile>
|
||||
<AdditionalFile permission="0644" target="configs/global">scim-system-global</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">scim-1.4.14-compile.patch</Patch>
|
||||
<Patch level="0">scim-1.4.7-support-more-utf8-locales.patch</Patch>
|
||||
<Patch level="1">scim-initial-locale-hotkey-20070922.patch</Patch>
|
||||
|
||||
<!-- Fedora patches -->
|
||||
<Patch level="1">scim_panel_gtk-emacs-cc-style.patch</Patch>
|
||||
<Patch level="1">scim-add-restart.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>scim-core</Name>
|
||||
<Summary>Core of SCIM for users</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>scim-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/scim-1.0</Path>
|
||||
<Path fileType="data">/usr/share/scim</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/etc/X11/Xsession.d/91-scim.sh" permission="0644" owner="root">scim.session</AdditionalFile>
|
||||
<AdditionalFile target="/etc/env.d/03scim" permission="0644" owner="root">scim.env</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>scim-libs</Name>
|
||||
<Summary>Libraries of SCIM</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libscim-*</Path>
|
||||
<Path fileType="library">/usr/lib/scim-1.0/*/Config</Path>
|
||||
<Path fileType="library">/usr/lib/scim-1.0/*/IMEngine</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>scim-devel</Name>
|
||||
<Summary>Includes and pkgconfig for scim development</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">scim-core</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>scim-immodule-gtk2</Name>
|
||||
<Summary>IM Module for GTK2 applications</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>scim-libs</Dependency>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/gtk-2.0</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>scim-immodule-gtk3</Name>
|
||||
<Summary>IM Module for GTK3 applications</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>scim-libs</Dependency>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/gtk-3.0</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>scim-immodule-qt</Name>
|
||||
<Summary>IM Module for Qt applications</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>scim-libs</Dependency>
|
||||
<Dependency>qt</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/qt4/plugins/inputmethods/im-scim.so</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-05-16</Date>
|
||||
<Version>1.4.14</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-02-11</Date>
|
||||
<Version>1.4.14</Version>
|
||||
<Comment>Rebuild Unused</Comment>
|
||||
<Name>Varol Maksutoğlu</Name>
|
||||
<Email>waroi@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-08-25</Date>
|
||||
<Version>1.4.14</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-02</Date>
|
||||
<Version>1.4.14</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>scim</Name>
|
||||
<Summary xml:lang="tr">Smart Common Input Method - Girdi Metodları sistemi</Summary>
|
||||
<Summary xml:lang="pl">Smart Common Input Method – ogólna metoda wprowadzania</Summary>
|
||||
<Description xml:lang="tr">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</Description>
|
||||
<Description xml:lang="fr">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.</Description>
|
||||
<Description xml:lang="pl">scim to główny pakiet projektu SCIM, udostępniający podstawowe funkcje i typy danych.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>scim-immodule-gtk2</Name>
|
||||
<Summary xml:lang="tr">GTK2 uygulamaları için IM Modülü</Summary>
|
||||
<Summary xml:lang="pl">Moduł IM GTK+ 2.x oparty na SCIM</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>scim-immodule-gtk3</Name>
|
||||
<Summary xml:lang="tr">GTK3 uygulamaları için IM Modülü</Summary>
|
||||
<Summary xml:lang="pl">Moduł IM GTK+ 3.x oparty na SCIM</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>scim-immodule-qt</Name>
|
||||
<Summary xml:lang="tr">Qt uygulamaları için IM Modülü</Summary>
|
||||
<Summary xml:lang="pl">Moduł IM Qt oparty na SCIM</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user