add new packages bleachbit,eboard,gnuchess,gnuchess-book.gweled,pogo
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
<PISI>
|
||||
<Name>game.board</Name>
|
||||
</PISI>
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import libtools
|
||||
|
||||
def setup():
|
||||
libtools.libtoolize("--copy --force")
|
||||
|
||||
autotools.configure("--man-prefix=/usr/share/man --extra-libs=dl --prefix=/usr")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.insinto("/usr/share/pixmaps", "icon-eboard.xpm")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README", "TODO")
|
||||
@@ -0,0 +1,22 @@
|
||||
--- configure.old 2009-02-03 14:46:21.000000000 +0100
|
||||
+++ configure 2009-02-03 14:48:13.000000000 +0100
|
||||
@@ -638,7 +638,7 @@
|
||||
|
||||
print CONFIGMAKE "CXX = $cxx\n";
|
||||
print CONFIGMAKE "CXXFLAGS = @cxxflags\n";
|
||||
-print CONFIGMAKE "LDFLAGS = @ldflags\n";
|
||||
+print CONFIGMAKE "LDLIBS = @ldflags\n";
|
||||
|
||||
print CONFIGMAKE "prefix = \${DESTDIR}$prefix\n";
|
||||
print CONFIGMAKE "bindir = \${DESTDIR}$prefix/bin\n";
|
||||
--- elifekam.old 2009-02-03 14:48:43.000000000 +0100
|
||||
+++ elifekam 2009-02-03 14:48:58.000000000 +0100
|
||||
@@ -24,7 +24,7 @@
|
||||
all: eboard nls-dicts
|
||||
|
||||
eboard: $(OBJS)
|
||||
- $(CXX) $(LDFLAGS) -o eboard $(OBJS)
|
||||
+ $(CXX) $(LDFLAGS) -o eboard $(OBJS) $(LDLIBS)
|
||||
|
||||
.cc.o: $< $(HEADERS) $(XPMS)
|
||||
$(CXX) $(CXXFLAGS) -c $< -o $@
|
||||
@@ -0,0 +1,11 @@
|
||||
--- ntext.cc
|
||||
+++ ntext.cc
|
||||
@@ -244,7 +244,7 @@
|
||||
return;
|
||||
}
|
||||
|
||||
- p = strchr(text, '\n');
|
||||
+ p = strchr((char *)text, '\n');
|
||||
if (p!=NULL) {
|
||||
*p = 0;
|
||||
i = strlen(text);
|
||||
@@ -0,0 +1,16 @@
|
||||
--- cimg.cc
|
||||
+++ cimg.cc
|
||||
@@ -94,11 +95,11 @@
|
||||
ct == PNG_COLOR_TYPE_GRAY_ALPHA)
|
||||
png_set_gray_to_rgb(pngp);
|
||||
|
||||
- alloc(pngp->width,pngp->height);
|
||||
+ alloc(width,height);
|
||||
if (!ok) { fclose(f); return; }
|
||||
ok = 0;
|
||||
|
||||
- for(i=0;i<pngp->height;i++) {
|
||||
+ for(i=0;i<height;i++) {
|
||||
png_read_row(pngp, (png_bytep) (&data[i*rowlen]), NULL);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
--- proto_xboard.cc.old 2010-11-03 16:42:15.000000000 +0100
|
||||
+++ proto_xboard.cc 2010-11-03 16:43:14.000000000 +0100
|
||||
@@ -1084,7 +1084,7 @@
|
||||
snprintf(EngineCommandLine,512,"crafty bookpath=%s logpath=%s tbpath=%s",
|
||||
BookPath,LogPath,LogPath);
|
||||
if (!global.env.Home.empty())
|
||||
- snprintf(EngineRunDir,512,"%s/.eboard/craftylog",global.env.Home.c_str());
|
||||
+ snprintf(EngineRunDir, sizeof(EngineRunDir), "%s/.eboard/craftylog", global.env.Home.c_str());
|
||||
else
|
||||
strcpy(EngineRunDir,"/tmp");
|
||||
|
||||
--- util.cc.old 2010-11-03 16:42:24.000000000 +0100
|
||||
+++ util.cc 2010-11-03 16:43:42.000000000 +0100
|
||||
@@ -783,7 +783,7 @@
|
||||
int i,n;
|
||||
char cmd[1024];
|
||||
|
||||
- n = snprintf(tmpfile,1024,"/tmp/eb%d-%s",(int) getpid(), origfile);
|
||||
+ n = snprintf(tmpfile, sizeof(tmpfile), "/tmp/eb%d-%s", (int) getpid(), origfile);
|
||||
|
||||
if (n >= 1024) {
|
||||
failure = 1;
|
||||
@@ -0,0 +1,12 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=eboard
|
||||
Comment="Chess Game"
|
||||
Comment[tr]="Satranç Oyunu"
|
||||
GenericName=Chess Game
|
||||
GenericName[tr]=Satranç Oyunu
|
||||
Exec=eboard
|
||||
Icon=icon-eboard
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Game;BoardGame;
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>eboard</Name>
|
||||
<Homepage>http://www.bergo.eng.br/eboard/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>eboard</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>A GTK+ chess board</Summary>
|
||||
<Description>eboard is a chess interface for Unix-like systems based on the GTK+ GUI toolkit.</Description>
|
||||
<Archive sha1sum="029cf1e7503fc2a862b9880da9ea6ab91e5614cd" type="tarbz2">mirrors://sourceforge/eboard/eboard-1.1.1.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>eboard-1.1.1-as-needed.patch</Patch>
|
||||
<Patch>eboard-1.1.1-gcc44.patch</Patch>
|
||||
<Patch>eboard-1.1.1-ovflfix.patch</Patch>
|
||||
<Patch>eboard-1.1.1-libpng15.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>eboard</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/eboard</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/eboard.desktop">eboard.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>1.1.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>eboard</Name>
|
||||
<Summary xml:lang="tr">Gtk tabanlı satranç arayüzü</Summary>
|
||||
<Description xml:lang="tr">eboard; unix sistemleri için, gtk+ araç takımı kullanılarak yazılmış bir satranç arayüzüdür. </Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def build():
|
||||
shelltools.system("gnuchess --addbook=book_1.02.pgn")
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/usr/share/games/gnuchess/", "book.bin")
|
||||
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gnuchess-book</Name>
|
||||
<Homepage>http://www.gnu.org/software/chess/chess.html</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>data</IsA>
|
||||
<Summary>Opening book for GNU Chess</Summary>
|
||||
<Description>Contains opening book (set of movesets to be played at the beginning of the game) for GNU Chess.</Description>
|
||||
<Archive sha1sum="9b54f699b919f7f93b97a829764554fa2b7da3a1" type="gzip">mirrors://gnu/chess/book_1.02.pgn.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gnuchess</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gnuchess-book</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gnuchess</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/games/gnuchess</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>1.01</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gnuchess-book</Name>
|
||||
<Summary xml:lang="tr">GNU Chess için açılış kitabı</Summary>
|
||||
<Description xml:lang="tr">GNU Chess oyununun açılış kitabını (sıralanmış açılış hamleleri kümesi) içerir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.export("CC", get.CC())
|
||||
autotools.configure("--disable-dependency-tracking --enable-readline")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.removeDir("/usr/share/locale/")
|
||||
|
||||
pisitools.dodoc("ChangeLog", "NEWS", "TODO", "README")
|
||||
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gnuchess</Name>
|
||||
<Homepage>http://www.gnu.org/software/chess/chess.html</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Console based chess interface</Summary>
|
||||
<Description>GNU Chess lets most modern computers play a full game of chess. It has a plain terminal interface but supports visual interfaces such as X-Windows xboard.</Description>
|
||||
<Archive sha1sum="2dfc9eed04e51c4a57a5f8ea885234aac0269dd1" type="targz">mirrors://gnu/chess/gnuchess-6.2.4.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gnuchess</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/info</Path>
|
||||
<Path fileType="data">/usr/share/games</Path>
|
||||
<Path fileType="data">/usr/share/gnuchess</Path>
|
||||
<Path fileType="man">/usr/share/man/man1</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>6.2.4</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gnuchess</Name>
|
||||
<Summary xml:lang="tr">Konsol tabanlı bir satranç programı</Summary>
|
||||
<Description xml:lang="tr">GNU Chess, konsolda oynanan bir satranç oyunudur. XBoard gibi grafik arayüzleri de destekler.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure("--with-scores-group=users \
|
||||
--with-scores-user=root")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.domove("/var/games/gweled.Normal.scores", "/var/state/gweled/")
|
||||
pisitools.domove("/var/games/gweled.Timed.scores", "/var/state/gweled/")
|
||||
pisitools.removeDir("/var/games")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "ChangeLog", "COPYING")
|
||||
@@ -0,0 +1,11 @@
|
||||
--- gweled-0.9.1/src/games-setgid-io.c.open 2011-04-04 12:04:00.000000000 +0200
|
||||
+++ gweled-0.9.1/src/games-setgid-io.c 2011-04-04 12:19:15.000000000 +0200
|
||||
@@ -212,7 +212,7 @@ setgid_io_open_priv (int outfd, int infd
|
||||
read_n_bytes (infd, path, length);
|
||||
flags = read_int (infd);
|
||||
|
||||
- newfd = open (path, flags);
|
||||
+ newfd = open (path, flags,S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH);
|
||||
|
||||
write_int (outfd, newfd);
|
||||
g_free (path);
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,205 @@
|
||||
Index: gweled-0.9.1/po/tr.po
|
||||
===================================================================
|
||||
--- gweled-0.9.1.orig/po/tr.po
|
||||
+++ gweled-0.9.1/po/tr.po
|
||||
@@ -9,7 +9,7 @@ msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-05-02 12:58+0300\n"
|
||||
"PO-Revision-Date: 2011-01-12 04:41+0000\n"
|
||||
-"Last-Translator: Daniele Napolitano <dnax88@gmail.com>\n"
|
||||
+"Last-Translator: Gökhan Özbulak <gozbulak@pardus.org.tr>\n"
|
||||
"Language-Team: Turkish <tr@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -33,8 +33,7 @@ msgstr "Oyun bitti!"
|
||||
|
||||
#: ../src/main.c:282
|
||||
msgid "Great work, but unfortunately your score did not make the top ten."
|
||||
-msgstr ""
|
||||
-"Çok iyi iş çıkardınız, ancak puanınız en iyi on listesinde yer bulamadı."
|
||||
+msgstr "Çok iyi iş çıkardınız, ancak puanınız en iyi on listesinde yer bulamadı."
|
||||
|
||||
#: ../src/main.c:284
|
||||
msgid "_New Game"
|
||||
@@ -42,7 +41,7 @@ msgstr "_Yeni Oyun"
|
||||
|
||||
#: ../src/main.c:296
|
||||
msgid "Gweled Scores"
|
||||
-msgstr ""
|
||||
+msgstr "Gweled Puanları"
|
||||
|
||||
#: ../src/main.c:299
|
||||
msgid "Game type:"
|
||||
@@ -54,7 +53,7 @@ msgstr "Tebrikler!"
|
||||
|
||||
#: ../src/main.c:307
|
||||
msgid "Your score is the best!"
|
||||
-msgstr "En iyi skor sizinki!"
|
||||
+msgstr "En iyi puan sizinki!"
|
||||
|
||||
#: ../src/main.c:308
|
||||
msgid "Your score has made the top ten."
|
||||
@@ -62,38 +61,38 @@ msgstr "Puanınız en iyi on listesine g
|
||||
|
||||
#: ../src/main.c:397
|
||||
msgid "Get as many point as you can. The game ends if you out of moves."
|
||||
-msgstr ""
|
||||
+msgstr "Alabileceğiniz en iyi puanı elde edin. Oyun, hareket yapamaz hale geldiğinizde sona erir."
|
||||
|
||||
#: ../src/main.c:399
|
||||
msgid "Get as many points as you can, but you are limited on time."
|
||||
-msgstr ""
|
||||
+msgstr "Alabileceğiniz en iyi puanı elde edin. Unutmayın, zamana karşı oynuyorsunuz!"
|
||||
|
||||
#: ../src/main.c:401
|
||||
msgid "Game will never end. Your scores will not be registered."
|
||||
-msgstr ""
|
||||
+msgstr "Oyun hiç bitmeyecek. Puanınız kaydedilmeyecek."
|
||||
|
||||
#: ../src/main.c:461
|
||||
msgid "There is a game saved, do you want restore it?"
|
||||
-msgstr ""
|
||||
+msgstr "Kaydedilmiş bir oyun mevcut, geri yükleyip devam etmek ister misiniz?"
|
||||
|
||||
#: ../src/callbacks.c:74
|
||||
msgid "Do you really want to abort this game?"
|
||||
-msgstr ""
|
||||
+msgstr "Oyundan çıkmak istediğinize emin misiniz?"
|
||||
|
||||
#: ../src/callbacks.c:139
|
||||
msgid "Do you want to save the current game?"
|
||||
-msgstr ""
|
||||
+msgstr "Oyunu kaydetmek istiyor musunuz?"
|
||||
|
||||
#: ../src/callbacks.c:173
|
||||
msgid "translator-credits"
|
||||
-msgstr ""
|
||||
+msgstr "Çeviriciler"
|
||||
"Launchpad Contributions:\n"
|
||||
" Daniele Napolitano https://launchpad.net/~dnax88\n"
|
||||
" zeugma https://launchpad.net/~sunder67"
|
||||
|
||||
#: ../src/callbacks.c:178
|
||||
msgid "A puzzle game with gems"
|
||||
-msgstr ""
|
||||
+msgstr "Taşlarla yapılan bir yap-boz oyunu"
|
||||
|
||||
#: ../src/board_engine.c:505
|
||||
msgid "_Resume"
|
||||
@@ -101,87 +100,87 @@ msgstr "_Devam Et"
|
||||
|
||||
#: ../src/board_engine.c:506
|
||||
msgid "paused"
|
||||
-msgstr "duraklatıldı"
|
||||
+msgstr "beklemede"
|
||||
|
||||
#: ../src/board_engine.c:508
|
||||
msgid "Paused"
|
||||
-msgstr "Duraklatıldı"
|
||||
+msgstr "Beklemede"
|
||||
|
||||
#: ../src/board_engine.c:521 ../data/gweled.ui.h:17
|
||||
msgid "_Pause"
|
||||
-msgstr "_Duraklat"
|
||||
+msgstr "_Beklet"
|
||||
|
||||
#: ../src/board_engine.c:829 ../src/board_engine.c:902
|
||||
#: ../src/board_engine.c:1004
|
||||
#, c-format
|
||||
msgid "Level %d"
|
||||
-msgstr ""
|
||||
+msgstr "Aşama %d"
|
||||
|
||||
#. Note that this assumes the default style is plain.
|
||||
#: ../src/games-scores-dialog.c:118 ../src/games-scores-dialog.c:545
|
||||
msgid "Score"
|
||||
-msgstr ""
|
||||
+msgstr "Puan"
|
||||
|
||||
#: ../src/games-scores-dialog.c:437
|
||||
msgid "New Game"
|
||||
-msgstr ""
|
||||
+msgstr "Yeni Oyun"
|
||||
|
||||
#: ../src/games-scores-dialog.c:537
|
||||
msgid "Name"
|
||||
-msgstr ""
|
||||
+msgstr "İsim"
|
||||
|
||||
#. FIXME: There is basically no range checking.
|
||||
#: ../data/gweled.ui.h:1
|
||||
msgid "<b>Endless</b>"
|
||||
-msgstr ""
|
||||
+msgstr "<b>Süresiz</b>"
|
||||
|
||||
#: ../data/gweled.ui.h:2
|
||||
msgid "<b>Normal</b>"
|
||||
-msgstr ""
|
||||
+msgstr "<b>Normal</b>"
|
||||
|
||||
#: ../data/gweled.ui.h:3
|
||||
msgid "<b>Timed</b>"
|
||||
-msgstr ""
|
||||
+msgstr "Süreli"
|
||||
|
||||
#: ../data/gweled.ui.h:4
|
||||
msgid "<span size=\"x-large\" weight=\"bold\">Welcome on Gweled!</span>"
|
||||
-msgstr ""
|
||||
+msgstr "<span size=\"x-large\" weight=\"bold\">Gweled'e Hoşgeldiniz!</span>"
|
||||
|
||||
#: ../data/gweled.ui.h:5
|
||||
msgid "<span weight=\"bold\">Board size</span>"
|
||||
-msgstr ""
|
||||
+msgstr "<span weight=\"bold\">Tahta boyutu</span>"
|
||||
|
||||
#: ../data/gweled.ui.h:6
|
||||
msgid "<span weight=\"bold\">Sound</span>"
|
||||
-msgstr ""
|
||||
+msgstr "<span weight=\"bold\">Ses</span>"
|
||||
|
||||
#: ../data/gweled.ui.h:7
|
||||
msgid "Large"
|
||||
-msgstr ""
|
||||
+msgstr "Büyük"
|
||||
|
||||
#: ../data/gweled.ui.h:8
|
||||
msgid "Medium"
|
||||
-msgstr ""
|
||||
+msgstr "Orta"
|
||||
|
||||
#: ../data/gweled.ui.h:9
|
||||
msgid "Pauses the game for you can return to it later"
|
||||
-msgstr ""
|
||||
+msgstr "Sonradan geri dönebilmek için oyunu beklemeye alır"
|
||||
|
||||
#: ../data/gweled.ui.h:10
|
||||
msgid "Play background music"
|
||||
-msgstr ""
|
||||
+msgstr "Arkaplan müziğini aç"
|
||||
|
||||
#: ../data/gweled.ui.h:11
|
||||
msgid "Play sound effects"
|
||||
-msgstr ""
|
||||
+msgstr "Ses efektlerini aç"
|
||||
|
||||
#: ../data/gweled.ui.h:12
|
||||
msgid "Preferences"
|
||||
-msgstr ""
|
||||
+msgstr "Tercihler"
|
||||
|
||||
#: ../data/gweled.ui.h:13
|
||||
msgid "Score:"
|
||||
-msgstr ""
|
||||
+msgstr "Puan:"
|
||||
|
||||
#: ../data/gweled.ui.h:14
|
||||
msgid "Small"
|
||||
@@ -205,7 +204,7 @@ msgstr "_Ayarlar"
|
||||
|
||||
#: ../data/gweled.desktop.in.h:1
|
||||
msgid "Play a puzzle game similar to \"Diamond Mine\""
|
||||
-msgstr ""
|
||||
+msgstr "\"Elmas Madeni\"'ne benzer bir yap-boz oyunu oynayın"
|
||||
|
||||
#~ msgid "Highscores"
|
||||
#~ msgstr "Yüksek Puanlar"
|
||||
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gweled</Name>
|
||||
<Homepage>http://www.gweled.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Alper Tekinalp</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>gweled</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>A puzzle game similar to "Bejeweled" or "Diamond Mine"</Summary>
|
||||
<Description>Gweled is a GTK+ version of a popular PalmOS/Windows/Java game called "Bejeweled", originally written by Sebastien Delestaing. The aim of the game is to make alignment of 3 or more gems, both vertically or horizontally by swapping adjacent gems.</Description>
|
||||
<Archive sha1sum="ff4a59935c9e1eb4a202e723baabaab39f526714" type="targz">http://launchpad.net/gweled/trunk/0.9.1/+download/gweled-0.9.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>librsvg-devel</Dependency>
|
||||
<Dependency>libmikmod-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">gweled-0.9.1-fix-open.patch</Patch>
|
||||
<Patch level="1">translate-paused-string.patch</Patch>
|
||||
<Patch level="1">turkish.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gweled</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>librsvg</Dependency>
|
||||
<Dependency>libmikmod</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="data">/var/state/gweled</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>0.9.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gweled</Name>
|
||||
<Summary xml:lang="tr">"Bejeweled" veya "Diamond Mine" benzeri bir bulmaca oyunu</Summary>
|
||||
<Description xml:lang="tr">Gweled, orijinal olarak Sebastien Delestaing tarafından yazılmış, "Bejeweled" olarak bilinen popüler PalmOS/Windows/Java oyununun GTK+ versiyonudur. Oyunun amacı 3 veya daha çok mücevheri yatay veya dikey olarak aynı hizaya getirmektir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
pisitools.dosed("Makefile", "(cat pogo.py) \| \$\(CONFIGURE_IN\)( > pogo;)", r"\1\2")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
pisitools.dodoc("NEWS.md", "README.md")
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pogo</Name>
|
||||
<Homepage>https://launchpad.net/pogo</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Probably the simplest and fastest audio player for Linux.</Summary>
|
||||
<Description>Pogo's elementary-inspired design uses the screen-space very efficiently. It is especially well-suited for people who organize their music by albums on the harddrive. The main interface components are a directory tree and a playlist that groups albums in an innovative way.Supported file formats include Ogg Vorbis, MP3, FLAC, Musepack, Wavpack, and MPEG-4 AAC. Pogo is a fork of Decibel Audio Player.</Description>
|
||||
<Archive sha1sum="2da5f9eb29672b777e63497f0f811d472a8cfad0" type="targz">https://github.com/jendrikseipp/pogo/archive/v0.8.7.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>pogo</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>python-gtk</Dependency>
|
||||
<Dependency>python-mutagen</Dependency>
|
||||
<Dependency>python-imaging</Dependency>
|
||||
<Dependency>gst-python</Dependency>
|
||||
<Dependency>notify-python</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
<Dependency>gst-plugins-good</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2016-08-06</Date>
|
||||
<Version>0.8.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-16</Date>
|
||||
<Version>0.8.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-12-22</Date>
|
||||
<Version>0.8.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pogo</Name>
|
||||
<Summary xml:lang="en">Probably the simplest and fastest audio player for Linux.</Summary>
|
||||
<Description xml:lang="en">Pogo's elementary-inspired design uses the screen-space very efficiently. It is especially well-suited for people who organize their music by albums on the harddrive. The main interface components are a directory tree and a playlist that groups albums in an innovative way.Supported file formats include Ogg Vorbis, MP3, FLAC, Musepack, Wavpack, and MPEG-4 AAC. Pogo is a fork of Decibel Audio Player.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+301
-39
@@ -29782,6 +29782,206 @@
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>gnuchess</Name>
|
||||
<Homepage>http://www.gnu.org/software/chess/chess.html</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>game.board</PartOf>
|
||||
<Summary xml:lang="en">Console based chess interface</Summary>
|
||||
<Summary xml:lang="tr">Konsol tabanlı bir satranç programı</Summary>
|
||||
<Description xml:lang="en">GNU Chess lets most modern computers play a full game of chess. It has a plain terminal interface but supports visual interfaces such as X-Windows xboard.</Description>
|
||||
<Description xml:lang="tr">GNU Chess, konsolda oynanan bir satranç oyunudur. XBoard gibi grafik arayüzleri de destekler.</Description>
|
||||
<Archive type="targz" sha1sum="2dfc9eed04e51c4a57a5f8ea885234aac0269dd1">mirrors://gnu/chess/gnuchess-6.2.4.tar.gz</Archive>
|
||||
<SourceURI>game/board/gnuchess/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>gnuchess</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/info</Path>
|
||||
<Path fileType="data">/usr/share/games</Path>
|
||||
<Path fileType="data">/usr/share/gnuchess</Path>
|
||||
<Path fileType="man">/usr/share/man/man1</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>6.2.4</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>eboard</Name>
|
||||
<Homepage>http://www.bergo.eng.br/eboard/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>game.board</PartOf>
|
||||
<Summary xml:lang="en">A GTK+ chess board</Summary>
|
||||
<Summary xml:lang="tr">Gtk tabanlı satranç arayüzü</Summary>
|
||||
<Description xml:lang="en">eboard is a chess interface for Unix-like systems based on the GTK+ GUI toolkit.</Description>
|
||||
<Description xml:lang="tr">eboard; unix sistemleri için, gtk+ araç takımı kullanılarak yazılmış bir satranç arayüzüdür. </Description>
|
||||
<Icon>eboard</Icon>
|
||||
<Archive type="tarbz2" sha1sum="029cf1e7503fc2a862b9880da9ea6ab91e5614cd">mirrors://sourceforge/eboard/eboard-1.1.1.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>eboard-1.1.1-as-needed.patch</Patch>
|
||||
<Patch>eboard-1.1.1-gcc44.patch</Patch>
|
||||
<Patch>eboard-1.1.1-ovflfix.patch</Patch>
|
||||
<Patch>eboard-1.1.1-libpng15.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>game/board/eboard/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>eboard</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/eboard</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/eboard.desktop" permission="0644" owner="root">eboard.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>1.1.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>gweled</Name>
|
||||
<Homepage>http://www.gweled.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Alper Tekinalp</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>game.board</PartOf>
|
||||
<Summary xml:lang="en">A puzzle game similar to "Bejeweled" or "Diamond Mine"</Summary>
|
||||
<Summary xml:lang="tr">"Bejeweled" veya "Diamond Mine" benzeri bir bulmaca oyunu</Summary>
|
||||
<Description xml:lang="en">Gweled is a GTK+ version of a popular PalmOS/Windows/Java game called "Bejeweled", originally written by Sebastien Delestaing. The aim of the game is to make alignment of 3 or more gems, both vertically or horizontally by swapping adjacent gems.</Description>
|
||||
<Description xml:lang="tr">Gweled, orijinal olarak Sebastien Delestaing tarafından yazılmış, "Bejeweled" olarak bilinen popüler PalmOS/Windows/Java oyununun GTK+ versiyonudur. Oyunun amacı 3 veya daha çok mücevheri yatay veya dikey olarak aynı hizaya getirmektir.</Description>
|
||||
<Icon>gweled</Icon>
|
||||
<Archive type="targz" sha1sum="ff4a59935c9e1eb4a202e723baabaab39f526714">http://launchpad.net/gweled/trunk/0.9.1/+download/gweled-0.9.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>librsvg-devel</Dependency>
|
||||
<Dependency>libmikmod-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">gweled-0.9.1-fix-open.patch</Patch>
|
||||
<Patch level="1">translate-paused-string.patch</Patch>
|
||||
<Patch level="1">turkish.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>game/board/gweled/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>gweled</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>librsvg</Dependency>
|
||||
<Dependency>libmikmod</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="data">/var/state/gweled</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>0.9.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>gnuchess-book</Name>
|
||||
<Homepage>http://www.gnu.org/software/chess/chess.html</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>data</IsA>
|
||||
<PartOf>game.board</PartOf>
|
||||
<Summary xml:lang="en">Opening book for GNU Chess</Summary>
|
||||
<Summary xml:lang="tr">GNU Chess için açılış kitabı</Summary>
|
||||
<Description xml:lang="en">Contains opening book (set of movesets to be played at the beginning of the game) for GNU Chess.</Description>
|
||||
<Description xml:lang="tr">GNU Chess oyununun açılış kitabını (sıralanmış açılış hamleleri kümesi) içerir.</Description>
|
||||
<Archive type="gzip" sha1sum="9b54f699b919f7f93b97a829764554fa2b7da3a1">mirrors://gnu/chess/book_1.02.pgn.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gnuchess</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>game/board/gnuchess-book/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>gnuchess-book</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gnuchess</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/games/gnuchess</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>1.01</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>pinentry</Name>
|
||||
@@ -30811,6 +31011,47 @@
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>bleachbit</Name>
|
||||
<Homepage>http://bleachbit.sourceforge.net</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>util.misc</PartOf>
|
||||
<Summary xml:lang="en">Deletes unneeded files to free disk space and maintain privacy.</Summary>
|
||||
<Description xml:lang="en">BleachBit quickly frees disk space and tirelessly guards your privacy. Free cache, delete cookies, clear Internet history, shred temporary files, delete logs, and discard junk you didn't know was there.</Description>
|
||||
<Archive type="tarbz2" sha1sum="36e73fbed16ea215b5bcb94dd1f71648c8a57b3a">https://sourceforge.net/projects/bleachbit/files/bleachbit/1.12/bleachbit-1.12.tar.bz2</Archive>
|
||||
<SourceURI>util/misc/bleachbit/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>bleachbit</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-gtk</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/bleachbit/cleaners</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>1.12</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>mc</Name>
|
||||
@@ -95859,6 +96100,66 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>pogo</Name>
|
||||
<Homepage>https://launchpad.net/pogo</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>multimedia.sound</PartOf>
|
||||
<Summary xml:lang="en">Probably the simplest and fastest audio player for Linux.</Summary>
|
||||
<Description xml:lang="en">Pogo's elementary-inspired design uses the screen-space very efficiently. It is especially well-suited for people who organize their music by albums on the harddrive. The main interface components are a directory tree and a playlist that groups albums in an innovative way.Supported file formats include Ogg Vorbis, MP3, FLAC, Musepack, Wavpack, and MPEG-4 AAC. Pogo is a fork of Decibel Audio Player.</Description>
|
||||
<Archive type="targz" sha1sum="2da5f9eb29672b777e63497f0f811d472a8cfad0">https://github.com/jendrikseipp/pogo/archive/v0.8.7.tar.gz</Archive>
|
||||
<SourceURI>multimedia/sound/pogo/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>pogo</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>python-gtk</Dependency>
|
||||
<Dependency>python-mutagen</Dependency>
|
||||
<Dependency>python-imaging</Dependency>
|
||||
<Dependency>gst-python</Dependency>
|
||||
<Dependency>notify-python</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
<Dependency>gst-plugins-good</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2016-08-06</Date>
|
||||
<Version>0.8.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-16</Date>
|
||||
<Version>0.8.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-12-22</Date>
|
||||
<Version>0.8.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>speex</Name>
|
||||
@@ -121286,45 +121587,6 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<Package>
|
||||
<Name>plasma-applet-system-panel</Name>
|
||||
<Summary xml:lang="en">Plasma5 applet that displays a panel with a set of system actions</Summary>
|
||||
<Description xml:lang="en">Plasma5 applet that displays a panel with a set of system actions</Description>
|
||||
<PartOf>unknown</PartOf>
|
||||
<License>GPL</License>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>plasma-workspace</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-23</Date>
|
||||
<Version>1.3</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<BuildHost>localhost</BuildHost>
|
||||
<Distribution>PisiLinux</Distribution>
|
||||
<DistributionRelease>2.0</DistributionRelease>
|
||||
<Architecture>x86_64</Architecture>
|
||||
<InstalledSize>91036</InstalledSize>
|
||||
<PackageSize>19471</PackageSize>
|
||||
<PackageHash>0149cca2122cbee9c92ddece8f482258f9bc44ef</PackageHash>
|
||||
<InstallTarHash>da39a3ee5e6b4b0d3255bfef95601890afd80709</InstallTarHash>
|
||||
<PackageURI>desktop/kde/addon/plasma-applet-system-panel/plasma-applet-system-panel-1.3-1-p2-x86_64.pisi</PackageURI>
|
||||
<PackageFormat>1.2</PackageFormat>
|
||||
<Source>
|
||||
<Name>plasma-applet-system-panel</Name>
|
||||
<Homepage>https://github.com/Musikolo/plasma5-applets-system-panel</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
</Source>
|
||||
</Package>
|
||||
<Component>
|
||||
<Name>system</Name>
|
||||
<LocalName xml:lang="en">FIXME</LocalName>
|
||||
|
||||
@@ -1 +1 @@
|
||||
d59b0a794e2bfed6631f2295966577639496cf11
|
||||
98ba78d9cf2f38a7d9fbb110d1408be1ee17b018
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
d0037bd58b0341743244505153d20c70e562e6ba
|
||||
acd2dbc37d8c492884587d6199ce3dc2d17d12b5
|
||||
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
for lc in shelltools.ls("po/*.po"): pisitools.domo(lc, lc[3:-3], 'bleachbit.mo')
|
||||
shelltools.chmod('%s/usr/lib/python2.7/site-packages/bleachbit/CLI.py' % get.installDIR(), mode = 0755)
|
||||
pisitools.dosym('/usr/lib/python2.7/site-packages/bleachbit/CLI.py', '/usr/bin/bleachbit_cli')
|
||||
shelltools.chmod('%s/usr/lib/python2.7/site-packages/bleachbit/GUI.py' % get.installDIR(), mode = 0755)
|
||||
pisitools.dosym('/usr/lib/python2.7/site-packages/bleachbit/GUI.py', '/usr/bin/bleachbit')
|
||||
pisitools.insinto('/usr/share/applications/', 'bleachbit.desktop')
|
||||
pisitools.insinto('/usr/share/pixmaps/', 'bleachbit.png')
|
||||
pisitools.insinto('/usr/share/bleachbit/cleaners', 'cleaners/*.xml')
|
||||
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>bleachbit</Name>
|
||||
<Homepage>http://bleachbit.sourceforge.net</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<Summary>Deletes unneeded files to free disk space and maintain privacy.</Summary>
|
||||
<Description>BleachBit quickly frees disk space and tirelessly guards your privacy. Free cache, delete cookies, clear Internet history, shred temporary files, delete logs, and discard junk you didn't know was there.</Description>
|
||||
<License>GPLv3</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Archive sha1sum="36e73fbed16ea215b5bcb94dd1f71648c8a57b3a" type="tarbz2">https://sourceforge.net/projects/bleachbit/files/bleachbit/1.12/bleachbit-1.12.tar.bz2</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>bleachbit</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-gtk</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/bleachbit/cleaners</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-12-04</Date>
|
||||
<Version>1.12</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>bleachbit</Name>
|
||||
<Summary xml:lang="de">BleachBit befreit den PC von überflüssigen Dateien</Summary>
|
||||
<Description xml:lang="de">BleachBit BleachBit befreit den PC von überflüssigen Dateien, die Speicherplatz belegen aber nicht mehr gebraucht werden. Zudem sorgt BleachBit durch das Entfernen privater Surfspuren für den Schutz Ihrer Privatsphäre. Neben dem Aufspüren von Log- und temporären Dateien kennt BleachBit rund 70 verschiedene Anwendungen und kann etwa deren Verlauf (History), Cookies oder Cache per Mausklick löschen.</Description>
|
||||
<Summary xml:lang="tr">Bilgisayar Temizleyici</Summary>
|
||||
<Description xml:lang="tr">BleachBit,bilgisayarınızın gizliliğini korumak için çerezler,geçici dosyalar ve önbelleği temizleyerek internette güvenli gezinme sağlar.</Description>
|
||||
<Summary xml:lang="en">BleachBit frees the PC from unnecessary files</Summary>
|
||||
<Description xml:lang="en">BleachBit frees the PC from unnecessary files, but do not occupy more space is needed. BleachBit also provides private surf by removing traces to protect your privacy. In addition to the detection of log and temporary files BleachBit knows about 70 different applications and can be about their history (History), cookies or cache delete mouse.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user