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>
|
||||
Reference in New Issue
Block a user