abe openvpn timesift first release

This commit is contained in:
erkanisik
2021-05-10 14:54:38 +03:00
parent f73f51e77a
commit 33626f7ec4
20 changed files with 629 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
#!/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
import os
datadir = "/usr/share/abe"
def fixperms(d):
for root, dirs, files in os.walk(d):
for name in dirs:
shelltools.chmod(os.path.join(root, name), 0755)
for name in files:
shelltools.chmod(os.path.join(root, name), 0644)
def setup():
shelltools.system("./autogen.sh")
autotools.configure("-with-data-dir=%s" % datadir)
def build():
autotools.make()
def install():
pisitools.dodir(datadir)
pisitools.dobin("src/abe")
for d in ["images", "sounds", "maps"]:
fixperms(d)
shelltools.copytree(d, "%s/%s/" % (get.installDIR(), datadir))
pisitools.dodoc("AUTHORS", "ChangeLog", "README*")
@@ -0,0 +1,12 @@
diff -Naur --exclude '*.swp' abe-1.1/src/Menu.c abe-1.1.new/src/Menu.c
--- abe-1.1/src/Menu.c 2005-03-05 08:20:04.000000000 -0800
+++ abe-1.1.new/src/Menu.c 2006-04-02 15:04:37.000000000 -0700
@@ -116,7 +116,7 @@
if(n == SOUND_ENABLED || n == MUSIC_ENABLED)
return sound_loaded;
else
- return 0;
+ return 1;
}
void
+13
View File
@@ -0,0 +1,13 @@
[Desktop Entry]
Type=Application
Version=1.0
Encoding=UTF-8
Name=Abe
Name[tr]=Abe
GenericName=Abe
GenericName[tr]=Abe
Icon=/usr/share/pixmaps/abe.png
Exec=abe --window --size-6
Terminal=false
StartupNotify=false
Categories=Application;Game;ArcadeGame;
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

+12
View File
@@ -0,0 +1,12 @@
diff -Nur abe-1.1-old/configure.in abe-1.1/configure.in
--- abe-1.1-old/configure.in 2006-10-01 03:08:22.866256583 +0300
+++ abe-1.1/configure.in 2006-10-01 03:08:45.307844943 +0300
@@ -52,8 +52,6 @@
dnl General options
dnl --------------------------------------------------------------------------
TR_CPPFLAGS=""
-TR_CFLAGS="-O2 -Wall -fomit-frame-pointer -ffast-math -fexpensive-optimizations"
-TR_CXXFLAGS="-O2 -Wall -fomit-frame-pointer -ffast-math -fexpensive-optimizations"
TR_LIBS=""
case "$host" in
+55
View File
@@ -0,0 +1,55 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>abe</Name>
<Homepage>http://abe.sourceforge.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>abe</Icon>
<IsA>app:gui</IsA>
<Summary>Yet another platform game</Summary>
<Description>Ancient pyramid explorer Abe makes his way through booby traps.</Description>
<Archive sha1sum="9bc7d06b183e46dbdcfebeafeb7bd8684e42e12f" type="targz">mirrors://sourceforge/abe/abe-1.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>libsdl-devel</Dependency>
<Dependency>sdl-mixer-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">flags.patch</Patch>
<Patch level="1">abe-1.1-settings.patch</Patch>
</Patches>
</Source>
<Package>
<Name>abe</Name>
<RuntimeDependencies>
<Dependency>libsdl</Dependency>
<Dependency>sdl-mixer</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/abe</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/applications</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/abe.png">abe.png</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/abe.desktop">abe.desktop</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="1">
<Date>2021-05-10</Date>
<Version>1.1</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>abe</Name>
<Summary xml:lang="tr">Platform oyunu</Summary>
<Description xml:lang="tr">Eski piramitleri araştıran Abe kendisini bekleyen tehlikelerden ve tuzaklardan kurtulmaya çalışıyor.</Description>
</Source>
</PISI>