xfce add, lumina-desktop move lumina directory

This commit is contained in:
Erkan IŞIK
2020-11-09 13:00:20 +03:00
parent 8d50b0df35
commit ae7c06a3dd
196 changed files with 266026 additions and 250034 deletions
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>desktop.xfce.base</Name>
</PISI>
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
pisitools.cflags.add("-Wno-deprecated-declarations")
autotools.configure("--enable-gio-unix --enable-gtk2 --disable-gtk-doc")
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "NEWS", "README", "THANKS")
@@ -0,0 +1,23 @@
--- a/exo/exo-icon-view.c 2020-08-01 12:59:52.213014648 +0300
+++ b/exo/exo-icon-view.c 2020-08-01 12:59:32.463747070 +0300
@@ -1768,7 +1768,9 @@
GList *lp;
/* well, this is easy */
- *minimal_width = *natural_width = priv->width;
+ if (priv->item_width < 0)
+ *minimal_width = priv->width;
+ *natural_width = priv->width;
/* handle the child widgets */
for (lp = priv->children; lp != NULL; lp = lp->next)
@@ -1790,7 +1792,8 @@
GList *lp;
/* well, this is easy */
- *natural_height = *minimal_height = priv->height;
+ *minimal_height = priv->height;
+ *natural_height = priv->height;
/* handle the child widgets */
for (lp = priv->children; lp != NULL; lp = lp->next)
+198
View File
@@ -0,0 +1,198 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>exo</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalcinsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2.1</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>app:console</IsA>
<IsA>library</IsA>
<Summary>Xfce extension library</Summary>
<Description>
exo is an extension library to Xfce, developed by os-cillation. While Xfce comes with quite a few libraries that are targeted at desktop development, exo is targeted at application development.
</Description>
<Archive sha1sum="f44111614d5906630d40d0dab442719c7c6f3566" type="tarbz2">
https://archive.xfce.org/src/xfce/exo/0.12/exo-0.12.11.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>perl-URI</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">settings_window_resize_fix.patch</Patch>
</Patches>
</Source>
<Package>
<Name>exo</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>glib2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg/xfce4</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/xfce4</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>exo-devel</Name>
<Summary>Development files for exo</Summary>
<RuntimeDependencies>
<Dependency release="current">exo</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>exo-docs</Name>
<IsA>data:doc</IsA>
<Summary>Documentation for exo library</Summary>
<RuntimeDependencies>
<Dependency release="current">exo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="15">
<Date>2020-08-01</Date>
<Version>0.12.11</Version>
<Comment>Rebuild.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="14">
<Date>2019-12-29</Date>
<Version>0.12.11</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="13">
<Date>2019-08-11</Date>
<Version>0.12.8</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="12">
<Date>2019-07-28</Date>
<Version>0.12.7</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-07-03</Date>
<Version>0.12.6</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2018-06-14</Date>
<Version>0.12.0</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="9">
<Date>2015-03-23</Date>
<Version>0.10.4</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2015-03-02</Date>
<Version>0.10.3</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-06-10</Date>
<Version>0.10.2</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-05-27</Date>
<Version>0.10.2</Version>
<Comment>Rebuild</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@gmail.com</Email>
</Update>
<Update release="5">
<Date>2014-03-07</Date>
<Version>0.10.2</Version>
<Comment>Dep Fix</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@gmail.com</Email>
</Update>
<Update release="4">
<Date>2014-01-29</Date>
<Version>0.10.2</Version>
<Comment>Rebuild Unused</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@gmail.com</Email>
</Update>
<Update release="3">
<Date>2013-10-10</Date>
<Version>0.10.2</Version>
<Comment>Rebuild, cleanup.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="2">
<Date>2013-08-18</Date>
<Version>0.10.2</Version>
<Comment>Release bump</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-27</Date>
<Version>0.10.2</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>exo</Name>
<Summary xml:lang="tr">Xfce eklenti kitaplığı</Summary>
<Description xml:lang="tr">exo, os-cillation tarafından geliştirilen Xfce eklenti kitaplığıdır. Xfce masaüstü ortamını hedefleyen az kitaplıkla gelirken, exo uygulama geliştirmeyi hedefliyor.</Description>
</Source>
<Package>
<Name>exo-devel</Name>
<Summary xml:lang="tr">exo geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>exo-docs</Name>
<Summary xml:lang="tr">exo belgeleri</Summary>
</Package>
</PISI>
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--enable-gtk2 --enable-libxfce4ui --disable-gtk-doc --disable-static")
#pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
#pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "HACKING", "NEWS", "README", "STATUS")
+169
View File
@@ -0,0 +1,169 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>garcon</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>library</IsA>
<Summary>Menu library for Xfce</Summary>
<Description>
garcon is an implementation of the freedesktop.org menu specification replacing the former Xfce menu library libxfce4menu. It is based on GLib/GIO only and aims at covering the entire specification except for legacy menus.
</Description>
<Archive sha1sum="9c7598a79b1e71ebc5f5a0003082b75b84e50dde" type="tarbz2">
https://archive.xfce.org/src/xfce/garcon/0.7/garcon-0.7.0.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>python3</Dependency>
<Dependency>intltool</Dependency>
<Dependency>python-six</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>garcon</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>glib2</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>gobject-introspection</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>garcon-devel</Name>
<Summary>garcon development files</Summary>
<RuntimeDependencies>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency release="current">garcon</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>garcon-docs</Name>
<Summary>garcon documentation files</Summary>
<RuntimeDependencies>
<Dependency release="current">garcon</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="12">
<Date>2020-08-18</Date>
<Version>0.7.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-07-28</Date>
<Version>0.6.4</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-07-02</Date>
<Version>0.6.3</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2018-06-15</Date>
<Version>0.6.1</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2015-03-02</Date>
<Version>0.4.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-06-10</Date>
<Version>0.2.1</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-05-27</Date>
<Version>0.2.1</Version>
<Comment>Rebuild</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="5">
<Date>2014-01-07</Date>
<Version>0.2.1</Version>
<Comment>Fix dep.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>0.2.1</Version>
<Comment>Rebuild, cleanup.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="3">
<Date>2013-08-22</Date>
<Version>0.2.1</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-17</Date>
<Version>0.2.0</Version>
<Comment>Dep Fixed</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-05-02</Date>
<Version>0.2.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>garcon</Name>
<Summary xml:lang="tr">Xfce menü kitaplığı</Summary>
<Description xml:lang="tr">garcon, Xfce'nin eski menü kitaplığı olan libxfce4menu'nun freedesktop.org menü standartlarına uygun hale getirilmiş, Xfce'nin yeni menü kitaplığıdır. Sadece GLib/GIO kullanılarak yazılmıştır ve eski menüler hariç tüm özellikleri kapsamayı amaçlamaktadır.</Description>
</Source>
<Package>
<Name>garcon-devel</Name>
<Summary xml:lang="tr">garcon geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>garcon-docs</Name>
<Summary xml:lang="tr">garcon belgeleri</Summary>
</Package>
</PISI>
+32
View File
@@ -0,0 +1,32 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
i = "--with-vendor-info='Pisi Linux' \
--enable-gtk2 \
--enable-vala \
--enable-introspection \
--enable-startup-notification \
--disable-static \
"
def setup():
pisitools.cflags.add("-Wno-deprecated-declarations")
autotools.configure(i)
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "THANKS")
+188
View File
@@ -0,0 +1,188 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libxfce4ui</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>library</IsA>
<Summary>Xfce gui library</Summary>
<Description>
libxfce4ui is a various GTK+ widgets for Xfce desktop environment.
</Description>
<Archive sha1sum="5f8f80879de493f0478a5108be890cb869fb89d6" type="tarbz2">
https://archive.xfce.org/xfce/4.14/src/libxfce4ui-4.14.1.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>python3</Dependency>
<Dependency>intltool</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>vala-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libxfce4ui</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>glib2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libSM</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libICE</Dependency>
<Dependency>libX11</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>startup-notification</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libxfce4ui-devel</Name>
<RuntimeDependencies>
<Dependency release="current">libxfce4ui</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="15">
<Date>2020-06-25</Date>
<Version>4.14.1</Version>
<Comment>Rebuild.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="14">
<Date>2019-08-12</Date>
<Version>4.14.1</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="13">
<Date>2019-07-28</Date>
<Version>4.13.7</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="12">
<Date>2019-07-02</Date>
<Version>4.13.6</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2018-06-14</Date>
<Version>4.12.1</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="10">
<Date>2015-03-24</Date>
<Version>4.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="9">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2014-06-10</Date>
<Version>4.10.0</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-05-24</Date>
<Version>4.10.0</Version>
<Comment>Rebuild</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-02-20</Date>
<Version>4.10.0</Version>
<Comment>Rebuild Unused</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2013-10-10</Date>
<Version>4.10.0</Version>
<Comment>Rebuild, cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>4.11.0</Version>
<Comment>Rebuild, cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-17</Date>
<Version>4.11.0</Version>
<Comment>Dep Fixed</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-03-21</Date>
<Version>4.10.0</Version>
<Comment>Dep Fixed</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-26</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Utku Berberoğlu</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libxfce4ui</Name>
<Summary xml:lang="tr">Xfce arayüz kitaplığı</Summary>
<Description xml:lang="tr">libxfce4ui, Xfce masaüstü ortamı için çeşitli GTK+ eklentileri içeren kitaplıktır.</Description>
</Source>
<Package>
<Name>libxfce4ui-devel</Name>
<Summary xml:lang="tr">libxfce4ui geliştirme dosyaları</Summary>
</Package>
</PISI>
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-static --enable-vala --enable-introspection")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "THANKS", "TODO")
+146
View File
@@ -0,0 +1,146 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libxfce4util</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>library</IsA>
<Summary>Xfce basic utility library</Summary>
<Description>
Libxfce4util is a basic utility non-GUI functions for Xfce desktop environment.
</Description>
<Archive sha1sum="8aafc9765102f104e9366f341e9eabf38bd71a16" type="tarbz2">
https://archive.xfce.org/xfce/4.14/src/libxfce4util-4.14.0.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>python3</Dependency>
<Dependency>intltool</Dependency>
<Dependency>vala-devel</Dependency>
<Dependency>xdg-user-dirs</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libxfce4util</Name>
<RuntimeDependencies>
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libxfce4util-devel</Name>
<IsA>library</IsA>
<IsA>data:doc</IsA>
<Summary>Libxfce4util development files</Summary>
<RuntimeDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency release="current">libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="12">
<Date>2020-06-25</Date>
<Version>4.14.0</Version>
<Comment>Rebuild.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-08-12</Date>
<Version>4.14.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-07-28</Date>
<Version>4.13.5</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2019-07-02</Date>
<Version>4.13.4</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2018-06-15</Date>
<Version>4.13.1</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2015-03-12</Date>
<Version>4.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-10</Date>
<Version>4.10.1</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-05-24</Date>
<Version>4.10.1</Version>
<Comment>Rebuild</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>4.10.1</Version>
<Comment>Rebuild, cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-22</Date>
<Version>4.10.1</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-17</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-05-02</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libxfce4util</Name>
<Summary xml:lang="tr">Xfce için basit yardımcı uygulama kitaplığı</Summary>
<Description xml:lang="tr">libxfce4util, grafik arayüz fonksiyonlarını içermeyen, Xfce masaüstü yöneticisi için yazılmış basit bir uygulama kitaplığıdır.</Description>
</Source>
<Package>
<Name>libxfce4util-devel</Name>
<Summary xml:lang="tr">libxfce4util geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,17 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
def setup():
shelltools.chmod("etc/xdg/additional-logout", mode = 0755)
def install():
pythonmodules.install()
pisitools.insinto("/etc/skel/.config", "./etc/skel/xfce4", "xfce4")
@@ -0,0 +1,71 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>pisilinux-default-settings-xfce</Name>
<Homepage>https://www.pisilinux.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<IsA>data</IsA>
<Summary>PisiLinux default settings for xfce</Summary>
<Description>This package contains the xfce default settings for Pisilinux.</Description>
<Archive sha1sum="ca61367fe2bbc92a90900f502d6e9d824e5d19e0" type="targz">
https://github.com/4fury/pisilinux-default-settings-xfce/archive/2.0.3.tar.gz
</Archive>
</Source>
<Package>
<Name>pisilinux-default-settings-xfce</Name>
<RuntimeDependencies>
<!--
<Dependency>pisilinux-theme-maia</Dependency>
-->
<Dependency>xfce4-settings</Dependency>
<Dependency>xfce4-session</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>xfdesktop</Dependency>
<Dependency>xfwm4</Dependency>
<Dependency>orage</Dependency>
<Dependency>mpv-player</Dependency>
<Dependency>nocsd</Dependency>
<Dependency>evince</Dependency>
<Dependency>file-roller</Dependency>
<Dependency>xfce4-notifyd</Dependency>
<Dependency>xfce4-xkb-plugin</Dependency>
<Dependency>xfce4-clipman-plugin</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/skel/.config</Path>
<Path fileType="config">/etc/env.d/80xfce_specific</Path>
<Path fileType="config">/etc/xdg/autostart/additional-logout.desktop</Path>
<Path fileType="config">/etc/xdg/xfce4/scripts/additional-logout</Path>
<Path fileType="data">/usr/share</Path>
</Files>
<Provides>
<!--
<COMAR script="package.py">System.Package</COMAR>
-->
</Provides>
</Package>
<History>
<Update release="2">
<Date>2019-12-10</Date>
<Version>2.0.3</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="1">
<Date>2016-09-08</Date>
<Version>0.2.1</Version>
<Comment>First release</Comment>
<Name>Ergün Salman</Name>
<Email>poyraz76@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>pisilinux-default-settings-xfce</Name>
<Summary xml:lang="tr">Pisilinux xfce öntanımlı ayarları</Summary>
<Description xml:lang="tr">Bu paket, PisiLinux xfce için öntanımlı ayarları içerir.</Description>
</Source>
</PISI>
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--enable-notifications --disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README")
+138
View File
@@ -0,0 +1,138 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>thunar-volman</Name>
<Homepage>https://docs.xfce.org/xfce/thunar/thunar-volman</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>library</IsA>
<Summary>A extension for the Xfce Thunar File Manager</Summary>
<Description>
thunar-volman is an extension for the Thunar File Manager, which enables automatic management of removable drives and media. For example, if thunar-volman is installed and configured properly, and you plug in your digical camera, it will automatically spawn your preferred photo application and import the new pictures from your camera.
</Description>
<Archive sha1sum="04efe6610c376d2541eac4e6615a9ffef720f872" type="tarbz2">
https://archive.xfce.org/src/xfce/thunar-volman/0.9/thunar-volman-0.9.5.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<!-- <Dependency>fuse3-devel</Dependency> -->
<Dependency>xfconf-devel</Dependency>
<Dependency>thunar-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>thunar-volman</Name>
<RuntimeDependencies>
<Dependency>exo</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>gvfs</Dependency>
<!-- <Dependency>fuse3</Dependency> -->
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libgudev</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="11">
<Date>2020-06-25</Date>
<Version>0.9.5</Version>
<Comment>Rebuild.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-08-12</Date>
<Version>0.9.5</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2019-07-28</Date>
<Version>0.9.4</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2019-07-03</Date>
<Version>0.9.3</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="7">
<Date>2018-06-14</Date>
<Version>0.9.0</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2015-03-02</Date>
<Version>0.8.1</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-06-10</Date>
<Version>0.8.0</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2014-05-27</Date>
<Version>0.8.0</Version>
<Comment>Rebuild</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="3">
<Date>2013-10-10</Date>
<Version>0.8.0</Version>
<Comment>Rebuild, cleanup</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="2">
<Date>2013-08-18</Date>
<Version>0.8.0</Version>
<Comment>Release bump</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-13</Date>
<Version>0.8.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>thunar-volman</Name>
<Summary xml:lang="tr">Xfce dosya yöneticisi Thunar için bir eklenti</Summary>
<Description xml:lang="tr">thunar-volman çıkarılabilir sürücüler ve medyanın otomatik olarak yönetimini sağlayan, Xfce dosya yöneticisi Thunar için bir eklentidir.Örneğin, Thunar-Volman doğru şekilde kurulup yapılandırıldığında, sayısal kameranızdan resim almanızı sağlayacaktır.</Description>
</Source>
</PISI>
+37
View File
@@ -0,0 +1,37 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
i = "--enable-notifications \
--enable-introspection \
--enable-gio-unix \
--enable-gudev \
--enable-exif \
--enable-pcre \
--disable-static \
--disable-gtk-doc \
"
def setup():
autotools.configure(i)
#pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
#pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.removeDir("usr/lib/systemd")
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "FAQ", "HACKING", "NEWS", "README", "THANKS")
+216
View File
@@ -0,0 +1,216 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>thunar</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Alper Tekinalp</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2.1</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>app:gui</IsA>
<Summary>Xfce file manager</Summary>
<Description>
Thunar has been designed from the ground up to be fast and easy-to-use. Its user interface is clean and intuitive, and does not include any confusing or useless options. Thunar is fast and responsive with a good start up time and directory load time. Thunar is accessible using Assistive Technologies and is fully standarts compliant.
</Description>
<Archive sha1sum="fc97c166ed78ccdeca8092516cd9edec6d1606a2" type="tarbz2">
https://archive.xfce.org/src/xfce/thunar/1.8/thunar-1.8.15.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>python3</Dependency>
<Dependency>intltool</Dependency>
<Dependency>atk-devel</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>gconf-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>garcon-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libexif-devel</Dependency>
<Dependency>libpcre-devel</Dependency>
<Dependency>libpcre2-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>thunar</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>exo</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>dbus</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>cairo</Dependency>
<Dependency>libSM</Dependency>
<Dependency>libICE</Dependency>
<Dependency>libX11</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libexif</Dependency>
<Dependency>libpcre</Dependency>
<Dependency>libgudev</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>thunar-devel</Name>
<IsA>library</IsA>
<Summary>Thunar development files</Summary>
<RuntimeDependencies>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency release="current">thunar</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>thunar-docs</Name>
<IsA>data:doc</IsA>
<Summary>Thunar reference documents</Summary>
<RuntimeDependencies>
<Dependency release="current">thunar</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="14">
<Date>2020-06-25</Date>
<Version>1.8.15</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="13">
<Date>2019-11-19</Date>
<Version>1.8.11</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="12">
<Date>2019-08-12</Date>
<Version>1.8.9</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-07-28</Date>
<Version>1.8.8</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-07-03</Date>
<Version>1.8.7</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2016-06-16</Date>
<Version>1.8.1</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2015-03-02</Date>
<Version>1.6.6</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-06-10</Date>
<Version>1.6.3</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-05-27</Date>
<Version>1.6.3</Version>
<Comment>Rebuild</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-01-18</Date>
<Version>1.6.3</Version>
<Comment>Add Turkish and f4 panel open patch</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>1.6.3</Version>
<Comment>Cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-22</Date>
<Version>1.6.3</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-18</Date>
<Version>1.6.2</Version>
<Comment>Release bump</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-27</Date>
<Version>1.6.2</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>Thunar</Name>
<Summary xml:lang="tr">Xfce dosya yöneticisi</Summary>
<Summary xml:lang="pl">Menedżer plików dla Xfce </Summary>
<Description xml:lang="tr">Thunar, baştan başa hızlı olmak ve kolay kullanım için tasarlanmıştır. Kullanıcı arayüzü temiz ve çabuk anlaşılabilir; diğer taraftan karışık ve kullanışsız hiçbir seçenek içermiyor. Thunar açılırken ve dizin çağırırken hızlıdır. Ayrıca Thunar'a yardımcı teknolojilerle de erişilebilir ve standartlara tam uyumludur.</Description>
<Description xml:lang="pl">Thunar to menedżer plików zaprojektowany jako domyślny w Xfce 4.6 oraz by był szybkim i prostym w użyciu.</Description>
</Source>
<Package>
<Name>Thunar-devel</Name>
<Summary xml:lang="tr">Thunar geliştirme dosyaları</Summary>
<Summary xml:lang="pl">Pliki nagłówkowe Thunar</Summary>
</Package>
<Package>
<Name>Thunar-docs</Name>
<Summary xml:lang="tr">Thunar referans belgeleri</Summary>
</Package>
</PISI>
+37
View File
@@ -0,0 +1,37 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("\
\
--enable-gstreamer-thumbnailer \
--enable-poppler-thumbnailer \
--enable-desktop-thumbnailer \
--enable-pixbuf-thumbnailer \
--enable-ffmpeg-thumbnailer \
--enable-cover-thumbnailer \
--enable-font-thumbnailer \
--enable-jpeg-thumbnailer \
--enable-raw-thumbnailer \
--enable-odf-thumbnailer \
--enable-xdg-cache \
\
--disable-static")
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("README", "NEWS", "COPYING", "ChangeLog", "AUTHORS")
+178
View File
@@ -0,0 +1,178 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>tumbler</Name>
<Homepage>https://docs.xfce.org/xfce/thunar/tumbler</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.base</PartOf>
<Summary>A thumbnail service</Summary>
<Description>Tumbler is a thumbnail service for the filemanager of Xfce desktop environment.</Description>
<Archive sha1sum="3222d6748c9a249ef3abe94868fabd8542f31dd4" type="tarbz2">
https://archive.xfce.org/src/xfce/tumbler/0.3/tumbler-0.3.0.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>curl-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libgsf-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>libopenraw-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>poppler-glib-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency>ffmpegthumbnailer-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>tumbler</Name>
<RuntimeDependencies>
<Dependency>curl</Dependency>
<Dependency>glib2</Dependency>
<Dependency>dbus</Dependency>
<Dependency>cairo</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libgsf</Dependency>
<Dependency>freetype</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>libopenraw</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>poppler-glib</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>gst-plugins-base</Dependency>
<Dependency>ffmpegthumbnailer</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg/tumbler/tumbler.rc</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>tumbler-devel</Name>
<Summary>Development files for tumbler</Summary>
<RuntimeDependencies>
<Dependency release="current">tumbler</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="14">
<Date>2020-08-14</Date>
<Version>0.3.0</Version>
<Comment>Ver. bump</Comment>
<Email>wascheme@tuta.io</Email>
<Name>fury</Name>
</Update>
<Update release="13">
<Date>2019-12-29</Date>
<Version>0.2.8</Version>
<Comment>Ver. bump</Comment>
<Email>wascheme@tuta.io</Email>
<Name>fury</Name>
</Update>
<Update release="12">
<Date>2019-08-12</Date>
<Version>0.2.7</Version>
<Comment>Ver. bump</Comment>
<Email>wascheme@tuta.io</Email>
<Name>fury</Name>
</Update>
<Update release="11">
<Date>2019-07-28</Date>
<Version>0.2.6</Version>
<Comment>Ver. bump</Comment>
<Email>wascheme@tuta.io</Email>
<Name>fury</Name>
</Update>
<Update release="10">
<Date>2019-07-10</Date>
<Version>0.2.5</Version>
<Comment>Ver. bump</Comment>
<Email>wascheme@tuta.io</Email>
<Name>fury</Name>
</Update>
<Update release="9">
<Date>2018-06-15</Date>
<Version>0.2.1</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2015-03-02</Date>
<Version>0.1.31</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-06-10</Date>
<Version>0.1.30</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-05-27</Date>
<Version>0.1.30</Version>
<Comment>Version bump</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="5">
<Date>2013-10-10</Date>
<Version>0.1.29</Version>
<Comment>fix dep.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="4">
<Date>2013-08-22</Date>
<Version>0.1.29</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-17</Date>
<Version>0.1.25</Version>
<Comment>Dep Fixed</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-17</Date>
<Version>0.1.25</Version>
<Comment>Dep Fixed</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-13</Date>
<Version>0.1.25</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>tumbler</Name>
<Summary xml:lang="tr">Bir önizleme servisi</Summary>
<Description xml:lang="tr">Tumbler Xfce masaüstü ortamının dosya yöneticisi için bir önizleme servisidir.</Description>
</Source>
<Package>
<Name>tumbler-devel</Name>
<Summary xml:lang="tr">tumbler için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.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 install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS")
+135
View File
@@ -0,0 +1,135 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-appfinder</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.xfce.base</PartOf>
<Summary>Xfce application finder</Summary>
<Description>Xfce4-appfinder is a useful software that permits you to find every application in the system supporting desktop entry format.</Description>
<Archive sha1sum="d0ceed5c05b6e411d1538d9727c818a52f441cf2" type="tarbz2">
https://archive.xfce.org/xfce/4.14/src/xfce4-appfinder-4.14.0.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>thunar-devel</Dependency>
<Dependency>garcon-devel</Dependency>
<Dependency>libXpm-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-appfinder</Name>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>glib2</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>garcon</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="12">
<Date>2020-06-25</Date>
<Version>4.14.0</Version>
<Comment>Rebuild.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-08-12</Date>
<Version>4.14.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-07-28</Date>
<Version>4.13.5</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2019-07-11</Date>
<Version>4.13.4</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2018-06-15</Date>
<Version>4.13.0</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-10</Date>
<Version>4.10.1</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-05-27</Date>
<Version>4.10.1</Version>
<Comment>Rebuild</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>4.10.1</Version>
<Comment>Cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-22</Date>
<Version>4.10.1</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-18</Date>
<Version>4.10.0</Version>
<Comment>Release bump</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-31</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Utku Berberoğlu</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfce4-appfinder</Name>
<Summary xml:lang="tr">Xfce uygulama bulucu</Summary>
<Summary xml:lang="pl">Wyszukiwarka aplikacji dla środowiska Xfce</Summary>
<Description xml:lang="tr">Xfce4-appfinder, kullanıcının sisteminde yüklü, masastünde doğrudan çalışabilen her uygulamayı bulmasını sağlayan, kullanışlı bir uygulama bulucudur.</Description>
<Description xml:lang="pl">Wyszukiwanie aplikacji dla środowiska graficznego Xfce4. Wyszukuje zainstalowane w systemie aplikacje.</Description>
</Source>
</PISI>
@@ -0,0 +1,20 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure()
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("README", "COPYING", "NEWS", "HACKING", "AUTHORS")
+100
View File
@@ -0,0 +1,100 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-dev-tools</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>app:console</IsA>
<Summary>Xfce developer tools</Summary>
<Description>
Xfce4-dev-tools contains common tools required by Xfce developers and people that want to build Xfce from SVN. In addition, this package contains the Xfce developer's handbook.
</Description>
<Archive sha1sum="ed962b5b28b57f3626cc11508bee257667bf7384" type="tarbz2">
https://archive.xfce.org/xfce/4.14/src/xfce4-dev-tools-4.14.0.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>glib2-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-dev-tools</Name>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="9">
<Date>2020-06-25</Date>
<Version>4.14.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2019-07-02</Date>
<Version>4.13.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="7">
<Date>2018-06-14</Date>
<Version>4.12.0</Version>
<Comment>Rebuild for Pisi Linux 2.0.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-06-10</Date>
<Version>4.10.0</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2014-05-24</Date>
<Version>4.10.0</Version>
<Comment>Rebuild</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-10-10</Date>
<Version>4.10.0</Version>
<Comment>Cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-18</Date>
<Version>4.10.0</Version>
<Comment>Release bump</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-05-02</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfce4-dev-tools</Name>
<Summary xml:lang="tr">Xfce geliştirme araçları</Summary>
<Description xml:lang="tr">Xfce4-dev-tools paketi, Xfce geliştiricileri ve SVN'den Xfce inşa edecek kullanıcılar için gerekli temel araçları içine alır. Buna ek olarak pakette Xfce geliştiricileri için el kitabı da yer almaktadır.</Description>
</Source>
</PISI>
+34
View File
@@ -0,0 +1,34 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
w = "--enable-introspection \
--enable-gio-unix \
--enable-vala \
--enable-gtk2 \
--disable-gtk-doc \
--disable-static \
"
def setup():
pisitools.cflags.add("-Wno-deprecated-declarations")
autotools.configure(w)
# pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
# pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "NEWS")
+193
View File
@@ -0,0 +1,193 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-panel</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2.1</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>library</IsA>
<IsA>app:gui</IsA>
<Summary>Xfce panel</Summary>
<Description>
The Xfce4 panel supports multiple panels, with many options for their position, appearance, transparency and behavior. There are many items available by default to full fit a panel, like application launchers with detachable menus, a graphical pager, a tasklist, a clock, a system tray, a show / hide desktop switcher, and even more. It offers an easy way to add items using a dialog, and to move items accross different panels.
</Description>
<Archive sha1sum="81dcbec0d22f95b4de554c819fdfd97e721faf55" type="tarbz2">
https://archive.xfce.org/src/xfce/xfce4-panel/4.14/xfce4-panel-4.14.4.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>python3</Dependency>
<Dependency>intltool</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>vala-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libXpm-devel</Dependency>
<Dependency>garcon-devel</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>libwnck3-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-panel</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>exo</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>dbus</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libX11</Dependency>
<Dependency>garcon</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libwnck3</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>xfce4-panel-devel</Name>
<IsA>library</IsA>
<IsA>data:doc</IsA>
<Summary>Development files for Xfce4 Panel</Summary>
<RuntimeDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency release="current">xfce4-panel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="13">
<Date>2020-06-25</Date>
<Version>4.14.4</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="12">
<Date>2019-12-10</Date>
<Version>4.14.1</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-08-12</Date>
<Version>4.14.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-07-28</Date>
<Version>4.13.7</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2019-07-02</Date>
<Version>4.13.6</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2018-06-15</Date>
<Version>4.13.3</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-10</Date>
<Version>4.10.1</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-05-27</Date>
<Version>4.10.1</Version>
<Comment>Rebuild.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>4.10.1</Version>
<Comment>Cleanup, rebuild.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-22</Date>
<Version>4.10.1</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-17</Date>
<Version>4.10.0</Version>
<Comment>Dep Fixed</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-13</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,16 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfce4-panel</Name>
<Summary xml:lang="tr">Xfce paneli</Summary>
<Summary xml:lang="pl">Panel środowiska graficznego Xfce</Summary>
<Description xml:lang="tr">Xfce4 paneli, farklı pozisyon, görünüm ve davranış gibi ayarlara sahip birden fazla paneli destekleyebilmektedir. Uygulama başlatıcı tipinde ayrılabilir menüler, grafiksel sayfalayıcı, görev çubuğu, saat, sistem çekmecesi, masaüstünü gizleme / görüntüleme ve bir panelde olabilecek birçok şeyi içinde barındırır. Ayrıca, diyalog penceresi kullanarak kolayca panel öğesi eklemeye ve panelden panele öğe taşımaya izin verir.</Description>
<Description xml:lang="pl">Jest to panel dostarczany przez projekt środowiska graficznego Xfce4. Jeśli użytkownik chce posiadać wielofunkcyjny panel, który może obsługiwać aplety i tym podobne programy, to Xfce4 Panel może być wart wypróbowania. </Description>
</Source>
<Package>
<Name>xfce4-panel-devel</Name>
<Summary xml:lang="tr">Xfce paneli geliştirme dosyaları</Summary>
<Summary xml:lang="pl">Pliki nagłówkowe dla xfce4-panel</Summary>
</Package>
</PISI>
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--enable-network-manager --enable-polkit")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO")
@@ -0,0 +1,179 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-power-manager</Name>
<Homepage>https://docs.xfce.org/xfce/xfce4-power-manager/start</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>app:gui</IsA>
<Summary>A power manager for the Xfce desktop</Summary>
<Description>
This software is a power manager for the Xfce desktop, Xfce power manager manages the power sources on the computer and the devices that can be controlled to reduce their power consumption(such as LCD brightness level, monitor sleep, CPU frequency scaling). In addition, xfce4-power-manager provides a set of freedesktop-compliant DBus interfaces to inform other applications about current power level so that they can adjust their power consumption.
</Description>
<Archive sha1sum="978d1aa66a928ea69aca6e0de160698692ed516e" type="tarbz2">
https://archive.xfce.org/src/xfce/xfce4-power-manager/1.6/xfce4-power-manager-1.6.6.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>upower-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>libglade-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>ConsoleKit-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>libXScrnSaver-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-power-manager</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>dbus</Dependency>
<Dependency>glib2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libSM</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libICE</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>upower</Dependency>
<Dependency>libXext</Dependency>
<Dependency>harfbuzz</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="14">
<Date>2020-06-25</Date>
<Version>1.6.6</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="13">
<Date>2019-08-12</Date>
<Version>1.6.5</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="12">
<Date>2019-07-28</Date>
<Version>1.6.4</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-07-02</Date>
<Version>1.6.3</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2018-05-15</Date>
<Version>1.6.1</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="9">
<Date>2015-05-19</Date>
<Version>1.4.4</Version>
<Comment>Rebuild</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2015-03-23</Date>
<Version>1.4.4</Version>
<Comment>Version bump and removed lxpanel dep.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2015-03-02</Date>
<Version>1.4.3</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-10</Date>
<Version>1.2.0</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-05-27</Date>
<Version>1.2.0</Version>
<Comment>Rebuild</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>1.2.0</Version>
<Comment>Cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-17</Date>
<Version>1.2.0</Version>
<Comment>Fix version number, update translations.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-17</Date>
<Version>1.2.0</Version>
<Comment>Dep Fixed</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-31</Date>
<Version>1.2.0</Version>
<Comment>First release</Comment>
<Name>Utku Berberoğlu</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfce4-power-manager</Name>
<Summary xml:lang="tr">Xfce masaüstü için bir güç yöneticisi</Summary>
<Summary xml:lang="pl">Menedżer zasilania dla środowiska Xfce</Summary>
<Description xml:lang="tr">Xfce güç yöneticisi, kendi güç tüketimini azaltmak için bilgisayar güç kaynakları ve kontrol edilebilir aygıtları yönetir.(LCD parlaklık seviyesi, monitör uyku, CPU frekansı ölçekleme gibi)</Description>
<Description xml:lang="pl">Ten menedżer zasilania dla środowiska Xfce4, pozwala użytkownikom laptopów tworzyć profile zasilania dla dwóch różnych trybów: "zasilanie z baterii" i "zasilanie z sieci", jednocześnie wciąż pozwalając użytkownikom zmieniać ustawienia DPMS i częstotliwość CPU.</Description>
</Source>
</PISI>
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--enable-polkit --enable-legacy-sm --disable-static")
#pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
#pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "BUGS", "NEWS", "README", "TODO")
@@ -0,0 +1,18 @@
--- a/scripts/xinitrc.in.in 2019-10-16 17:00:56.364000642 +0300
+++ b/scripts/xinitrc.in.in 2019-10-16 17:03:41.612001128 +0300
@@ -98,8 +98,13 @@
exit 1
fi
else
- # start xfce4-session normally
- exec xfce4-session
+ if [[ "$(pgrep -fu root 'autolaunch')" ]]; then
+ # start xfce4-session normally
+ exec xfce4-session
+ else
+ # hack for run session from sddm
+ exec dbus-launch --sh-syntax --exit-with-session xfce4-session
+ fi
fi
# if we got here, then exec failed
+177
View File
@@ -0,0 +1,177 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-session</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>library</IsA>
<IsA>app:console</IsA>
<Summary>Xfce session manager</Summary>
<Description>The session manager allows the user to save sessions and restore them after login. It is capable of saving several different sessions. It comes with three splash screen engines. And at last it helps you to log out, reboot, and shutdown the system.</Description>
<Archive sha1sum="2af701ae3e7e8990a2b6e58748277913fbe9011d" type="tarbz2">
https://archive.xfce.org/src/xfce/xfce4-session/4.14/xfce4-session-4.14.2.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>atk-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>gconf-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libXpm-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>polkit-devel</Dependency>
<Dependency>libwnck2-devel</Dependency>
<Dependency>libwnck3-devel</Dependency>
<Dependency>xorg-app-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- it must on low level, later... -->
<Patch level="1">xinitrc.patch</Patch>
</Patches>
</Source>
<Package>
<Name>xfce4-session</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk3</Dependency>
<!-- mount does not work if dbus -autolaunch run from sddm.
<Dependency>lxdm</Dependency>
-->
<Dependency>dbus</Dependency>
<Dependency>glib2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libSM</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libICE</Dependency>
<Dependency>polkit</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libwnck3</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="13">
<Date>2020-06-25</Date>
<Version>4.14.2</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="12">
<Date>2019-08-12</Date>
<Version>4.14.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-07-28</Date>
<Version>4.13.4</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-07-02</Date>
<Version>4.13.3</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2018-06-15</Date>
<Version>4.13.0</Version>
<Comment>Rebuild for Pisi Linux 2.0 and version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2015-03-24</Date>
<Version>4.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-10</Date>
<Version>4.10.1</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-05-27</Date>
<Version>4.10.1</Version>
<Comment>Rebuild</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>4.10.1</Version>
<Comment>Cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-22</Date>
<Version>4.10.1</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2012-12-18</Date>
<Version>4.10.0</Version>
<Comment>Release bump</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-18</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,16 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfce4-session</Name>
<Summary xml:lang="tr">Xfce oturum yöneticisi</Summary>
<Summary xml:lang="pl"> Menedżer sesji Xfce4 </Summary>
<Description xml:lang="tr">Xfce oturum yöneticisi, kullanıcıların oturumlarını kaydetmesine ve giriş yaptıktan sonra tekrar oturumu çağırmalarına izin verir. Birden fazla, farklı oturumları kaydetmede oldukça başarılıdır. Pakette üç tane örnek açılış teması var ve son olarak, sistemi kapatırken, yeniden başlatırken veya çıkarken kullanıcılara yardımcı olur.</Description>
<Description xml:lang="pl">Xfce4-session jest zgodny z "menedżerem sesji" X11 zaprojektowanym do użycia ze środowiskiem graficznym Xfce4. Podczas wylogowywania, menedżer sesji zapisuje wszystkie uruchomione aplikacje. Przy ponownym zalogowaniu, przywraca je z oknami na tych samych pozycjach.</Description>
</Source>
<Package>
<Name>xfce4-session-devel</Name>
<Summary xml:lang="tr">xfce4-session geliştirme dosyaları</Summary>
<Summary xml:lang="pl">Pliki nagłówkowe xfce4-session</Summary>
</Package>
</PISI>
@@ -0,0 +1,36 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
i = "--enable-xorg-libinput \
--enable-upower-glib \
--enable-libxklavier \
--enable-libnotify \
--enable-gio-unix \
--enable-xcursor \
--enable-colord \
--enable-xrandr \
--disable-pluggable-dialogs \
--disable-sound-settings \
--disable-static \
"
def setup():
autotools.configure(i)
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "TODO")
@@ -0,0 +1,12 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os, re
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
try:
os.system ("sed -i 's:XFCE\;::' /etc/xdg/autostart/polkit-gnome-authentication-agent-1.desktop")
except:
pass
@@ -0,0 +1,6 @@
#!/bin/bash
if [[ "$(pgrep -u $USER)" ]]; then
kill -15 $(pgrep -u $USER)
fi
@@ -0,0 +1,12 @@
[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=additional-logout
Comment=
Exec=/etc/xdg/xfce4/scripts/additional-logout
OnlyShowIn=XFCE;
RunHook=1
StartupNotify=false
Terminal=false
Hidden=false
+221
View File
@@ -0,0 +1,221 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-settings</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>app:gui</IsA>
<Summary>Xfce settings plugins</Summary>
<Description>
Xfce4-settings is a configuration manager for Xfce desktop environment.
</Description>
<Archive sha1sum="537c14ae06fb2d460fa920be6293053c8b3106eb" type="tarbz2">
https://archive.xfce.org/src/xfce/xfce4-settings/4.14/xfce4-settings-4.14.3.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>libXi-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>upower-devel</Dependency>
<Dependency>colord-devel</Dependency>
<Dependency>garcon-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libXpm-devel</Dependency>
<Dependency>libwnck3-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>libXcursor-devel</Dependency>
<Dependency>libcanberra-devel</Dependency>
<Dependency>libxklavier-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>xorg-input-libinput-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-settings</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>exo</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>dbus</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libXi</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libX11</Dependency>
<Dependency>garcon</Dependency>
<Dependency>upower</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>upower</Dependency>
<Dependency>colord</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libXcursor</Dependency>
<Dependency>libxklavier</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>network-manager-applet</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<!--
<Path fileType="config">/etc/xdg/xfce4/scripts/additional-logout</Path>
<Path fileType="data">/etc/xdg/autostart/additional-logout.desktop</Path>
-->
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<AdditionalFiles>
<!--
<AdditionalFile owner="root" permission="755" target="/etc/xdg/xfce4/scripts/additional-logout">additional-logout</AdditionalFile>
<AdditionalFile owner="root" permission="644" target="/etc/xdg/autostart/additional-logout.desktop">additional-logout.desktop</AdditionalFile>
-->
</AdditionalFiles>
<Provides>
<COMAR script="package.py">System.Package</COMAR>
</Provides>
</Package>
<History>
<Update release="17">
<Date>2020-06-25</Date>
<Version>4.14.3</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="16">
<Date>2019-12-10</Date>
<Version>4.14.1</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="15">
<Date>2019-08-12</Date>
<Version>4.14.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="14">
<Date>2019-07-28</Date>
<Version>4.13.8</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="13">
<Date>2019-07-03</Date>
<Version>4.13.7</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="12">
<Date>2018-06-16</Date>
<Version>4.13.3</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="11">
<Date>2015-07-06</Date>
<Version>4.12.0</Version>
<Comment>fixed file conflict with pisilinux-settings</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="10">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="9">
<Date>2014-05-27</Date>
<Version>4.10.1</Version>
<Comment>Rebuild</Comment>
<Name>Burak Fazıl Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2014-02-09</Date>
<Version>4.10.1</Version>
<Comment>Rebuild</Comment>
<Name>Burak Fazıl Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-01-09</Date>
<Version>4.10.1</Version>
<Comment>Add default config</Comment>
<Name>Burak Fazıl Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2013-10-10</Date>
<Version>4.10.1</Version>
<Comment>Revert back to 4.10 series.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2013-10-10</Date>
<Version>4.11.1</Version>
<Comment>Rebuild,cleanup, set icon theme faenza and sweat gtk theme.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-08-22</Date>
<Version>4.10.1</Version>
<Comment>Revert to 4.10.x</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-18</Date>
<Version>4.11.0</Version>
<Comment>Release bump</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-04-24</Date>
<Version>4.11.0</Version>
<Comment>Version bump</Comment>
<Name>Ertan Güven</Name>
<Email>ertan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-05-04</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfce4-settings</Name>
<Summary xml:lang="tr">Xfce ayar yöneticisi</Summary>
<Summary xml:lang="pl">Graficzna aplikacja do zarządzania ustawieniami Xfce</Summary>
<Description xml:lang="tr">Xfce4-settings, Xfce masaüstü yöneticisi için yazılmış ayar yöneticisidir.</Description>
<Description xml:lang="pl">Xfce4-settings jest interfejsem menedżera ustawień Xfce4. Wywodzi się z kilku różnych komponentów do konfiguracji niezależnych od aplikacji, ustawień wewnątrz xfconf.</Description>
</Source>
</PISI>
@@ -0,0 +1,23 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
pisitools.cflags.add("-Wno-deprecated-declarations")
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.removeDir("/usr/share/gnome-control-center")
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "THANKS")
+135
View File
@@ -0,0 +1,135 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-terminal</Name>
<Homepage>https://docs.xfce.org/apps/terminal/start</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>app:gui</IsA>
<Summary>Terminal Emulator for Xfce.</Summary>
<Description>
xfce4-terminal is a modern, lightweight, and low memory cost terminal emulator with tabs and multiple windows for the Xfce desktop environment. It offers full-customization for the key bindings, the aspect, the colors, and more.
</Description>
<Archive sha1sum="d8244851c2372ad3029015bfef9b12feadd41e9d" type="tarbz2">
https://archive.xfce.org/src/apps/xfce4-terminal/0.8/xfce4-terminal-0.8.9.2.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>vte-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>gnutls-devel</Dependency>
<Dependency>libXpm-devel</Dependency>
<Dependency>utempter-devel</Dependency>
<Dependency>libpcre2-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-terminal</Name>
<RuntimeDependencies>
<Dependency>vte</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="11">
<Date>2020-06-25</Date>
<Version>0.8.9.2</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-12-29</Date>
<Version>0.8.9.1</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2019-07-28</Date>
<Version>0.8.8</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2015-03-04</Date>
<Version>0.6.3</Version>
<Comment>Rebuild</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-06-10</Date>
<Version>0.6.3</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-05-27</Date>
<Version>0.6.3</Version>
<Comment>Version Bump</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="5">
<Date>2013-10-10</Date>
<Version>0.6.2</Version>
<Comment>Cleanup.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="4">
<Date>2013-08-22</Date>
<Version>0.6.2</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-17</Date>
<Version>0.6.1</Version>
<Comment>Dep Fixed</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-04-06</Date>
<Version>0.6.1</Version>
<Comment>Version bump</Comment>
<Name>Ertan Güven</Name>
<Email>ertan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2011-09-16</Date>
<Version>0.4.8</Version>
<Comment>First release</Comment>
<Name>Alper Tekinalp</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>Terminal</Name>
<Summary xml:lang="tr">Xfce için uçbirim öykünücüsü</Summary>
<Description xml:lang="tr">Terminal çağdaş, hafif ve az bellek harcayan; sekmeli ve çoklu pencereyi destekleyen, Xfce masaüstü ortamı için yazılmış bir uçbirim öykünücüsüdür. Renkler, görünüm, kısayol tuşları ve daha fazlası için kişiselleştirmeye izin verir.</Description>
</Source>
</PISI>
+33
View File
@@ -0,0 +1,33 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
i = "--enable-vala \
--enable-introspection \
--disable-static \
--disable-gtk-doc \
--disable-perl-bindings \
--disable-gsettings-backend \
"
def setup():
autotools.configure(i)
#pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
#pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "TODO")
+142
View File
@@ -0,0 +1,142 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfconf</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>library</IsA>
<Summary>Xfce multi channel setting library</Summary>
<Description>
Xfconf is a hirerchical (tree-like) configuration system for the Xfce graphical desktop environment.
</Description>
<Archive sha1sum="5d963f803edc6609b0337c688aa232c926e00fc8" type="tarbz2">
https://archive.xfce.org/src/xfce/xfconf/4.14/xfconf-4.14.3.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>python3</Dependency>
<Dependency>intltool</Dependency>
<Dependency>python-six</Dependency>
<Dependency>vala-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfconf</Name>
<RuntimeDependencies>
<Dependency>glib2</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>xfconf-devel</Name>
<IsA>library</IsA>
<IsA>data:doc</IsA>
<Summary>Xfconf development files</Summary>
<RuntimeDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency release="current">xfconf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="11">
<Date>2020-06-25</Date>
<Version>4.14.3</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-08-12</Date>
<Version>4.14.1</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2019-07-28</Date>
<Version>4.13.8</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2018-06-15</Date>
<Version>4.13.4</Version>
<Comment>Rebuild for Pisi Linux 2.0 and Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-10</Date>
<Version>4.10.0</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-05-24</Date>
<Version>4.10.0</Version>
<Comment>Rebuild.</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-12-27</Date>
<Version>4.10.0</Version>
<Comment>Rebuild.</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-10-10</Date>
<Version>4.10.0</Version>
<Comment>Cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-15</Date>
<Version>4.10.0</Version>
<Comment>Fix build.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-05-02</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+16
View File
@@ -0,0 +1,16 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfconf</Name>
<Summary xml:lang="tr">Xfce çoklu ayar kitaplığı</Summary>
<Summary xml:lang="pl">Prosty system przechowywania i odpytywania konfiguracji</Summary>
<Description xml:lang="tr">xfconf, Xfce masaüstü yöneticisi için yazılmış, ağaç tipi hiyerarşik yapılandırma sistemidir.</Description>
<Description xml:lang="pl">Xfconf jest prostym systemem przechowywania i odpytywania konfiguracji.</Description>
</Source>
<Package>
<Name>xfconf-devel</Name>
<Summary xml:lang="tr">xfconf geliştirme dosyaları</Summary>
<Summary xml:lang="pl">Pliki nagłówkowe xfconf</Summary>
</Package>
</PISI>
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-static --enable-notifications")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README", "TODO")
+175
View File
@@ -0,0 +1,175 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfdesktop</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>library</IsA>
<IsA>app:gui</IsA>
<Summary>Xfce desktop manager</Summary>
<Description>
The desktop manager sets the background image, provides a right-click menu to launch applications and can optionally show files (including application launchers) or iconified windows. It includes gradient support for background color, saturation support for background image, real multiscreen and xinerama support, and it provides a desktop menu editor.
</Description>
<Archive sha1sum="e7f9f99049a575f5057e69e140c2be2c035be156" type="tarbz2">
https://archive.xfce.org/src/xfce/xfdesktop/4.14/xfdesktop-4.14.2.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>thunar-devel</Dependency>
<Dependency>garcon-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libglade-devel</Dependency>
<Dependency>libwnck2-devel</Dependency>
<Dependency>libwnck3-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfdesktop</Name>
<RuntimeDependencies>
<Dependency>exo</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>dbus</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>cairo</Dependency>
<Dependency>thunar</Dependency>
<Dependency>garcon</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libwnck3</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="14">
<Date>2020-06-25</Date>
<Version>4.14.2</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="13">
<Date>2019-08-12</Date>
<Version>4.14.1</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="12">
<Date>2019-07-28</Date>
<Version>4.13.6</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-07-03</Date>
<Version>4.13.5</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2018-06-16</Date>
<Version>4.13.2</Version>
<Comment>Rebuild from Pisi Linux 2.0.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="9">
<Date>2015-03-23</Date>
<Version>4.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-06-10</Date>
<Version>4.10.2</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-05-27</Date>
<Version>4.10.2</Version>
<Comment>Rebuild</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2013-08-18</Date>
<Version>4.10.2</Version>
<Comment>Revert back to 4.10 series.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>4.11.0</Version>
<Comment>Cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-18</Date>
<Version>4.10.2</Version>
<Comment>Release bump</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-03-15</Date>
<Version>4.10.2</Version>
<Comment>bump</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-15</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfdesktop</Name>
<Summary xml:lang="tr">Xfce masaüstü yöneticisi</Summary>
<Summary xml:lang="pl">Tło pulpitu Xfce, ikony i menedżer menu administratora</Summary>
<Description xml:lang="tr">Xfce masaüstü yöneticisi arkaplan resmini belirler, uygulamaları başlatmak, simge durumuna küçültülmüş pencereleri veya dosya seçeneklerini göstermek için sağ tık menüsünü hazırlar. Arkaplan rengi için gradyan desteği, arkaplan resmi için doygunluk desteği, gerçek çoklu ekran ve xinerama desteği içerir. Ayrıca, masaüstü menü düzenleme aracını da bünyesinde barındırır.</Description>
<Description xml:lang="pl">xfdesktop4 ustawia obraz tła pulpitu, udostępnia menu pod prawym przyciskiem myszy do uruchamiania aplikacji oraz, opcjonalnie, może pokazywać pliki lub zminimalizowane okna.</Description>
</Source>
</PISI>
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.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 install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COMPOSITOR", "COPYING", "NEWS", "README")
+156
View File
@@ -0,0 +1,156 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfwm4</Name>
<Homepage>https://www.xfce.org/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<PartOf>desktop.xfce.base</PartOf>
<IsA>app:gui</IsA>
<Summary>Xfce window manager.</Summary>
<Description>
The Xfce4 window manager manages the placement of application windows on the screen, provides beautiful window decorations, manages workspaces or virtual desktops, and natively supports multiscreen mode.
</Description>
<Archive sha1sum="41fcece00edb134cbba0018b2fd66d34ba354eb6" type="tarbz2">
https://archive.xfce.org/src/xfce/xfwm4/4.14/xfwm4-4.14.5.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libXpm-devel</Dependency>
<Dependency>libbsd-devel</Dependency>
<Dependency>libXres-devel</Dependency>
<Dependency>libwnck3-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libXpresent-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfwm4</Name>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>glib2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libXi</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libXres</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libepoxy</Dependency>
<Dependency>libwnck3</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>libXdamage</Dependency>
<Dependency>libXpresent</Dependency>
<Dependency>libXinerama</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>startup-notification</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="12">
<Date>2020-08-13</Date>
<Version>4.14.5</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="11">
<Date>2019-08-12</Date>
<Version>4.14.0</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="10">
<Date>2019-07-28</Date>
<Version>4.13.4</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="9">
<Date>2019-07-03</Date>
<Version>4.13.3</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="8">
<Date>2018-06-16</Date>
<Version>4.13.0</Version>
<Comment>Rebuild for Pisi Linux 2.0.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-10</Date>
<Version>4.10.1</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-05-24</Date>
<Version>4.10.1</Version>
<Comment>Rebuild</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-10</Date>
<Version>4.10.1</Version>
<Comment>Cleanup.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-22</Date>
<Version>4.10.1</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-18</Date>
<Version>4.10.0</Version>
<Comment>Release bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-22</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+10
View File
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfwm4</Name>
<Summary xml:lang="tr">Xfce pencere yöneticisi</Summary>
<Summary xml:lang="pl">Menedżer okien dla projektu Xfce</Summary>
<Description xml:lang="tr">Xfce4 pencere yöneticisi, uygulama pencerelerinin ekrana yerleştirmeyi sağlar, pencerelerin güzel görünmesini sağlar, çalışma alanlarını ve sanal masaüstlerini yönetir ve doğal olarak çoklu ekran kipini destekler.</Description>
<Description xml:lang="pl"> Pakiet zawiera xfwm4, który jest menedżerem okiem do Xfce4. Jest on zaprojektowany do uruchamiania z resztą środowiska Xfce4.</Description>
</Source>
</PISI>