xfce base

This commit is contained in:
bferturk
2016-09-06 05:28:11 +03:00
parent 603a9b507a
commit ff9e7e0483
75 changed files with 17099 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--disable-debug")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "HACKING", "NEWS", "README", "THANKS", "TODO")
+63
View File
@@ -0,0 +1,63 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>Terminal</Name>
<Homepage>http://goodies.xfce.org/projects/applications/terminal</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>terminal</Icon>
<IsA>app:gui</IsA>
<Summary>Terminal for Xfce</Summary>
<Description>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="4dd4d2bef8101f563487b0230346070930ff689f" type="tarbz2">http://archive.xfce.org/src/apps/xfce4-terminal/0.6/xfce4-terminal-0.6.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>icon-theme-hicolor</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>vte-devel</Dependency>
<Dependency>intltool</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>Terminal</Name>
<RuntimeDependencies>
<Dependency>vte</Dependency>
<Dependency>atk</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>pango</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/Terminal/colorschemes</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/gnome-control-center</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-04</Date>
<Version>0.6.3</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+31
View File
@@ -0,0 +1,31 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--enable-gio-unix \
--enable-dbus \
--enable-startup-notification \
--enable-gudev \
--enable-notifications \
--enable-exif \
--enable-pcre \
--disable-debug")
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*", "FAQ", "HACKING", "NEWS", "README", "THANKS", "TODO")
@@ -0,0 +1,93 @@
--- Thunar-1.6.3.orig/thunar/thunar-window.c 2013-05-05 19:37:23.000000000 +0300
+++ Thunar-1.6.3/thunar/thunar-window.c 2014-02-03 00:01:12.216902722 +0200
@@ -64,7 +64,8 @@
#include <glib.h>
-
+#include <stdio.h>
+#include <stdlib.h>
/* Property identifiers */
enum
@@ -79,6 +80,7 @@
/* Signal identifiers */
enum
{
+ OPEN_TERMHERE,
BACK,
RELOAD,
TOGGLE_SIDEPANE,
@@ -102,6 +104,7 @@
guint prop_id,
const GValue *value,
GParamSpec *pspec);
+static gboolean thunar_window_open_term (ThunarWindow *window);
static gboolean thunar_window_back (ThunarWindow *window);
static gboolean thunar_window_reload (ThunarWindow *window);
static gboolean thunar_window_toggle_sidepane (ThunarWindow *window);
@@ -255,6 +258,7 @@
GtkWindowClass __parent__;
/* internal action signals */
+ gboolean (*open_term) (ThunarWindow *window);
gboolean (*back) (ThunarWindow *window);
gboolean (*reload) (ThunarWindow *window);
gboolean (*toggle_sidepane) (ThunarWindow *window);
@@ -395,6 +399,21 @@
G_DEFINE_TYPE_WITH_CODE (ThunarWindow, thunar_window, GTK_TYPE_WINDOW,
G_IMPLEMENT_INTERFACE (THUNAR_TYPE_BROWSER, NULL))
+static gboolean thunar_window_open_term(ThunarWindow *window) {
+
+ char *argv[6] = {
+ "exo-open",
+ "--launch",
+ "TerminalEmulator",
+ "--working-directory"
+ };
+
+ GFile *file = thunar_file_get_file (window->current_directory);
+ argv[4] = g_file_get_path(file);
+ argv[5] = NULL;
+
+ return g_spawn_async (NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL);
+}
static void
@@ -416,6 +435,8 @@
gtkwidget_class->unrealize = thunar_window_unrealize;
gtkwidget_class->configure_event = thunar_window_configure_event;
+
+ klass->open_term = thunar_window_open_term;
klass->back = thunar_window_back;
klass->reload = thunar_window_reload;
klass->toggle_sidepane = thunar_window_toggle_sidepane;
@@ -481,6 +502,17 @@
THUNAR_TYPE_ZOOM_LEVEL,
THUNAR_ZOOM_LEVEL_NORMAL,
EXO_PARAM_READWRITE));
+
+ window_signals[OPEN_TERMHERE] =
+ g_signal_new (I_("open_term"),
+ G_TYPE_FROM_CLASS (klass),
+ G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
+ G_STRUCT_OFFSET (ThunarWindowClass, open_term),
+ g_signal_accumulator_true_handled, NULL,
+ _thunar_marshal_BOOLEAN__VOID,
+ G_TYPE_BOOLEAN, 0);
+
+
/**
* ThunarWindow::back:
@@ -618,6 +650,7 @@
/* setup the key bindings for the windows */
binding_set = gtk_binding_set_by_class (klass);
+ gtk_binding_entry_add_signal (binding_set, GDK_F4, 0, "open_term", 0);
gtk_binding_entry_add_signal (binding_set, GDK_BackSpace, 0, "back", 0);
gtk_binding_entry_add_signal (binding_set, GDK_F5, 0, "reload", 0);
gtk_binding_entry_add_signal (binding_set, GDK_F9, 0, "toggle-sidepane", 0);
+872
View File
@@ -0,0 +1,872 @@
--- po/tr.po.orig 2013-05-05 19:37:23.000000000 +0300
+++ po/tr.po 2014-01-18 16:52:00.382750685 +0200
@@ -9,20 +9,21 @@
# Cem Ünal <admincemunal@gmail.com>, 2007.
# Türker SEZER <turkersezer@tsdesign.info>, 2007.
# Ayhan YALÇINSOY <ayhanyalcinsoy@gmail.com>, 2010.
+# Serdar Soytetir <tulliana@gmail.com>, 2014.
msgid ""
msgstr ""
"Project-Id-Version: tr\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-12-05 19:56+0100\n"
-"PO-Revision-Date: 2010-05-14 16:24+0300\n"
-"Last-Translator: Ayhan YALÇINSOY <ayhanyalcinsoy@gmail.com>\n"
+"PO-Revision-Date: 2014-01-18 16:52+0200\n"
+"Last-Translator: Serdar Soytetir <tulliana@gmail.com>\n"
"Language-Team: Turkish <kde-i18n-doc@kde.org>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=0;\n"
-"X-Generator: Lokalize 1.0\n"
+"X-Generator: Lokalize 1.5\n"
#: ../thunar/main.c:62
msgid "Open the bulk rename dialog"
@@ -652,7 +653,7 @@
#: ../thunar/thunar-dialogs.c:445
msgid "Copy _Anyway"
-msgstr ""
+msgstr "Yine de _Kopyala"
#: ../thunar/thunar-dialogs.c:468
msgid "_Cancel"
@@ -737,15 +738,16 @@
"The desktop file \"%s\" is in an insecure location and not marked as "
"executable. If you do not trust this program, click Cancel."
msgstr ""
+"\"%s\" desktop dosyası güvenli olmayan bir konumda ve çalıştırılabilir olarak "
+"işaretlenmiş. Eğer bu uygulamaya güvenmiyorsanız İptal'e tıklayın."
#: ../thunar/thunar-dialogs.c:777
msgid "_Launch Anyway"
-msgstr ""
+msgstr "_Yine de Çalıştır"
#: ../thunar/thunar-dialogs.c:779
-#, fuzzy
msgid "Mark _Executable"
-msgstr "Ç_alıştır"
+msgstr "Ç_alıştırılabilir Olarak İşaretle"
#: ../thunar/thunar-dnd.c:72
msgid "_Copy here"
@@ -794,7 +796,7 @@
#: ../thunar/thunar-enum-types.c:95
msgid "MIME Type"
-msgstr "MIME Türü"
+msgstr "MIME Tipi"
#: ../thunar/thunar-enum-types.c:96 ../thunar/thunar-renamer-dialog.c:420
#: ../thunarx/thunarx-renamer.c:145
@@ -845,9 +847,8 @@
#. if the .desktop file is not secure, ask user what to do
#: ../thunar/thunar-file.c:1450
-#, fuzzy
msgid "Untrusted application launcher"
-msgstr "Hiçbir uygulama seçilmedi"
+msgstr "Güvenilmeyen uygulama çalıştırıcı"
#: ../thunar/thunar-file.c:1475
#, c-format
@@ -857,7 +858,7 @@
#. if the .desktop file is not secure, ask user what to do
#: ../thunar/thunar-file.c:1484
msgid "Untrusted link launcher"
-msgstr ""
+msgstr "Güvenilmeyen bağlantı çalıştırıcı"
#: ../thunar/thunar-file.c:1500
#, c-format
@@ -872,18 +873,18 @@
#: ../thunar/thunar-gio-extensions.c:317
#, c-format
msgid "%s on %s"
-msgstr ""
+msgstr "%s , %s üzerinde"
#. free disk space string
#: ../thunar/thunar-gio-extensions.c:427
#, c-format
msgid "%s of %s (%d%% used)"
-msgstr ""
+msgstr "%s, toplam %s (%d%% kullanılıyor))"
#. extend history tooltip with function of the button
#: ../thunar/thunar-history-action.c:372
msgid "Right-click or pull down to show history"
-msgstr ""
+msgstr "Geçmişi göstermek için sağ tıklayın ya da menüyü açın"
#. create the "back" action
#: ../thunar/thunar-history.c:163
@@ -905,12 +906,12 @@
#: ../thunar/thunar-history.c:352
msgid "The item will be removed from the history"
-msgstr ""
+msgstr "Bu öge geçmişten silinecek"
#: ../thunar/thunar-history.c:355
-#, fuzzy, c-format
+#, c-format
msgid "Could not find \"%s\""
-msgstr "\"%s\" ögesi geri getirilemedi"
+msgstr "\"%s\" ögesi bulunamadı"
#: ../thunar/thunar-icon-view.c:164
msgid "Icon based directory listing"
@@ -938,7 +939,7 @@
#. tell the user that we're preparing to unlink the files
#: ../thunar/thunar-io-jobs.c:423
msgid "Preparing..."
-msgstr "Yapılıyor..."
+msgstr "Hazırlanıyor..."
#: ../thunar/thunar-io-jobs.c:496
#, c-format
@@ -1002,14 +1003,14 @@
#. Fallback copy/link name for n >= 4
#: ../thunar/thunar-io-jobs-util.c:42
-#, fuzzy, c-format
+#, c-format
msgid "%uth copy of %s"
-msgstr "%s üçüncü kopyası"
+msgstr "%s ögesinin %u. kopyası"
#: ../thunar/thunar-io-jobs-util.c:42
-#, fuzzy, c-format
+#, c-format
msgid "%uth link to %s"
-msgstr "%s konumuna üçüncü bağlantı"
+msgstr "%s ögesine %u. bağlantı"
#: ../thunar/thunar-job.c:254
#, c-format
@@ -1039,6 +1040,8 @@
"There is not enough space on the destination. Try to remove files to make "
"space."
msgstr ""
+"Hedefte yeterince boş alan yok. Alan açmak için bazı dosyaları silmeyi "
+"deneyin."
#. * CASE 1: nothing selected or atleast one directory in the selection
#. **
@@ -1055,16 +1058,14 @@
#. append the "Open in New Tab" menu action
#: ../thunar/thunar-launcher.c:177 ../thunar/thunar-launcher.c:858
#: ../thunar/thunar-tree-view.c:1117
-#, fuzzy
msgid "Open in New _Tab"
-msgstr "Yeni Pencerede Aç"
+msgstr "Yeni _Sekmede Aç"
#. append the "Open in New Window" menu action
#: ../thunar/thunar-launcher.c:178 ../thunar/thunar-launcher.c:852
#: ../thunar/thunar-tree-view.c:1124
-#, fuzzy
msgid "Open in New _Window"
-msgstr "Yeni Pencerede Aç"
+msgstr "Yeni _Pencerede Aç"
#: ../thunar/thunar-launcher.c:179 ../thunar/thunar-launcher.c:181
msgid "Open With Other _Application..."
@@ -1108,11 +1109,11 @@
#. turn "Open New Window" into "Open in n New Windows"
#: ../thunar/thunar-launcher.c:825
-#, fuzzy, c-format
+#, c-format
msgid "Open in %d New _Window"
msgid_plural "Open in %d New _Windows"
-msgstr[0] "%d adet Yeni Pencere içerisinde aç"
-msgstr[1] "%d Yeni Pencere içinde Aç"
+msgstr[0] "%d Yeni _Pencerede Aç"
+msgstr[1] "%d Yeni _Pencerede Aç"
#: ../thunar/thunar-launcher.c:826
#, c-format
@@ -1123,33 +1124,31 @@
#. turn "Open in New Tab" into "Open in x New Tabs"
#: ../thunar/thunar-launcher.c:837
-#, fuzzy, c-format
+#, c-format
msgid "Open in %d New _Tab"
msgid_plural "Open in %d New _Tabs"
-msgstr[0] "%d adet Yeni Pencere içerisinde aç"
-msgstr[1] "%d Yeni Pencere içinde Aç"
+msgstr[0] "%d Yeni Sekmede _Aç"
+msgstr[1] "%d Yeni Sekmede _Aç"
#: ../thunar/thunar-launcher.c:838
-#, fuzzy, c-format
+#, c-format
msgid "Open the selected directory in %d new tab"
msgid_plural "Open the selected directories in %d new tabs"
-msgstr[0] "Seçilen dizini %d yeni pencere içerisinde aç"
-msgstr[1] "Seçilen dizinleri %d yeni pencere içerisinde aç"
+msgstr[0] "Seçilen dizini %d yeni sekmede içerisinde aç"
+msgstr[1] "Seçilen dizini %d yeni sekmede içerisinde aç"
#: ../thunar/thunar-launcher.c:853
msgid "Open the selected directory in a new window"
msgstr "Seçilen dizini yeni pencerede aç"
#: ../thunar/thunar-launcher.c:859
-#, fuzzy
msgid "Open the selected directory in a new tab"
-msgstr "Seçilen dizini yeni pencerede aç"
+msgstr "Seçilen dizini yeni sekmede aç"
#. set tooltip that makes sence
#: ../thunar/thunar-launcher.c:863
-#, fuzzy
msgid "Open the selected directory"
-msgstr "Seçilen dosyayı aç"
+msgstr "Seçilen dizini aç"
#: ../thunar/thunar-launcher.c:884
msgid "Open the selected file"
@@ -1244,7 +1243,7 @@
msgid "%d item"
msgid_plural "%d items"
msgstr[0] "%d öge"
-msgstr[1] "%d ögeleri"
+msgstr[1] "%d öge"
#: ../thunar/thunar-list-model.c:2224
#, c-format
@@ -1274,7 +1273,7 @@
#. I18N, first %s is the display name of the file, second the content type
#: ../thunar/thunar-list-model.c:2255
-#, fuzzy, c-format
+#, c-format
msgid "\"%s\" %s"
msgstr "\"%s\" %s"
@@ -1288,11 +1287,11 @@
#. item count if there are also folders in the selection
#: ../thunar/thunar-list-model.c:2302
-#, fuzzy, c-format
+#, c-format
msgid "%d other item selected (%s)"
msgid_plural "%d other items selected (%s)"
-msgstr[0] "%d öge seçildi (%s)"
-msgstr[1] "%d ögeleri seçildi (%s)"
+msgstr[0] "%d başka öge seçildi (%s)"
+msgstr[1] "%d başka öge seçildi (%s)"
#. only non-folders are selected
#: ../thunar/thunar-list-model.c:2309
@@ -1303,11 +1302,11 @@
msgstr[1] "%d ögeleri seçildi (%s)"
#: ../thunar/thunar-list-model.c:2323
-#, fuzzy, c-format
+#, c-format
msgid "%d folder selected"
msgid_plural "%d folders selected"
-msgstr[0] "%d öge seçildi"
-msgstr[1] "%d ögeleri seçildi"
+msgstr[0] "%d dizin seçildi"
+msgstr[1] "%d dizin seçildi"
#. This is marked for translation in case a localizer
#. * needs to change ", " to something else. The comma
@@ -1316,7 +1315,7 @@
#: ../thunar/thunar-list-model.c:2342
#, c-format
msgid "%s, %s"
-msgstr ""
+msgstr "%s, %s"
#. append the "Open in New Window" menu action
#: ../thunar/thunar-location-buttons.c:169
@@ -1450,23 +1449,20 @@
msgstr "Sahibi:"
#: ../thunar/thunar-permissions-chooser.c:237
-#, fuzzy
msgid "_Access:"
-msgstr "Erişim:"
+msgstr "_Erişim:"
#: ../thunar/thunar-permissions-chooser.c:261
msgid "Gro_up:"
-msgstr ""
+msgstr "Gr_up:"
#: ../thunar/thunar-permissions-chooser.c:280
-#, fuzzy
msgid "Acce_ss:"
-msgstr "Erişim:"
+msgstr "_Erişim:"
#: ../thunar/thunar-permissions-chooser.c:304
-#, fuzzy
msgid "O_thers:"
-msgstr "Diğerleri:"
+msgstr "_Diğerleri:"
#: ../thunar/thunar-permissions-chooser.c:328
msgid "Program:"
@@ -1493,9 +1489,8 @@
"bu dizindeki dosyalarla çalışamayabilirsiniz."
#: ../thunar/thunar-permissions-chooser.c:382
-#, fuzzy
msgid "Correct _folder permissions..."
-msgstr "Doğru dizin izinleri..."
+msgstr "Dizin _izinlerini düzelt..."
#: ../thunar/thunar-permissions-chooser.c:383
msgid "Click here to automatically fix the folder permissions."
@@ -1516,7 +1511,7 @@
#: ../thunar/thunar-permissions-chooser.c:540
msgid "Apply recursively?"
-msgstr "Öz yinelemeli uygula?"
+msgstr "Öz yinelemeli uygulansın mı?"
#: ../thunar/thunar-permissions-chooser.c:546
msgid ""
@@ -1541,9 +1536,8 @@
"kullanabilirsiniz."
#: ../thunar/thunar-permissions-chooser.c:914
-#, fuzzy
msgid "Mixed file owners"
-msgstr "Bilinmeyen dosya sahibi"
+msgstr "Karışık dosya sahipleri"
#: ../thunar/thunar-permissions-chooser.c:914
msgid "Unknown file owner"
@@ -1570,16 +1564,15 @@
#: ../thunar/thunar-permissions-chooser.c:999
msgid "Varying (no change)"
-msgstr ""
+msgstr "Değişken (değişiklik yok))"
#: ../thunar/thunar-permissions-chooser.c:1131
msgid "Correct folder permissions automatically?"
msgstr "Dizin izinlerini otomatik olarak düzelt?"
#: ../thunar/thunar-permissions-chooser.c:1133
-#, fuzzy
msgid "Correct _folder permissions"
-msgstr "Dizin izinlerini düzelt"
+msgstr "Dizin _izinlerini düzelt"
#: ../thunar/thunar-permissions-chooser.c:1135
msgid ""
@@ -1627,21 +1620,20 @@
msgstr "Önceki Aktif Görünüm"
#: ../thunar/thunar-preferences-dialog.c:281
-#, fuzzy
msgid "Show thumbnails:"
-msgstr "Küçük _resimleri göster"
+msgstr "Küçük resimleri göster:"
#: ../thunar/thunar-preferences-dialog.c:287
msgid "Never"
-msgstr ""
+msgstr "Asla"
#: ../thunar/thunar-preferences-dialog.c:288
msgid "Local Files Only"
-msgstr ""
+msgstr "Sadece Yerel Dosyalar"
#: ../thunar/thunar-preferences-dialog.c:289
msgid "Always"
-msgstr ""
+msgstr "Her Zaman"
#: ../thunar/thunar-preferences-dialog.c:297
msgid "Sort _folders before files"
@@ -1697,7 +1689,7 @@
#: ../thunar/thunar-preferences-dialog.c:391
#: ../thunar/thunar-preferences-dialog.c:433
msgid "Smaller"
-msgstr "Küçük"
+msgstr "Daha Küçük"
#: ../thunar/thunar-preferences-dialog.c:392
#: ../thunar/thunar-preferences-dialog.c:434
@@ -1717,7 +1709,7 @@
#: ../thunar/thunar-preferences-dialog.c:395
#: ../thunar/thunar-preferences-dialog.c:437
msgid "Larger"
-msgstr "Büyük"
+msgstr "Daha Büyük"
#: ../thunar/thunar-preferences-dialog.c:396
#: ../thunar/thunar-preferences-dialog.c:438
@@ -1810,17 +1802,15 @@
#: ../thunar/thunar-preferences-dialog.c:557
msgid "Middle Click"
-msgstr ""
+msgstr "Orta Tıklama"
#: ../thunar/thunar-preferences-dialog.c:567
-#, fuzzy
msgid "Open folder in new _window"
-msgstr "\"%s\" ögesini yeni pencerede aç"
+msgstr "Dizini yeni _pencerede aç"
#: ../thunar/thunar-preferences-dialog.c:572
-#, fuzzy
msgid "Open folder in new _tab"
-msgstr "Dizini Thunar'la Aç"
+msgstr "Dizini yeni _sekmede aç"
#.
#. Advanced
@@ -1904,9 +1894,8 @@
msgstr "_Ad:"
#: ../thunar/thunar-properties-dialog.c:291
-#, fuzzy
msgid "Names:"
-msgstr "İsim:"
+msgstr "İsimler:"
#.
#. Second box (kind, open with, link target)
@@ -1916,18 +1905,16 @@
msgstr "Tür:"
#: ../thunar/thunar-properties-dialog.c:332
-#, fuzzy
msgid "_Open With:"
-msgstr "Birlikte Aç:"
+msgstr "_Birlikte Aç:"
#: ../thunar/thunar-properties-dialog.c:346
msgid "Link Target:"
msgstr "Bağlantı Hedefi:"
#: ../thunar/thunar-properties-dialog.c:378
-#, fuzzy
msgid "Location:"
-msgstr "_Konum:"
+msgstr "Konum:"
#.
#. Third box (deleted, modified, accessed)
@@ -1984,13 +1971,12 @@
#. update the properties dialog title
#: ../thunar/thunar-properties-dialog.c:1103
-#, fuzzy
msgid "Properties"
-msgstr "Özel_likler..."
+msgstr "Özellikler"
#: ../thunar/thunar-properties-dialog.c:1203
msgid "mixed"
-msgstr ""
+msgstr "karışık"
#: ../thunar/thunar-renamer-dialog.c:190 ../thunar/thunar-window.c:335
msgid "_File"
@@ -2050,7 +2036,7 @@
#: ../thunar/thunar-renamer-dialog.c:438
msgid "New Name"
-msgstr "Yeni Ad"
+msgstr "Yeni İsim"
#: ../thunar/thunar-renamer-dialog.c:501
msgid "Click here to view the documentation for the selected rename operation."
@@ -2163,28 +2149,27 @@
msgstr "Çöp boş"
#: ../thunar/thunar-shortcuts-model.c:604
-#, fuzzy, c-format
+#, c-format
msgid "Trash contains %d file"
msgid_plural "Trash contains %d files"
-msgstr[0] "Çöp dolu"
-msgstr[1] "Çöp dolu"
+msgstr[0] "Çöpte %d dosya var"
+msgstr[1] "Çöpte %d dosya var"
#: ../thunar/thunar-shortcuts-model.c:833
msgid "DEVICES"
-msgstr ""
+msgstr "AYGITLAR"
#: ../thunar/thunar-shortcuts-model.c:879
msgid "NETWORK"
-msgstr ""
+msgstr "AĞ"
#: ../thunar/thunar-shortcuts-model.c:885
-#, fuzzy
msgid "Browse Network"
-msgstr "Ağı tara"
+msgstr "Ağı Tara"
#: ../thunar/thunar-shortcuts-model.c:906
msgid "PLACES"
-msgstr ""
+msgstr "KONUMLAR"
#: ../thunar/thunar-shortcuts-pane.c:393
msgid "Side Pane (Create Shortcut)"
@@ -2200,21 +2185,18 @@
#. append the "Open in New Tab" menu action
#: ../thunar/thunar-shortcuts-view.c:1087
-#, fuzzy
msgid "Open in New Tab"
-msgstr "Yeni Pencerede Aç"
+msgstr "Yeni Sekmede Aç"
#. append the "Mount" item
#. append the "Mount" menu action
#: ../thunar/thunar-shortcuts-view.c:1107 ../thunar/thunar-tree-view.c:1140
-#, fuzzy
msgid "_Mount"
msgstr "_Bağla"
#. append the "Unmount" item
#. append the "Unmount" menu action
#: ../thunar/thunar-shortcuts-view.c:1113 ../thunar/thunar-tree-view.c:1146
-#, fuzzy
msgid "_Unmount"
msgstr "_Ayır"
@@ -2222,19 +2204,18 @@
#. append the "Eject" menu action
#: ../thunar/thunar-shortcuts-view.c:1119 ../thunar/thunar-tree-view.c:1152
msgid "_Eject"
-msgstr ""
+msgstr "_Çıkart"
#. append the "Disconnect" item
#: ../thunar/thunar-shortcuts-view.c:1136
-#, fuzzy
msgid "Create _Shortcut"
-msgstr "Kısa Yolu Yeniden A_dlandır"
+msgstr "Kısayol _Oluştur"
#. append the "Disconnect" item
#. append the "Mount Volume" menu action
#: ../thunar/thunar-shortcuts-view.c:1157 ../thunar/thunar-tree-view.c:1161
msgid "Disconn_ect"
-msgstr ""
+msgstr "Bağlantıyı _Kes"
#: ../thunar/thunar-shortcuts-view.c:1237
msgid "_Remove Shortcut"
@@ -2292,15 +2273,13 @@
#. TRANSLATORS: this is shows if during the deep count size
#. * directories were not accessible
#: ../thunar/thunar-size-label.c:385
-#, fuzzy
msgid "(some contents unreadable)"
-msgstr "İçeriği daha detaylı göster"
+msgstr "(içeriğin bir kısmı okunabilir değil)"
#. nothing was readable, so permission was denied
#: ../thunar/thunar-size-label.c:396
-#, fuzzy
msgid "Permission denied"
-msgstr "İzinler"
+msgstr "İzin verilmedi"
#: ../thunar/thunar-standard-view.c:386
msgid "Folder Context Menu"
@@ -2332,9 +2311,8 @@
#. append the "Move to Tash" menu action
#: ../thunar/thunar-standard-view.c:392 ../thunar/thunar-tree-view.c:1265
-#, fuzzy
msgid "Mo_ve to Trash"
-msgstr "Çöpü _Boşalt"
+msgstr "Çöp _Kutusuna Taşı"
#. append the "Delete" menu action
#: ../thunar/thunar-standard-view.c:393 ../thunar/thunar-tree-view.c:1277
@@ -2367,11 +2345,11 @@
#: ../thunar/thunar-standard-view.c:397
msgid "_Invert Selection"
-msgstr ""
+msgstr "_Seçimi Tersine Çevir"
#: ../thunar/thunar-standard-view.c:397
msgid "Select all and only the items that are not currently selected"
-msgstr ""
+msgstr "Şu anda seçili olan ögeler dışındaki tüm ögeleri seç"
#: ../thunar/thunar-standard-view.c:398
msgid "Du_plicate"
@@ -2424,7 +2402,7 @@
#: ../thunar/thunar-standard-view.c:2572
msgid "_Pattern:"
-msgstr "_Kalıp:"
+msgstr "_Desen:"
#. tell the user that the file name provided by the X Direct Save source is invalid
#: ../thunar/thunar-standard-view.c:3078
@@ -2455,18 +2433,16 @@
msgstr[1] "Seçilen dosyaları yapıştır komutu ile kopyalanacak şekilde hazırla"
#: ../thunar/thunar-standard-view.c:4164
-#, fuzzy
msgid "Move the selected file to the Trash"
msgid_plural "Move the selected files to the Trash"
-msgstr[0] "Seçilen dosyayı \"%s\" konumuna gönder"
-msgstr[1] "Seçilen dosyaları \"%s\" konumuna gönder"
+msgstr[0] "Seçilen dosyayı Çöp Kutusuna taşı"
+msgstr[1] "Seçilen dosyaları Çöp Kutusuna taşı"
#: ../thunar/thunar-standard-view.c:4172
-#, fuzzy
msgid "Permanently delete the selected file"
msgid_plural "Permanently delete the selected files"
-msgstr[0] "Seçilen dosyayı sil"
-msgstr[1] "Seçilen dosyaları sil"
+msgstr[0] "Seçilen dosyayı kalıcı olarak sil"
+msgstr[1] "Seçilen dosyaları kalıcı olarak sil"
#: ../thunar/thunar-standard-view.c:4186
msgid "Duplicate the selected file"
@@ -2503,11 +2479,12 @@
"Error while copying to \"%s\": %s more space is required to copy to the "
"destination"
msgstr ""
+"\"%s\" kopyalanamadı: Hedefe kopyalayabilmek için %s alan daha gerekiyor"
#: ../thunar/thunar-transfer-job.c:744
#, c-format
msgid "Error while copying to \"%s\": The destination is read-only"
-msgstr ""
+msgstr "\"%s\" kopyalanamadı: Hedef salt-okunur"
#: ../thunar/thunar-transfer-job.c:787
msgid "Collecting files..."
@@ -2546,30 +2523,30 @@
msgstr "\"%s\" doğrudan taşınamadı. Kopyalamak için dosyalar toplanıyor..."
#: ../thunar/thunar-transfer-job.c:1084
-#, fuzzy, c-format
+#, c-format
msgid "%s of %s"
-msgstr "%s kopyası"
+msgstr "%s - %s"
#: ../thunar/thunar-transfer-job.c:1104
-#, fuzzy, c-format
+#, c-format
msgid "%lu hour remaining (%s/sec)"
msgid_plural "%lu hours remaining (%s/sec)"
-msgstr[0] "%lu saat kaldı"
-msgstr[1] "%lu saat kaldı"
+msgstr[0] "%lu saat kaldı (%s/sn)"
+msgstr[1] "%lu saat kaldı (%s/sn)"
#: ../thunar/thunar-transfer-job.c:1112
-#, fuzzy, c-format
+#, c-format
msgid "%lu minute remaining (%s/sec)"
msgid_plural "%lu minutes remaining (%s/sec)"
-msgstr[0] "%lu dakika kaldı"
-msgstr[1] "%lu dakika kaldı"
+msgstr[0] "%lu dakika kaldı (%s/sn)"
+msgstr[1] "%lu dakika kaldı (%s/sn)"
#: ../thunar/thunar-transfer-job.c:1119
-#, fuzzy, c-format
+#, c-format
msgid "%lu second remaining (%s/sec)"
msgid_plural "%lu seconds remaining (%s/sec)"
-msgstr[0] "%lu saniye kaldı"
-msgstr[1] "%lu saniye kaldı"
+msgstr[0] "%lu saniye kaldı (%s/sn)"
+msgstr[1] "%lu saniye kaldı (%s/sn)"
#: ../thunar/thunar-trash-action.c:105
msgid "T_rash"
@@ -2638,19 +2615,16 @@
msgstr "%x, %X"
#: ../thunar/thunar-window.c:336
-#, fuzzy
msgid "New _Tab"
-msgstr "Yeni Ad"
+msgstr "Yeni _Sekme"
#: ../thunar/thunar-window.c:336
-#, fuzzy
msgid "Open a new tab for the displayed location"
-msgstr "Görüntülenen yer için yeni Thunar penceresi aç"
+msgstr "Görüntülenen konum için yeni bir pencere aç"
#: ../thunar/thunar-window.c:337
-#, fuzzy
msgid "New _Window"
-msgstr "Yeni _Pencere Aç"
+msgstr "Ye_ni Pencere"
#: ../thunar/thunar-window.c:337
msgid "Open a new Thunar window for the displayed location"
@@ -2658,12 +2632,11 @@
#: ../thunar/thunar-window.c:340
msgid "Detac_h Tab"
-msgstr ""
+msgstr "Sekmeyi _Ayır"
#: ../thunar/thunar-window.c:340
-#, fuzzy
msgid "Open current folder in a new window"
-msgstr "\"%s\" ögesini yeni pencerede aç"
+msgstr "Geçerli dizini yeni bir pencerede aç"
#: ../thunar/thunar-window.c:341
msgid "Close _All Windows"
@@ -2674,19 +2647,16 @@
msgstr "Tüm Thunar Pencerelerini K_apat"
#: ../thunar/thunar-window.c:342
-#, fuzzy
msgid "C_lose Tab"
-msgstr "Ka_pat"
+msgstr "Sekmeyi _Kapat"
#: ../thunar/thunar-window.c:342
-#, fuzzy
msgid "Close this folder"
-msgstr "Bu pencereyi kapat"
+msgstr "Bu dizini kapat"
#: ../thunar/thunar-window.c:343
-#, fuzzy
msgid "_Close Window"
-msgstr "Tüm Pencereleri _Kapat"
+msgstr "Pencereyi _Kapat"
#: ../thunar/thunar-window.c:343
msgid "Close this window"
@@ -2773,14 +2743,12 @@
msgstr "Dosya sisteminde gezin"
#: ../thunar/thunar-window.c:358
-#, fuzzy
msgid "B_rowse Network"
-msgstr "Ağı tara"
+msgstr "Ağı _Tara"
#: ../thunar/thunar-window.c:358
-#, fuzzy
msgid "Browse local network connections"
-msgstr "Ağı tara"
+msgstr "Yerel ağa gözat"
#: ../thunar/thunar-window.c:359
msgid "T_emplates"
@@ -2864,12 +2832,11 @@
#: ../thunar/thunar-window.c:374
msgid "_Menubar"
-msgstr ""
+msgstr "_Menü Çubuğu"
#: ../thunar/thunar-window.c:374
-#, fuzzy
msgid "Change the visibility of this window's menubar"
-msgstr "Bu pencerenin durum çubuğunun görünürlüğünü değiştir"
+msgstr "Pencerenin menü çubuğunun görünürlüğünü değiştir"
#.
#. * add view options
@@ -2906,14 +2873,13 @@
"verebilirsiniz."
#: ../thunar/thunar-window.c:1684
-#, fuzzy
msgid "Close tab"
-msgstr "Ka_pat"
+msgstr "Sekmeyi kapat"
#: ../thunar/thunar-window.c:1947
-#, fuzzy, c-format
+#, c-format
msgid "Open the location \"%s\""
-msgstr "Konum Aç"
+msgstr "\"%s\" konumunu aç"
#: ../thunar/thunar-window.c:2145
#, c-format
@@ -2927,7 +2893,7 @@
#: ../thunar/thunar-window.c:2793
#, c-format
msgid "The directory \"%s\" does not exist. Do you want to create it?"
-msgstr ""
+msgstr "\"%s\" dizini yok. Oluşturmak ister misiniz?"
#. display the "About Templates" dialog
#: ../thunar/thunar-window.c:2875
@@ -3042,12 +3008,11 @@
#: ../plugins/thunar-apr/thunar-apr-desktop-page.c:197
msgid "Working Directory:"
-msgstr ""
+msgstr "Çalışma Dizini:"
#: ../plugins/thunar-apr/thunar-apr-desktop-page.c:204
-#, fuzzy
msgid "The working directory for the program."
-msgstr "Çalışma dizini tam bir dizin olmalıdır"
+msgstr "Uygulama için bir çalışma dizini."
#: ../plugins/thunar-apr/thunar-apr-desktop-page.c:219
msgid "URL:"
@@ -3222,7 +3187,7 @@
#: ../plugins/thunar-sbr/thunar-sbr-enum-types.c:96
msgid "Sentence case"
-msgstr ""
+msgstr "Cümle şartı"
#: ../plugins/thunar-sbr/thunar-sbr-enum-types.c:102
msgid "Insert"
@@ -3700,7 +3665,6 @@
msgstr "Di_ğer Dosyalar"
#: ../plugins/thunar-uca/thunar-uca-editor.c:445
-#, fuzzy
msgid ""
"This page lists the conditions under which the\n"
"action will appear in the file managers context\n"
@@ -3713,10 +3677,10 @@
"action should only appear for certain kinds of\n"
"files."
msgstr ""
-"Bu sayfa dosya yöneticisi sağ tuş menüsünde\n"
+"Bu sayfa, dosya yöneticisi sağ tuş menüsünde\n"
"eylemlerin hangi durumlarda gösterileceğini listeler.\n"
-"Dosya desenleri noktalı virgülle ayrılmış basit dosya\n"
-"desenlerinin bir listesi olarak tanımlanmıştır.\n"
+"Dosya desenleri noktalı virgülle ayrılmış ve basit dosya\n"
+"desenlerinin bir listesi olarak tanımlanmıştır (*.txt;*.doc gibi).\n"
"Bir eylemin sağ tuş menüsünde görünmesi için en az bir desenin\n"
"dosya veya dizin adı ile eşleşmesi gerekir.\n"
"Ayrıca sadece bir belli dosya türlerinde gösterilecek\n"
+120
View File
@@ -0,0 +1,120 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>Thunar</Name>
<Homepage>http://thunar.xfce.org</Homepage>
<Packager>
<Name>Alper Tekinalp</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2.1</License>
<Icon>Thunar</Icon>
<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="53e6a3208b643a0108dee2d985b45e9ee2b94a35" type="tarbz2">mirrors://xfce/src/xfce/thunar/1.6/Thunar-1.6.10.tar.bz2</Archive>
<BuildDependencies>
<Dependency versionFrom="0.34">dbus-glib-devel</Dependency>
<Dependency versionFrom="0.7">desktop-file-utils</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency versionFrom="0.8.0">exo-devel</Dependency>
<Dependency versionFrom="0.4">startup-notification-devel</Dependency>
<Dependency versionFrom="0.4.0">libnotify-devel</Dependency>
<Dependency versionFrom="4.9.0">xfce4-panel-devel</Dependency>
<Dependency versionFrom="0.6.0">libexif-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>libxslt-devel</Dependency>
<Dependency>libpcre-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency versionFrom="1.2.2">libpng-devel</Dependency>
<Dependency>gettext</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">f4-open-panel.patch</Patch>
</Patches>
</Source>
<Package>
<Name>Thunar</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>pango</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>atk</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>exo</Dependency>
<Dependency>dbus</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>libexif</Dependency>
<Dependency>libpcre</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>polkit-gnome</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/appdata</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/share/Thunar</Path>
<Path fileType="data">/usr/share/thumbnailers</Path>
<Path fileType="data">/usr/share/polkit-1/actions/org.xfce.thunar.policy</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<Package>
<Name>Thunar-devel</Name>
<IsA>library</IsA>
<Summary>Thunar development files</Summary>
<RuntimeDependencies>
<Dependency release="current">Thunar</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/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/doc/Thunar/html</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-10-03</Date>
<Version>1.6.10</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>desktop.xfce.base</Name>
</PISI>
+26
View File
@@ -0,0 +1,26 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--disable-gtk-doc \
--disable-debug")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING*", "ChangeLog", "NEWS", "README", "THANKS", "TODO")
+94
View File
@@ -0,0 +1,94 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>exo</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalcinsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2.1</License>
<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="1edbd1eeda577ff0a0473145490b33eb8f9c24c4" type="tarbz2">mirrors://xfce/src/xfce/exo/0.10/exo-0.10.7.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>perl-URI</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>exo</Name>
<RuntimeDependencies>
<Dependency>libxfce4ui</Dependency>
<Dependency>atk</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/pygtk</Path>
<Path fileType="doc">/usr/share/xfce4/doc</Path>
<Path fileType="data">/usr/share/xfce4</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>libxfce4util-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/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>
<Path fileType="doc">/usr/share/doc/exo/html</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-10-03</Date>
<Version>0.10.7</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+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 http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--disable-debug")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc('AUTHORS', 'ChangeLog', 'COPYING', 'HACKING', 'NEWS', 'README', 'STATUS', 'THANKS', 'TODO')
+88
View File
@@ -0,0 +1,88 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>garcon</Name>
<Homepage>http://xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<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="9978c7f3181f7d8fd930cce74293d2a360743182" type="tarbz2">http://archive.xfce.org/src/xfce/garcon/0.4/garcon-0.4.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>xfce4-dev-tools</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>garcon</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>freetype</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</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="library">/usr/libexec</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<Package>
<Name>garcon-devel</Name>
<Summary>garcon development files</Summary>
<RuntimeDependencies>
<Dependency release="current">garcon</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/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="1">
<Date>2015-03-02</Date>
<Version>0.4.0</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+27
View File
@@ -0,0 +1,27 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--disable-gtk-doc \
--enable-gladeui \
--disable-debug \
--with-vendor-info='Pisi Linux'")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall('DESTDIR=%s' % get.installDIR())
pisitools.dodoc('NEWS', 'COPYING', 'README', 'TODO', 'ChangeLog', 'AUTHORS', 'THANKS')
+76
View File
@@ -0,0 +1,76 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libxfce4ui</Name>
<Homepage>http://xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<IsA>library</IsA>
<Summary>Xfce gui library</Summary>
<Description>libxfce4ui is a various GTK+ widgets for Xfce desktop environment.</Description>
<Archive sha1sum="ef687867bd087b5fc2befee0e8ca1a281f6bf165" type="tarbz2">http://archive.xfce.org/src/xfce/libxfce4ui/4.12/libxfce4ui-4.12.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>xfce4-dev-tools</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency>intltool</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libxfce4ui</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>startup-notification</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<Package>
<Name>libxfce4ui-devel</Name>
<RuntimeDependencies>
<Dependency release="current">libxfce4ui</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-24</Date>
<Version>4.12.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+27
View File
@@ -0,0 +1,27 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--sbindir=/usr/bin \
--localstatedir=/var \
--disable-static \
--disable-gtk-doc \
--disable-debug")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dosym("/usr/lib/libxfce4util.so.7.0.0", "/usr/lib/libxfce4util.so.6")
pisitools.dodoc("AUTHORS", "ChangeLog*", "COPYING", "NEWS", "README*", "THANKS", "TODO")
+62
View File
@@ -0,0 +1,62 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libxfce4util</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<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="fbea10b13db55c1f7756ec36ea7c8e84ca781492" type="tarbz2">http://archive.xfce.org/src/xfce/libxfce4util/4.12/libxfce4util-4.12.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>glib2-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libxfce4util</Name>
<RuntimeDependencies>
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/libexec</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 release="current">libxfce4util</Dependency>
<Dependency>glib2-devel</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="1">
<Date>2015-03-12</Date>
<Version>4.12.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--disable-debug")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README")
+63
View File
@@ -0,0 +1,63 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>thunar-volman</Name>
<Homepage>http://archive.xfce.org/xfce/4.10/src</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<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="fa76fa0089f85f23b1efbdfb76a70039de7f7e8b" type="tarbz2">http://archive.xfce.org/xfce/4.12/src/thunar-volman-0.8.1.tar.bz2</Archive>
<BuildDependencies>>
<Dependency>xfconf-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>Thunar-devel</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>icon-theme-hicolor</Dependency>
<Dependency>libnotify-devel</Dependency>
</BuildDependencies>
<Patches>
<!--<Patch>sandbox_error_po.patch</Patch>-->
</Patches>
</Source>
<Package>
<Name>thunar-volman</Name>
<RuntimeDependencies>
<Dependency>xfconf</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>pango</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>exo</Dependency>
<Dependency>libnotify</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/bin</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/</Path>
<Path fileType="library">/usr/libexec</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-02</Date>
<Version>0.8.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+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 http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--disable-debug \
--disable-gstreamer-thumbnailer")
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("README", "COPYING", "ChangeLog", "AUTHORS")
+69
View File
@@ -0,0 +1,69 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>tumbler</Name>
<Homepage>http://www.xfce.org/projects/thunar/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<Summary>A thumbnail service</Summary>
<Description>Tumbler is a thumbnail service for the filemanager of Xfce desktop environment.</Description>
<Archive sha1sum="cba7b81f8269f30dd6412d133767b6044c470f2c" type="tarbz2">http://archive.xfce.org/src/xfce/tumbler/0.1/tumbler-0.1.31.tar.bz2</Archive>
<BuildDependencies>
<Dependency>dbus-glib-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>poppler-glib-devel</Dependency>
<Dependency>libgsf-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>tumbler</Name>
<RuntimeDependencies>
<Dependency>cairo</Dependency>
<Dependency>libgsf</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>poppler-glib</Dependency>
<Dependency>libjpeg-turbo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/libexec</Path>
<Path fileType="data">/usr/share/</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="configure">/etc/xdg/tumbler/tumbler.rc</Path>
</Files>
</Package>
<Package>
<Name>tumbler-devel</Name>
<Summary>Development files for tumbler</Summary>
<RuntimeDependencies>
<Dependency release="current">tumbler</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-02</Date>
<Version>0.1.31</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--disable-debug")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO")
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-appfinder</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>xfce4-appfinder</Icon>
<IsA>app:gui</IsA>
<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="c6fe75b140e6c864654e9485e30a4718cdfd7321" type="tarbz2">http://archive.xfce.org/src/xfce/xfce4-appfinder/4.12/xfce4-appfinder-4.12.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>dbus-glib-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>garcon-devel</Dependency>
<Dependency>gettext</Dependency>
<Dependency>intltool</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-appfinder</Name>
<RuntimeDependencies>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>garcon</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/xfce4/doc</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/appdata/</Path>
<Path fileType="library">/usr/libexec</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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,19 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("README", "COPYING", "NEWS", "HACKING", "ChangeLog", "AUTHORS")
@@ -0,0 +1,44 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-dev-tools</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<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="b769c9bf7982cfb0b8b8491db1dde706aec46c5a" type="tarbz2">http://archive.xfce.org/xfce/4.12/src/xfce4-dev-tools-4.12.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>glib2-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-dev-tools</Name>
<RuntimeDependencies>
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="library">/usr/libexec</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--disable-debug")
# for fix unused dependency
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")
+69
View File
@@ -0,0 +1,69 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-mixer</Name>
<Homepage>http://git.xfce.org/apps/xfce4-mixer</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>xfce-sound</Icon>
<IsA>app:gui</IsA>
<Summary>Xfce sound mixer application</Summary>
<Description>Xfce4-mixer is a volume control application for the Xfce Desktop Environment. It provides both a volume control plugin for the Xfce Panel and a standalone mixer application. It supports all audio systems supported by GStreamer project.</Description>
<Archive sha1sum="8d2fda90f293603496bd23426486315ccf8d06f9" type="tarbz2">http://archive.xfce.org/src/apps/xfce4-mixer/4.10/xfce4-mixer-4.10.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>libunique-devel</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-mixer</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>libunique</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>gst-plugins-base</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/xfce4-mixer</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-03</Date>
<Version>4.10.0</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfce4-mixer</Name>
<Summary xml:lang="tr">Xfce ses ayar uygulaması</Summary>
<Summary xml:lang="pl">Mikser dźwięku dla Xfce</Summary>
<Description xml:lang="tr">Xfce4-mixer, Xfce Masaüstü Ortamı için yazılmış bir ses ayar uygulamasıdır. Hem panel eklentisi olarak, hem de kendi penceresinde bağımsız olarak kullanılabilen bir uygulamadır. GStreamer projesinin desteklediği tüm ses sistemlerini destekler.</Description>
<Description xml:lang="pl">Jest to nakładka na ustawienia miksera, dostarczana ze środowiskiem graficznym Xfce. Spełnia to samo zadanie, co inne nakładki ale jest zintegrowana z Xfce4 jako wtyczka dla panelu Xfce </Description>
</Source>
</PISI>
+34
View File
@@ -0,0 +1,34 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
autotools.configure("--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib \
--localstatedir=/var \
--disable-static \
--enable-gio-unix \
--enable-gtk-doc \
--enable-gtk3 \
--disable-debug")
#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.install()
pisitools.remove("/usr/share/icons/hicolor/icon-theme.cache")
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README", "TODO")
@@ -0,0 +1,590 @@
From 5a9e94ab7bd628f5bf6b46ea7ea91cf40b4aee98 Mon Sep 17 00:00:00 2001
From: Matt Thirtytwo <matt.59491@gmail.com>
Date: Mon, 2 Mar 2015 21:18:41 +0100
Subject: Fix compiler warning in clock plugin about shadowed 'time' variable
diff --git a/plugins/clock/clock-analog.c b/plugins/clock/clock-analog.c
index 2e96a09..910450d 100644
--- a/plugins/clock/clock-analog.c
+++ b/plugins/clock/clock-analog.c
@@ -216,7 +216,7 @@ xfce_clock_analog_expose_event (GtkWidget *widget,
gdouble xc, yc;
gdouble angle, radius;
cairo_t *cr;
- GDateTime *time;
+ GDateTime *date_time;
panel_return_val_if_fail (XFCE_CLOCK_IS_ANALOG (analog), FALSE);
@@ -239,7 +239,7 @@ xfce_clock_analog_expose_event (GtkWidget *widget,
cairo_clip (cr);
/* get the local time */
- time = clock_time_get_time (analog->time);
+ date_time = clock_time_get_time (analog->time);
/* set the line properties */
cairo_set_line_width (cr, 1);
@@ -251,20 +251,20 @@ xfce_clock_analog_expose_event (GtkWidget *widget,
if (analog->show_seconds)
{
/* second pointer */
- angle = TICKS_TO_RADIANS (g_date_time_get_second (time));
+ angle = TICKS_TO_RADIANS (g_date_time_get_second (date_time));
xfce_clock_analog_draw_pointer (cr, xc, yc, radius, angle, 0.7, TRUE);
}
/* minute pointer */
- angle = TICKS_TO_RADIANS (g_date_time_get_minute (time));
+ angle = TICKS_TO_RADIANS (g_date_time_get_minute (date_time));
xfce_clock_analog_draw_pointer (cr, xc, yc, radius, angle, 0.8, FALSE);
/* hour pointer */
- angle = HOURS_TO_RADIANS (g_date_time_get_hour (time), g_date_time_get_minute (time));
+ angle = HOURS_TO_RADIANS (g_date_time_get_hour (date_time), g_date_time_get_minute (date_time));
xfce_clock_analog_draw_pointer (cr, xc, yc, radius, angle, 0.5, FALSE);
/* cleanup */
- g_date_time_unref (time);
+ g_date_time_unref (date_time);
cairo_destroy (cr);
}
@@ -347,12 +347,12 @@ xfce_clock_analog_draw_pointer (cairo_t *cr,
static gboolean
xfce_clock_analog_update (XfceClockAnalog *analog,
- ClockTime *time)
+ ClockTime *clock_time)
{
GtkWidget *widget = GTK_WIDGET (analog);
panel_return_val_if_fail (XFCE_CLOCK_IS_ANALOG (analog), FALSE);
- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), FALSE);
+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), FALSE);
/* update if the widget if visible */
if (G_LIKELY (GTK_WIDGET_VISIBLE (widget)))
@@ -364,11 +364,11 @@ xfce_clock_analog_update (XfceClockAnalog *analog,
GtkWidget *
-xfce_clock_analog_new (ClockTime *time)
+xfce_clock_analog_new (ClockTime *clock_time)
{
XfceClockAnalog *analog = g_object_new (XFCE_CLOCK_TYPE_ANALOG, NULL);
- analog->time = time;
+ analog->time = clock_time;
analog->timeout = clock_time_timeout_new (CLOCK_INTERVAL_MINUTE,
analog->time,
G_CALLBACK (xfce_clock_analog_update), analog);
diff --git a/plugins/clock/clock-binary.c b/plugins/clock/clock-binary.c
index 4751c51..46b852c 100644
--- a/plugins/clock/clock-binary.c
+++ b/plugins/clock/clock-binary.c
@@ -262,7 +262,7 @@ xfce_clock_binary_expose_event_true_binary (XfceClockBinary *binary,
GtkAllocation *alloc)
{
GdkColor *active, *inactive;
- GDateTime *time;
+ GDateTime *date_time;
gint row, rows;
static gint binary_table[] = { 32, 16, 8, 4, 2, 1 };
gint col, cols = G_N_ELEMENTS (binary_table);
@@ -282,7 +282,7 @@ xfce_clock_binary_expose_event_true_binary (XfceClockBinary *binary,
active = &(GTK_WIDGET (binary)->style->dark[GTK_STATE_SELECTED]);
}
- time = clock_time_get_time (binary->time);
+ date_time = clock_time_get_time (binary->time);
/* init sizes */
remain_h = alloc->height;
@@ -293,11 +293,11 @@ xfce_clock_binary_expose_event_true_binary (XfceClockBinary *binary,
{
/* get the time this row represents */
if (row == 0)
- ticks = g_date_time_get_hour (time);
+ ticks = g_date_time_get_hour (date_time);
else if (row == 1)
- ticks = g_date_time_get_minute (time);
+ ticks = g_date_time_get_minute (date_time);
else
- ticks = g_date_time_get_second (time);
+ ticks = g_date_time_get_second (date_time);
/* reset sizes */
remain_w = alloc->width;
@@ -336,7 +336,7 @@ xfce_clock_binary_expose_event_true_binary (XfceClockBinary *binary,
offset_y += h;
}
- g_date_time_unref (time);
+ g_date_time_unref (date_time);
}
@@ -348,7 +348,7 @@ xfce_clock_binary_expose_event_binary (XfceClockBinary *binary,
{
GdkColor *active, *inactive;
static gint binary_table[] = { 80, 40, 20, 10, 8, 4, 2, 1 };
- GDateTime *time;
+ GDateTime *date_time;
gint row, rows = G_N_ELEMENTS (binary_table) / 2;
gint col, cols;
gint digit;
@@ -368,7 +368,7 @@ xfce_clock_binary_expose_event_binary (XfceClockBinary *binary,
active = &(GTK_WIDGET (binary)->style->dark[GTK_STATE_SELECTED]);
}
- time = clock_time_get_time (binary->time);
+ date_time = clock_time_get_time (binary->time);
remain_w = alloc->width;
offset_x = alloc->x;
@@ -379,11 +379,11 @@ xfce_clock_binary_expose_event_binary (XfceClockBinary *binary,
{
/* get the time this row represents */
if (col == 0)
- ticks = g_date_time_get_hour (time);
+ ticks = g_date_time_get_hour (date_time);
else if (col == 2)
- ticks = g_date_time_get_minute (time);
+ ticks = g_date_time_get_minute (date_time);
else if (col == 4)
- ticks = g_date_time_get_second (time);
+ ticks = g_date_time_get_second (date_time);
/* reset sizes */
remain_h = alloc->height;
@@ -520,7 +520,7 @@ xfce_clock_binary_expose_event (GtkWidget *widget,
static gboolean
xfce_clock_binary_update (XfceClockBinary *binary,
- ClockTime *time)
+ ClockTime *clock_time)
{
GtkWidget *widget = GTK_WIDGET (binary);
@@ -536,11 +536,11 @@ xfce_clock_binary_update (XfceClockBinary *binary,
GtkWidget *
-xfce_clock_binary_new (ClockTime *time)
+xfce_clock_binary_new (ClockTime *clock_time)
{
XfceClockBinary *binary = g_object_new (XFCE_CLOCK_TYPE_BINARY, NULL);
- binary->time = time;
+ binary->time = clock_time;
binary->timeout = clock_time_timeout_new (CLOCK_INTERVAL_MINUTE,
binary->time,
G_CALLBACK (xfce_clock_binary_update), binary);
diff --git a/plugins/clock/clock-digital.c b/plugins/clock/clock-digital.c
index c293ed2..34e7019 100644
--- a/plugins/clock/clock-digital.c
+++ b/plugins/clock/clock-digital.c
@@ -194,12 +194,12 @@ xfce_clock_digital_finalize (GObject *object)
static gboolean
xfce_clock_digital_update (XfceClockDigital *digital,
- ClockTime *time)
+ ClockTime *clock_time)
{
gchar *string;
panel_return_val_if_fail (XFCE_CLOCK_IS_DIGITAL (digital), FALSE);
- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), FALSE);
+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), FALSE);
/* set time string */
string = clock_time_strdup_strftime (digital->time, digital->format);
@@ -212,11 +212,11 @@ xfce_clock_digital_update (XfceClockDigital *digital,
GtkWidget *
-xfce_clock_digital_new (ClockTime *time)
+xfce_clock_digital_new (ClockTime *clock_time)
{
XfceClockDigital *digital = g_object_new (XFCE_CLOCK_TYPE_DIGITAL, NULL);
- digital->time = time;
+ digital->time = clock_time;
digital->timeout = clock_time_timeout_new (clock_time_interval_from_format (digital->format),
digital->time,
G_CALLBACK (xfce_clock_digital_update), digital);
diff --git a/plugins/clock/clock-fuzzy.c b/plugins/clock/clock-fuzzy.c
index 7b0aa41..4b361dd 100644
--- a/plugins/clock/clock-fuzzy.c
+++ b/plugins/clock/clock-fuzzy.c
@@ -275,7 +275,7 @@ xfce_clock_fuzzy_finalize (GObject *object)
static gboolean
xfce_clock_fuzzy_update (XfceClockFuzzy *fuzzy,
- ClockTime *time)
+ ClockTime *clock_time)
{
GDateTime *date_time;
gint sector;
@@ -353,11 +353,11 @@ xfce_clock_fuzzy_update (XfceClockFuzzy *fuzzy,
GtkWidget *
-xfce_clock_fuzzy_new (ClockTime *time)
+xfce_clock_fuzzy_new (ClockTime *clock_time)
{
XfceClockFuzzy *fuzzy = g_object_new (XFCE_CLOCK_TYPE_FUZZY, NULL);
- fuzzy->time = time;
+ fuzzy->time = clock_time;
fuzzy->timeout = clock_time_timeout_new (CLOCK_INTERVAL_MINUTE,
fuzzy->time,
G_CALLBACK (xfce_clock_fuzzy_update), fuzzy);
diff --git a/plugins/clock/clock-lcd.c b/plugins/clock/clock-lcd.c
index 84e74e6..b180d30 100644
--- a/plugins/clock/clock-lcd.c
+++ b/plugins/clock/clock-lcd.c
@@ -285,7 +285,7 @@ xfce_clock_lcd_expose_event (GtkWidget *widget,
gint ticks, i;
gdouble size;
gdouble ratio;
- GDateTime *time;
+ GDateTime *date_time;
panel_return_val_if_fail (XFCE_CLOCK_IS_LCD (lcd), FALSE);
@@ -317,10 +317,10 @@ xfce_clock_lcd_expose_event (GtkWidget *widget,
cairo_set_line_width (cr, MAX (size * 0.05, 1.5));
/* get the local time */
- time = clock_time_get_time (lcd->time);
+ date_time = clock_time_get_time (lcd->time);
/* draw the hours */
- ticks = g_date_time_get_hour (time);
+ ticks = g_date_time_get_hour (date_time);
/* convert 24h clock to 12h clock */
if (!lcd->show_military && ticks > 12)
@@ -333,8 +333,8 @@ xfce_clock_lcd_expose_event (GtkWidget *widget,
* because we might miss the exact second (due to slightly delayed
* timeout) we queue a resize the first 3 seconds or anything in
* the first minute */
- if ((ticks == 10 || ticks == 0) && g_date_time_get_minute (time) == 0
- && (!lcd->show_seconds || g_date_time_get_second (time) < 3))
+ if ((ticks == 10 || ticks == 0) && g_date_time_get_minute (date_time) == 0
+ && (!lcd->show_seconds || g_date_time_get_second (date_time) < 3))
g_object_notify (G_OBJECT (lcd), "size-ratio");
if (ticks >= 10)
@@ -352,7 +352,7 @@ xfce_clock_lcd_expose_event (GtkWidget *widget,
if (i == 0)
{
/* get the minutes */
- ticks = g_date_time_get_minute (time);
+ ticks = g_date_time_get_minute (date_time);
}
else
{
@@ -361,11 +361,11 @@ xfce_clock_lcd_expose_event (GtkWidget *widget,
break;
/* get the seconds */
- ticks = g_date_time_get_second (time);
+ ticks = g_date_time_get_second (date_time);
}
/* draw the dots */
- if (lcd->flash_separators && (g_date_time_get_second (time) % 2) == 1)
+ if (lcd->flash_separators && (g_date_time_get_second (date_time) % 2) == 1)
offset_x += size * RELATIVE_SPACE * 2;
else
offset_x = xfce_clock_lcd_draw_dots (cr, size, offset_x, offset_y);
@@ -380,14 +380,14 @@ xfce_clock_lcd_expose_event (GtkWidget *widget,
if (lcd->show_meridiem)
{
/* am or pm? */
- ticks = g_date_time_get_hour (time) >= 12 ? 11 : 10;
+ ticks = g_date_time_get_hour (date_time) >= 12 ? 11 : 10;
/* draw the digit */
offset_x = xfce_clock_lcd_draw_digit (cr, ticks, size, offset_x, offset_y);
}
/* drop the pushed group */
- g_date_time_unref (time);
+ g_date_time_unref (date_time);
cairo_pop_group_to_source (cr);
cairo_paint (cr);
cairo_destroy (cr);
@@ -403,16 +403,16 @@ xfce_clock_lcd_get_ratio (XfceClockLcd *lcd)
{
gdouble ratio;
gint ticks;
- GDateTime *time;
+ GDateTime *date_time;
/* get the local time */
- time = clock_time_get_time (lcd->time);
+ date_time = clock_time_get_time (lcd->time);
/* 8:8(space)8 */
ratio = (3 * RELATIVE_DIGIT) + RELATIVE_DOTS + RELATIVE_SPACE;
- ticks = g_date_time_get_hour (time);
- g_date_time_unref (time);
+ ticks = g_date_time_get_hour (date_time);
+ g_date_time_unref (date_time);
if (!lcd->show_military && ticks > 12)
ticks -= 12;
@@ -584,7 +584,7 @@ xfce_clock_lcd_draw_digit (cairo_t *cr,
static gboolean
xfce_clock_lcd_update (XfceClockLcd *lcd,
- ClockTime *time)
+ ClockTime *clock_time)
{
GtkWidget *widget = GTK_WIDGET (lcd);
@@ -600,11 +600,11 @@ xfce_clock_lcd_update (XfceClockLcd *lcd,
GtkWidget *
-xfce_clock_lcd_new (ClockTime *time)
+xfce_clock_lcd_new (ClockTime *clock_time)
{
XfceClockLcd *lcd = g_object_new (XFCE_CLOCK_TYPE_LCD, NULL);
- lcd->time = time;
+ lcd->time = clock_time;
lcd->timeout = clock_time_timeout_new (CLOCK_INTERVAL_MINUTE,
lcd->time,
G_CALLBACK (xfce_clock_lcd_update), lcd);
diff --git a/plugins/clock/clock-time.c b/plugins/clock/clock-time.c
index 16b0f89..b015b13 100644
--- a/plugins/clock/clock-time.c
+++ b/plugins/clock/clock-time.c
@@ -107,10 +107,10 @@ clock_time_class_init (ClockTimeClass *klass)
static void
-clock_time_init (ClockTime *time)
+clock_time_init (ClockTime *clock_time)
{
- time->timezone_name = g_strdup (DEFAULT_TIMEZONE);
- time->timezone = g_time_zone_new_local ();
+ clock_time->timezone_name = g_strdup (DEFAULT_TIMEZONE);
+ clock_time->timezone = g_time_zone_new_local ();
}
@@ -118,11 +118,11 @@ clock_time_init (ClockTime *time)
static void
clock_time_finalize (GObject *object)
{
- ClockTime *time = XFCE_CLOCK_TIME (object);
+ ClockTime *clock_time = XFCE_CLOCK_TIME (object);
- g_free (time->timezone_name);
+ g_free (clock_time->timezone_name);
- g_time_zone_unref (time->timezone);
+ g_time_zone_unref (clock_time->timezone);
G_OBJECT_CLASS (clock_time_parent_class)->finalize (object);
}
@@ -135,12 +135,12 @@ clock_time_get_property (GObject *object,
GValue *value,
GParamSpec *pspec)
{
- ClockTime *time = XFCE_CLOCK_TIME (object);
+ ClockTime *clock_time = XFCE_CLOCK_TIME (object);
switch (prop_id)
{
case PROP_TIMEZONE:
- g_value_set_string (value, time->timezone_name);
+ g_value_set_string (value, clock_time->timezone_name);
break;
default:
@@ -157,29 +157,29 @@ clock_time_set_property (GObject *object,
const GValue *value,
GParamSpec *pspec)
{
- ClockTime *time = XFCE_CLOCK_TIME (object);
+ ClockTime *clock_time = XFCE_CLOCK_TIME (object);
const gchar *str_value;
switch (prop_id)
{
case PROP_TIMEZONE:
str_value = g_value_get_string (value);
- if (g_strcmp0 (time->timezone_name, str_value) != 0)
+ if (g_strcmp0 (clock_time->timezone_name, str_value) != 0)
{
- g_free (time->timezone_name);
- g_time_zone_unref (time->timezone);
+ g_free (clock_time->timezone_name);
+ g_time_zone_unref (clock_time->timezone);
if (str_value == NULL || g_strcmp0 (str_value, "") == 0)
{
- time->timezone_name = g_strdup (DEFAULT_TIMEZONE);
- time->timezone = g_time_zone_new_local ();
+ clock_time->timezone_name = g_strdup (DEFAULT_TIMEZONE);
+ clock_time->timezone = g_time_zone_new_local ();
}
else
{
- time->timezone_name = g_strdup (str_value);
- time->timezone = g_time_zone_new (str_value);
+ clock_time->timezone_name = g_strdup (str_value);
+ clock_time->timezone = g_time_zone_new (str_value);
}
- g_signal_emit (G_OBJECT (time), clock_time_signals[TIME_CHANGED], 0);
+ g_signal_emit (G_OBJECT (clock_time), clock_time_signals[TIME_CHANGED], 0);
}
break;
@@ -192,14 +192,14 @@ clock_time_set_property (GObject *object,
GDateTime *
-clock_time_get_time (ClockTime *time)
+clock_time_get_time (ClockTime *clock_time)
{
GDateTime *date_time;
- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), NULL);
+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), NULL);
- if (time->timezone != NULL)
- date_time = g_date_time_new_now (time->timezone);
+ if (clock_time->timezone != NULL)
+ date_time = g_date_time_new_now (clock_time->timezone);
else
date_time = g_date_time_new_now_local ();
@@ -209,15 +209,15 @@ clock_time_get_time (ClockTime *time)
gchar *
-clock_time_strdup_strftime (ClockTime *time,
+clock_time_strdup_strftime (ClockTime *clock_time,
const gchar *format)
{
GDateTime *date_time;
gchar *str;
- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), NULL);
+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), NULL);
- date_time = clock_time_get_time (time);
+ date_time = clock_time_get_time (clock_time);
str = g_date_time_format (date_time, format);
g_date_time_unref (date_time);
@@ -262,7 +262,7 @@ static gboolean
clock_time_timeout_running (gpointer user_data)
{
ClockTimeTimeout *timeout = user_data;
- GDateTime *time;
+ GDateTime *date_time;
g_signal_emit (G_OBJECT (timeout->time), clock_time_signals[TIME_CHANGED], 0);
@@ -270,8 +270,8 @@ clock_time_timeout_running (gpointer user_data)
if (timeout->interval == CLOCK_INTERVAL_MINUTE)
{
/* sync again when we don't run on time */
- time = clock_time_get_time (timeout->time);
- timeout->restart = (g_date_time_get_second (time) != 0);
+ date_time = clock_time_get_time (timeout->time);
+ timeout->restart = (g_date_time_get_second (date_time) != 0);
}
return !timeout->restart;
@@ -312,13 +312,13 @@ clock_time_timeout_sync (gpointer user_data)
ClockTimeTimeout *
clock_time_timeout_new (guint interval,
- ClockTime *time,
+ ClockTime *clock_time,
GCallback c_handler,
gpointer gobject)
{
ClockTimeTimeout *timeout;
- panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (time), NULL);
+ panel_return_val_if_fail (XFCE_IS_CLOCK_TIME (clock_time), NULL);
panel_return_val_if_fail (interval > 0, NULL);
@@ -326,10 +326,10 @@ clock_time_timeout_new (guint interval,
timeout->interval = 0;
timeout->timeout_id = 0;
timeout->restart = FALSE;
- timeout->time = time;
+ timeout->time = clock_time;
timeout->time_changed_id =
- g_signal_connect_swapped (G_OBJECT (time), "time-changed",
+ g_signal_connect_swapped (G_OBJECT (clock_time), "time-changed",
c_handler, gobject);
g_object_ref (G_OBJECT (timeout->time));
@@ -345,7 +345,7 @@ void
clock_time_timeout_set_interval (ClockTimeTimeout *timeout,
guint interval)
{
- GDateTime *time;
+ GDateTime *date_time;
guint next_interval;
gboolean restart;
@@ -372,8 +372,8 @@ clock_time_timeout_set_interval (ClockTimeTimeout *timeout,
/* get the seconds to the next internal */
if (interval == CLOCK_INTERVAL_MINUTE)
{
- time = clock_time_get_time (timeout->time);
- next_interval = 60 - g_date_time_get_second (time);
+ date_time = clock_time_get_time (timeout->time);
+ next_interval = 60 - g_date_time_get_second (date_time);
}
else
{
diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c
index 6c80978..e07c17b 100644
--- a/plugins/clock/clock.c
+++ b/plugins/clock/clock.c
@@ -1113,17 +1113,17 @@ static void
clock_plugin_calendar_show_event (GtkWidget *calendar_window,
ClockPlugin *plugin)
{
- GDateTime *time;
+ GDateTime *date_time;
panel_return_if_fail (XFCE_IS_PANEL_PLUGIN (plugin));
clock_plugin_reposition_calendar (plugin);
- time = clock_time_get_time (plugin->time);
- gtk_calendar_select_month (GTK_CALENDAR (plugin->calendar), g_date_time_get_month (time) - 1,
- g_date_time_get_year (time));
- gtk_calendar_select_day (GTK_CALENDAR (plugin->calendar), g_date_time_get_day_of_month (time));
- g_date_time_unref (time);
+ date_time = clock_time_get_time (plugin->time);
+ gtk_calendar_select_month (GTK_CALENDAR (plugin->calendar), g_date_time_get_month (date_time) - 1,
+ g_date_time_get_year (date_time));
+ gtk_calendar_select_day (GTK_CALENDAR (plugin->calendar), g_date_time_get_day_of_month (date_time));
+ g_date_time_unref (date_time);
}
--
cgit v0.10.1
+103
View File
@@ -0,0 +1,103 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-panel</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2</License>
<Icon>xfce4-panel</Icon>
<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="5f0e51c7948bc4e3c46cad93ee772573a23efbc1" type="tarbz2">http://archive.xfce.org/src/xfce/xfce4-panel/4.12/xfce4-panel-4.12.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency versionFrom="0.3.93">exo-devel</Dependency>
<Dependency versionFrom="0.1.5">garcon-devel</Dependency>
<Dependency versionFrom="2.30">libwnck2-devel</Dependency>
<Dependency>gtk3-docs</Dependency>
<Dependency>gettext</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency versionFrom="2.4.0">libxml2-devel</Dependency>
<Dependency>libxslt-devel</Dependency>
</BuildDependencies>
<Patches>
<!--<Patch>time.patch</Patch>-->
</Patches>
</Source>
<Package>
<Name>xfce4-panel</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>exo</Dependency>
<Dependency>dbus</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>garcon</Dependency>
<Dependency>libX11</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libXext</Dependency>
<Dependency>freetype</Dependency>
<Dependency>libwnck2</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libxfce4ui</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="library">/usr/libexec</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/xfce4/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</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 release="current">xfce4-panel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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,27 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
def setup():
shelltools.export("GTK3","/usr/bin/gtk-launch")
autotools.configure("--prefix=/usr \
--sysconfdir=/etc \
--sbindir=/usr/bin \
--libexecdir=/usr/lib \
--localstatedir=/var \
--disable-network-manager \
--enable-polkit \
--disable-debug")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO")
@@ -0,0 +1,306 @@
From 05d12e12596512f7a31d3cdb4845a69dc2d4c611 Mon Sep 17 00:00:00 2001
From: Martin Matuska <martin@matuska.org>
Date: Tue, 23 Jul 2013 09:27:41 +0000
Subject: Change brightness level from glong to gint32
The "Backlight" RandR property is a 32-bit integer. This means that the int32 (gint32) type should be used to represent brightness levels. The attached patch does nothing else than changing the brightness level representation from glong to gint32. This fixes the screen auto-dimming issue and brightness panel plugin issue.
---
diff --git a/common/xfpm-brightness.c b/common/xfpm-brightness.c
index aa1ef33..f1524cb 100644
--- a/common/xfpm-brightness.c
+++ b/common/xfpm-brightness.c
@@ -92,11 +92,11 @@ out:
}
static gboolean
-xfpm_brightness_xrandr_get_level (XfpmBrightness *brightness, RROutput output, long *current)
+xfpm_brightness_xrandr_get_level (XfpmBrightness *brightness, RROutput output, gint32 *current)
{
unsigned long nitems;
unsigned long bytes_after;
- long *prop;
+ gint32 *prop;
Atom actual_type;
int actual_format;
gboolean ret = FALSE;
@@ -124,7 +124,7 @@ xfpm_brightness_xrandr_get_level (XfpmBrightness *brightness, RROutput output, l
}
static gboolean
-xfpm_brightness_xrandr_set_level (XfpmBrightness *brightness, RROutput output, long level)
+xfpm_brightness_xrandr_set_level (XfpmBrightness *brightness, RROutput output, gint32 level)
{
gboolean ret = TRUE;
@@ -137,7 +137,7 @@ xfpm_brightness_xrandr_set_level (XfpmBrightness *brightness, RROutput output, l
if ( gdk_error_trap_pop () )
{
- g_warning ("failed to XRRChangeOutputProperty for brightness %li", level);
+ g_warning ("failed to XRRChangeOutputProperty for brightness %d", level);
ret = FALSE;
}
@@ -225,11 +225,11 @@ xfpm_brightness_setup_xrandr (XfpmBrightness *brightness)
}
static gboolean
-xfpm_brightness_xrand_up (XfpmBrightness *brightness, glong *new_level)
+xfpm_brightness_xrand_up (XfpmBrightness *brightness, gint32 *new_level)
{
- long hw_level;
+ gint32 hw_level;
gboolean ret = FALSE;
- long set_level;
+ gint32 set_level;
ret = xfpm_brightness_xrandr_get_level (brightness, brightness->priv->output, &hw_level);
@@ -250,14 +250,14 @@ xfpm_brightness_xrand_up (XfpmBrightness *brightness, glong *new_level)
if ( !ret )
{
- g_warning ("xfpm_brightness_xrand_up failed for %li", set_level);
+ g_warning ("xfpm_brightness_xrand_up failed for %d", set_level);
return FALSE;
}
/* Nothing changed in the hardware*/
if ( *new_level == hw_level )
{
- g_warning ("xfpm_brightness_xrand_up did not change the hw level to %li", set_level);
+ g_warning ("xfpm_brightness_xrand_up did not change the hw level to %d", set_level);
return FALSE;
}
@@ -265,11 +265,11 @@ xfpm_brightness_xrand_up (XfpmBrightness *brightness, glong *new_level)
}
static gboolean
-xfpm_brightness_xrand_down (XfpmBrightness *brightness, long *new_level)
+xfpm_brightness_xrand_down (XfpmBrightness *brightness, gint32 *new_level)
{
- long hw_level;
+ gint32 hw_level;
gboolean ret;
- long set_level;
+ gint32 set_level;
ret = xfpm_brightness_xrandr_get_level (brightness, brightness->priv->output, &hw_level);
@@ -290,14 +290,14 @@ xfpm_brightness_xrand_down (XfpmBrightness *brightness, long *new_level)
if ( !ret )
{
- g_warning ("xfpm_brightness_xrand_down failed for %li", set_level);
+ g_warning ("xfpm_brightness_xrand_down failed for %d", set_level);
return FALSE;
}
/* Nothing changed in the hardware*/
if ( *new_level == hw_level )
{
- g_warning ("xfpm_brightness_xrand_down did not change the hw level to %li", set_level);
+ g_warning ("xfpm_brightness_xrand_down did not change the hw level to %d", set_level);
return FALSE;
}
@@ -361,7 +361,7 @@ xfpm_brightness_setup_helper (XfpmBrightness *brightness)
}
static gboolean
-xfpm_brightness_helper_get_level (XfpmBrightness *brg, glong *level)
+xfpm_brightness_helper_get_level (XfpmBrightness *brg, gint32 *level)
{
int ret;
@@ -406,11 +406,11 @@ out:
}
static gboolean
-xfpm_brightness_helper_up (XfpmBrightness *brightness, glong *new_level)
+xfpm_brightness_helper_up (XfpmBrightness *brightness, gint32 *new_level)
{
- glong hw_level;
+ gint32 hw_level;
gboolean ret = FALSE;
- gint set_level;
+ gint32 set_level;
ret = xfpm_brightness_helper_get_level (brightness, &hw_level);
@@ -446,11 +446,11 @@ xfpm_brightness_helper_up (XfpmBrightness *brightness, glong *new_level)
}
static gboolean
-xfpm_brightness_helper_down (XfpmBrightness *brightness, glong *new_level)
+xfpm_brightness_helper_down (XfpmBrightness *brightness, gint32 *new_level)
{
- glong hw_level;
+ gint32 hw_level;
gboolean ret;
- gint set_level;
+ gint32 set_level;
ret = xfpm_brightness_helper_get_level (brightness, &hw_level);
@@ -572,7 +572,7 @@ xfpm_brightness_setup (XfpmBrightness *brightness)
return FALSE;
}
-gboolean xfpm_brightness_up (XfpmBrightness *brightness, glong *new_level)
+gboolean xfpm_brightness_up (XfpmBrightness *brightness, gint32 *new_level)
{
gboolean ret = FALSE;
@@ -589,7 +589,7 @@ gboolean xfpm_brightness_up (XfpmBrightness *brightness, glong *new_level)
return ret;
}
-gboolean xfpm_brightness_down (XfpmBrightness *brightness, glong *new_level)
+gboolean xfpm_brightness_down (XfpmBrightness *brightness, gint32 *new_level)
{
gboolean ret = FALSE;
@@ -618,7 +618,7 @@ gint xfpm_brightness_get_max_level (XfpmBrightness *brightness)
return brightness->priv->max_level;
}
-gboolean xfpm_brightness_get_level (XfpmBrightness *brightness, glong *level)
+gboolean xfpm_brightness_get_level (XfpmBrightness *brightness, gint32 *level)
{
gboolean ret = FALSE;
@@ -632,7 +632,7 @@ gboolean xfpm_brightness_get_level (XfpmBrightness *brightness, glong *level)
return ret;
}
-gboolean xfpm_brightness_set_level (XfpmBrightness *brightness, glong level)
+gboolean xfpm_brightness_set_level (XfpmBrightness *brightness, gint32 level)
{
gboolean ret = FALSE;
diff --git a/common/xfpm-brightness.h b/common/xfpm-brightness.h
index 0c4e3ed..26b3dbe 100644
--- a/common/xfpm-brightness.h
+++ b/common/xfpm-brightness.h
@@ -51,20 +51,20 @@ XfpmBrightness *xfpm_brightness_new (void);
gboolean xfpm_brightness_setup (XfpmBrightness *brightness);
gboolean xfpm_brightness_up (XfpmBrightness *brightness,
- glong *new_level);
+ gint32 *new_level);
gboolean xfpm_brightness_down (XfpmBrightness *brightness,
- glong *new_level);
+ gint32 *new_level);
gboolean xfpm_brightness_has_hw (XfpmBrightness *brightness);
gint xfpm_brightness_get_max_level (XfpmBrightness *brightness);
gboolean xfpm_brightness_get_level (XfpmBrightness *brightness,
- glong *level);
+ gint32 *level);
gboolean xfpm_brightness_set_level (XfpmBrightness *brightness,
- glong level);
+ gint32 level);
gboolean xfpm_brightness_dim_down (XfpmBrightness *brightness);
diff --git a/panel-plugins/brightness/brightness-button.c b/panel-plugins/brightness/brightness-button.c
index 6e60c29..bd466c9 100644
--- a/panel-plugins/brightness/brightness-button.c
+++ b/panel-plugins/brightness/brightness-button.c
@@ -186,7 +186,7 @@ static gboolean
brightness_button_popup_win (GtkWidget *widget, GdkEvent *ev, guint32 ev_time)
{
gint x, y;
- glong current_level = 0;
+ gint32 current_level = 0;
GdkDisplay *display;
GdkScreen *screen;
BrightnessButton *button;
@@ -342,7 +342,7 @@ plus_clicked (GtkWidget *widget, BrightnessButton *button)
static void
range_value_changed (GtkWidget *widget, BrightnessButton *button)
{
- glong range_level, hw_level;
+ gint32 range_level, hw_level;
range_level = (gint) gtk_range_get_value (GTK_RANGE (button->priv->range));
@@ -428,8 +428,8 @@ brightness_button_create_popup (BrightnessButton *button)
static void
brightness_button_up (BrightnessButton *button)
{
- glong level;
- glong max_level;
+ gint32 level;
+ gint32 max_level;
xfpm_brightness_get_level (button->priv->brightness, &level);
max_level = xfpm_brightness_get_max_level (button->priv->brightness);
@@ -443,7 +443,7 @@ brightness_button_up (BrightnessButton *button)
static void
brightness_button_down (BrightnessButton *button)
{
- glong level;
+ gint32 level;
xfpm_brightness_get_level (button->priv->brightness, &level);
if ( level != 0 )
diff --git a/src/xfpm-backlight.c b/src/xfpm-backlight.c
index baeeb43..45c990f 100644
--- a/src/xfpm-backlight.c
+++ b/src/xfpm-backlight.c
@@ -63,8 +63,8 @@ struct XfpmBacklightPrivate
gboolean has_hw;
gboolean on_battery;
- glong last_level;
- glong max_level;
+ gint32 last_level;
+ gint32 max_level;
gboolean dimmed;
gboolean block;
@@ -79,7 +79,7 @@ xfpm_backlight_dim_brightness (XfpmBacklight *backlight)
if (xfpm_power_get_mode (backlight->priv->power) == XFPM_POWER_MODE_NORMAL )
{
- glong dim_level;
+ gint32 dim_level;
g_object_get (G_OBJECT (backlight->priv->conf),
backlight->priv->on_battery ? BRIGHTNESS_LEVEL_ON_BATTERY : BRIGHTNESS_LEVEL_ON_AC, &dim_level,
@@ -101,7 +101,7 @@ xfpm_backlight_dim_brightness (XfpmBacklight *backlight)
**/
if (backlight->priv->last_level > dim_level)
{
- XFPM_DEBUG ("Current brightness level before dimming : %li, new %li", backlight->priv->last_level, dim_level);
+ XFPM_DEBUG ("Current brightness level before dimming : %d, new %d", backlight->priv->last_level, dim_level);
backlight->priv->dimmed = xfpm_brightness_set_level (backlight->priv->brightness, dim_level);
}
}
@@ -182,7 +182,7 @@ xfpm_backlight_reset_cb (EggIdletime *idle, XfpmBacklight *backlight)
{
if ( !backlight->priv->block)
{
- XFPM_DEBUG ("Alarm reset, setting level to %li", backlight->priv->last_level);
+ XFPM_DEBUG ("Alarm reset, setting level to %d", backlight->priv->last_level);
xfpm_brightness_set_level (backlight->priv->brightness, backlight->priv->last_level);
}
backlight->priv->dimmed = FALSE;
@@ -192,7 +192,7 @@ xfpm_backlight_reset_cb (EggIdletime *idle, XfpmBacklight *backlight)
static void
xfpm_backlight_button_pressed_cb (XfpmButton *button, XfpmButtonKey type, XfpmBacklight *backlight)
{
- glong level;
+ gint32 level;
gboolean ret = TRUE;
gboolean enable_brightness, show_popup;
--
cgit v0.9.2
@@ -0,0 +1,81 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-power-manager</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<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="432e34cbd9e7f8e9ab2f81e3abb10ec7ed7b8c1f" type="tarbz2">http://archive.xfce.org/src/xfce/xfce4-power-manager/1.5/xfce4-power-manager-1.5.2.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>libXScrnSaver-devel</Dependency>
<Dependency>upower-extra</Dependency>
<!--<Dependency>upower</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>libglade-devel</Dependency>
<Dependency>polkit-devel</Dependency>
<Dependency>ConsoleKit-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>libnotify-devel</Dependency>-->
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-power-manager</Name>
<RuntimeDependencies>
<Dependency>libXScrnSaver</Dependency>
<Dependency>atk</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libXext</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>upower-extra</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>xfce4-panel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/lib/xfce4</Path>
<Path fileType="library">/usr/libexec</Path>
<Path fileType="data">/etc/xdg/autostart</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-10-06</Date>
<Version>1.5.2</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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,26 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--disable-systemd \
--disable-debug")
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", "ChangeLog*", "NEWS", "README", "TODO")
+95
View File
@@ -0,0 +1,95 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-session</Name>
<Homepage>http://www.xfce.org/projects/xfce4-session</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<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="ccdeac8bb6b4bb2382a963efdf2e05c09c61fee4" type="tarbz2">http://archive.xfce.org/src/xfce/xfce4-session/4.12/xfce4-session-4.12.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libwnck2-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>polkit-devel</Dependency>
<Dependency>upower-devel</Dependency>
<Dependency>xorg-app-devel</Dependency>
<Dependency>libSM-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-session</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>dbus</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>libSM</Dependency>
<Dependency>libICE</Dependency>
<Dependency>libX11</Dependency>
<Dependency>polkit</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libwnck2</Dependency>
<Dependency>dbus-glib</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="executable">/usr/libexec</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/xfce4/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/themes</Path>
<Path fileType="data">/usr/share/xsessions</Path>
<Path fileType="data">/usr/share/polkit-1/actions</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>xfce4-session-devel</Name>
<IsA>library</IsA>
<IsA>data:doc</IsA>
<Summary>Xfce4 Session development files</Summary>
<RuntimeDependencies>
<Dependency release="current">xfce4-session</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-24</Date>
<Version>4.12.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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,29 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--enable-xrandr \
--enable-xcursor \
--enable-libnotify \
--enable-libxklavier \
--enable-pluggable-dialogs \
--enable-sound-settings \
--disable-debug")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO")
Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-desktop" version="1.0">
<property name="backdrop" type="empty">
<property name="screen0" type="empty">
<property name="monitor0" type="empty">
<property name="image-path" type="string" value="/usr/share/backgrounds/xfce/1920x1080.png"/>
<property name="last-image" type="string" value="/usr/share/backgrounds/xfce/1920x1080.png"/>
<property name="last-single-image" type="string" value="/usr/share/backgrounds/xfce/1920x1080.png"/>
</property>
</property>
</property>
<property name="desktop-icons" type="empty">
<property name="icon-size" type="uint" value="32"/>
<property name="file-icons" type="empty">
<property name="show-filesystem" type="bool" value="false"/>
<property name="show-removable" type="bool" value="false"/>
</property>
</property>
</channel>
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-panel" version="1.0">
<property name="configver" type="int" value="2"/>
<property name="panels" type="array">
<value type="int" value="1"/>
<property name="panel-1" type="empty">
<property name="position" type="string" value="p=8;x=683;y=752"/>
<property name="length" type="uint" value="100"/>
<property name="position-locked" type="bool" value="true"/>
<property name="size" type="uint" value="30"/>
<property name="plugin-ids" type="array">
<value type="int" value="9"/>
<value type="int" value="8"/>
<value type="int" value="11"/>
<value type="int" value="10"/>
<value type="int" value="4"/>
<value type="int" value="3"/>
<value type="int" value="15"/>
<value type="int" value="7"/>
<value type="int" value="5"/>
<value type="int" value="6"/>
<value type="int" value="2"/>
</property>
</property>
</property>
<property name="plugins" type="empty">
<property name="plugin-2" type="string" value="actions"/>
<property name="plugin-3" type="string" value="tasklist"/>
<property name="plugin-15" type="string" value="separator">
<property name="expand" type="bool" value="true"/>
<property name="style" type="uint" value="0"/>
</property>
<property name="plugin-4" type="string" value="pager"/>
<property name="plugin-5" type="string" value="clock"/>
<property name="plugin-6" type="string" value="systray">
</property>
<property name="plugin-7" type="string" value="mixer">
</property>
<property name="plugin-8" type="string" value="showdesktop"/>
<property name="plugin-9" type="string" value="whiskermenu"/>
</property>
</channel>
@@ -0,0 +1,13 @@
--- xsettings-orig.xml 2015-03-02 16:14:44.902524959 +0200
+++ xfsettingsd/xsettings.xml 2015-03-02 16:14:08.013524118 +0200
@@ -6,8 +6,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xsettings" version="1.0">
<property name="Net" type="empty">
- <property name="ThemeName" type="empty"/>
- <property name="IconThemeName" type="empty"/>
+ <property name="ThemeName" type="MediterraneanDark"/>
+ <property name="IconThemeName" type="kfaenza"/>
<property name="DoubleClickTime" type="int" value="400"/>
<property name="DoubleClickDistance" type="int" value="5"/>
<property name="DndDragThreshold" type="int" value="8"/>
@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfwm4" version="1.0">
<property name="general" type="empty">
<property name="activate_action" type="string" value="bring"/>
<property name="borderless_maximize" type="bool" value="true"/>
<property name="box_move" type="bool" value="false"/>
<property name="box_resize" type="bool" value="false"/>
<property name="button_layout" type="string" value="O|SHMC"/>
<property name="button_offset" type="int" value="0"/>
<property name="button_spacing" type="int" value="0"/>
<property name="click_to_focus" type="bool" value="true"/>
<property name="focus_delay" type="int" value="250"/>
<property name="cycle_apps_only" type="bool" value="false"/>
<property name="cycle_draw_frame" type="bool" value="true"/>
<property name="cycle_hidden" type="bool" value="true"/>
<property name="cycle_minimum" type="bool" value="true"/>
<property name="cycle_workspaces" type="bool" value="false"/>
<property name="double_click_time" type="int" value="250"/>
<property name="double_click_distance" type="int" value="5"/>
<property name="double_click_action" type="string" value="maximize"/>
<property name="easy_click" type="string" value="Alt"/>
<property name="focus_hint" type="bool" value="true"/>
<property name="focus_new" type="bool" value="true"/>
<property name="frame_opacity" type="int" value="100"/>
<property name="full_width_title" type="bool" value="true"/>
<property name="inactive_opacity" type="int" value="100"/>
<property name="maximized_offset" type="int" value="0"/>
<property name="move_opacity" type="int" value="100"/>
<property name="placement_ratio" type="int" value="20"/>
<property name="placement_mode" type="string" value="center"/>
<property name="popup_opacity" type="int" value="100"/>
<property name="mousewheel_rollup" type="bool" value="true"/>
<property name="prevent_focus_stealing" type="bool" value="false"/>
<property name="raise_delay" type="int" value="250"/>
<property name="raise_on_click" type="bool" value="true"/>
<property name="raise_on_focus" type="bool" value="false"/>
<property name="raise_with_any_button" type="bool" value="true"/>
<property name="repeat_urgent_blink" type="bool" value="false"/>
<property name="resize_opacity" type="int" value="100"/>
<property name="restore_on_move" type="bool" value="true"/>
<property name="scroll_workspaces" type="bool" value="true"/>
<property name="shadow_delta_height" type="int" value="0"/>
<property name="shadow_delta_width" type="int" value="0"/>
<property name="shadow_delta_x" type="int" value="0"/>
<property name="shadow_delta_y" type="int" value="-3"/>
<property name="shadow_opacity" type="int" value="50"/>
<property name="show_app_icon" type="bool" value="false"/>
<property name="show_dock_shadow" type="bool" value="true"/>
<property name="show_frame_shadow" type="bool" value="false"/>
<property name="show_popup_shadow" type="bool" value="false"/>
<property name="snap_resist" type="bool" value="false"/>
<property name="snap_to_border" type="bool" value="true"/>
<property name="snap_to_windows" type="bool" value="false"/>
<property name="snap_width" type="int" value="10"/>
<property name="theme" type="string" value="MediterraneanDark"/>
<property name="tile_on_move" type="bool" value="true"/>
<property name="title_alignment" type="string" value="center"/>
<property name="title_font" type="string" value="Sans Bold 9"/>
<property name="title_horizontal_offset" type="int" value="0"/>
<property name="title_shadow_active" type="string" value="false"/>
<property name="title_shadow_inactive" type="string" value="false"/>
<property name="title_vertical_offset_active" type="int" value="0"/>
<property name="title_vertical_offset_inactive" type="int" value="0"/>
<property name="toggle_workspaces" type="bool" value="false"/>
<property name="unredirect_overlays" type="bool" value="true"/>
<property name="urgent_blink" type="bool" value="false"/>
<property name="use_compositing" type="bool" value="true"/>
<property name="workspace_count" type="int" value="2"/>
<property name="wrap_cycle" type="bool" value="true"/>
<property name="wrap_layout" type="bool" value="true"/>
<property name="wrap_resistance" type="int" value="10"/>
<property name="wrap_windows" type="bool" value="true"/>
<property name="wrap_workspaces" type="bool" value="false"/>
<property name="workspace_names" type="array">
<value type="string" value="Çalışma Alanı 1"/>
<value type="string" value="Çalışma Alanı 2"/>
<value type="string" value="Çalışma Alanı 3"/>
<value type="string" value="Çalışma Alanı 4"/>
</property>
</property>
</channel>
@@ -0,0 +1,81 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-settings</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<Summary>Xfce settings plugins</Summary>
<Description>Xfce4-settings is a configuration manager for Xfce desktop environment.</Description>
<Archive sha1sum="507a66ed160e44078f81051878c8644d5a5f344e" type="tarbz2">http://archive.xfce.org/src/xfce/xfce4-settings/4.12/xfce4-settings-4.12.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libxklavier-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>libcanberra-devel</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>garcon-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libXcursor-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>upower-devel</Dependency>
<Dependency>libXtst-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>xfce4-settings-xml.patch</Patch>
</Patches>
</Source>
<Package>
<Name>xfce4-settings</Name>
<RuntimeDependencies>
<Dependency>exo</Dependency>
<Dependency>dbus</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>libXi</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>garcon</Dependency>
<Dependency>libX11</Dependency>
<Dependency>upower</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>dbus-glib</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>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/lib/xfce4/settings</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/backgrounds/xfce</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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,20 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure("--prefix=/usr \
--disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "THANKS")
@@ -0,0 +1,49 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-taskmanager</Name>
<Homepage>http://goodies.xfce.org/projects/applications/xfce4-taskmanager</Homepage>
<Packager>
<Name>Alper Tekinalp</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>xfce4_xicon</Icon>
<IsA>app:gui</IsA>
<Summary>Simple taskmanager for the Xfce</Summary>
<Description>Xfce-taskmanager is a small taskmanager based on the Xfce libraries.</Description>
<Archive sha1sum="100e7aa026278da9a106cf9f447e1c92e7382b8e" type="tarbz2">http://archive.xfce.org/src/apps/xfce4-taskmanager/1.0/xfce4-taskmanager-1.0.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gtk2-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-taskmanager</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/applications</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-02</Date>
<Version>1.0.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xfce4-taskmanager</Name>
<Summary xml:lang="tr">Xfce görev yöneticisi</Summary>
<Description xml:lang="tr">Xfce4-taskmanager, Xfce kütüphaneleriyle yazılmış basit bir Xfce görev yöneticisidir.</Description>
</Source>
</PISI>
+32
View File
@@ -0,0 +1,32 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import perlmodules
from pisi.actionsapi import get
def setup():
autotools.configure('--prefix=/usr \
--disable-static \
--disable-gtk-doc \
--with-perl-options=INSTALLDIRS="vendor" \
--disable-debug')
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', 'NEWS', 'README', 'TODO', 'COPYING')
# remove unneeded files
perlmodules.removePodfiles()
+76
View File
@@ -0,0 +1,76 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfconf</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<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="453b1589f242f293c193b0432accd8888964c3ab" type="tarbz2">http://archive.xfce.org/xfce/4.12/src/xfconf-4.12.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>xfce4-dev-tools</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
<!--<Dependency>perl-ExtUtils-Depends</Dependency>
<Dependency>perl-ExtUtils-PkgConfig</Dependency>
<Dependency>perl-Glib</Dependency>
<Dependency>gtk-doc</Dependency>-->
</BuildDependencies>
</Source>
<Package>
<Name>xfconf</Name>
<RuntimeDependencies>
<Dependency>dbus</Dependency>
<Dependency>glib2</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/dbus-1</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 release="current">xfconf</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>dbus-glib-devel</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="1">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--enable-gio-unix \
--enable-thunarx \
--enable-notifications \
--disable-debug")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README", "TODO")
@@ -0,0 +1,51 @@
From 18b8fd4603876baa4d1fe546d9199ac95c30bfc3 Mon Sep 17 00:00:00 2001
From: Eric Koegel <eric.koegel@gmail.com>
Date: Sun, 3 Jun 2012 09:11:29 +0300
Subject: [PATCH] Single click continues to work after logout (Bug #8750)
---
src/xfdesktop-icon-view.c | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
index ef5e869..6c52f6c 100644
--- a/src/xfdesktop-icon-view.c
+++ b/src/xfdesktop-icon-view.c
@@ -63,6 +63,8 @@
#define SCREEN_MARGIN 8
#define DEFAULT_RUBBERBAND_ALPHA 64
+#define SINGLE_CLICK_PROPERTY "/desktop-icons/single-click"
+
#if defined(DEBUG) && DEBUG > 0
#define DUMP_GRID_LAYOUT(icon_view) \
{\
@@ -3372,16 +3374,22 @@ GtkWidget *
xfdesktop_icon_view_new(XfdesktopIconViewManager *manager)
{
XfdesktopIconView *icon_view;
+ XfconfChannel *channel = NULL;
g_return_val_if_fail(XFDESKTOP_IS_ICON_VIEW_MANAGER(manager), NULL);
icon_view = g_object_new(XFDESKTOP_TYPE_ICON_VIEW, NULL);
icon_view->priv->manager = manager;
- icon_view->priv->channel = xfconf_channel_get(XFDESKTOP_CHANNEL);
+ channel = xfconf_channel_get(XFDESKTOP_CHANNEL);
+ icon_view->priv->channel = channel;
- xfconf_g_property_bind(icon_view->priv->channel,
- "/desktop-icons/single-click",
+ /* Set the single_click property before we bind to it */
+ icon_view->priv->single_click = xfconf_channel_get_bool(channel,
+ SINGLE_CLICK_PROPERTY,
+ FALSE);
+ xfconf_g_property_bind(channel,
+ SINGLE_CLICK_PROPERTY,
G_TYPE_BOOLEAN,
G_OBJECT(icon_view),
"single_click");
--
1.7.9.5
+85
View File
@@ -0,0 +1,85 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfdesktop</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>xfce4_xicon1</Icon>
<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="1bb6eaef5e97873e9516b6fb68cf851e1cee95ac" type="tarbz2">http://archive.xfce.org/src/xfce/xfdesktop/4.12/xfdesktop-4.12.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>Thunar-devel</Dependency>
<Dependency>garcon-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>libwnck2-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>libglade-devel</Dependency>
<Dependency>exo-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
<Dependency>xfce4-dev-tools</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">xfdesktop-4.10.0-single-clock.patch</Patch>
</Patches>
</Source>
<Package>
<Name>xfdesktop</Name>
<RuntimeDependencies>
<Dependency>exo</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>pango</Dependency>
<Dependency>cairo</Dependency>
<Dependency>Thunar</Dependency>
<Dependency>garcon</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>libwnck2</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>icon-theme-faenza</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/xfce4/doc</Path>
<Path fileType="data">/usr/share/xfce4</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/backgrounds</Path>
<Path fileType="data">/usr/share/desktop-directories</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-23</Date>
<Version>4.12.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+27
View File
@@ -0,0 +1,27 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
pisitools.dosed("defaults/defaults", "(use_compositing=).*", r"\1true")
autotools.configure("--prefix=/usr \
--disable-static \
--enable-startup-notification \
--enable-randr \
--enable-compositor \
--enable-xsync \
--disable-debug")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COMPOSITOR", "COPYING", "NEWS", "README", "TODO")
+81
View File
@@ -0,0 +1,81 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfwm4</Name>
<Homepage>http://www.xfce.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>xfwm4</Icon>
<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="5c3ea9faaa9b45a40ca7ecfff447cdca192534f6" type="tarbz2">http://archive.xfce.org/src/xfce/xfwm4/4.12/xfwm4-4.12.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>libXrender-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>libXfixes-devel</Dependency>
<Dependency>libXcomposite-devel</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>xfconf-devel</Dependency>
<Dependency>libxfce4util-devel</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>libglade-devel</Dependency>
<Dependency>libwnck2-devel</Dependency>
<Dependency>libXdamage-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfwm4</Name>
<RuntimeDependencies>
<Dependency>libxfce4util</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>startup-notification</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>xfconf</Dependency>
<Dependency>libxfce4util</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libwnck2</Dependency>
<Dependency>libXdamage</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/xfce4/doc</Path>
<Path fileType="data">/usr/share/themes</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/xfwm4</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-03-02</Date>
<Version>4.12.0</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@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>
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>desktop.xfce</Name>
</PISI>
+1444
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
2aa8c61129dc2d7caf195f9edbbc1a847e192b4c
26fa681ad5ae0ff7329f5a419185807bb60fe42e
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
dfea5cda20b031bbdac15792f3f92c9b6a2cbe3f
930f35c0039a671a6a1c5a42195addf12ee5c06e