Merge branch 'master' of github.com:pisilinux/main

This commit is contained in:
Ertuğrul Erata
2016-04-20 13:45:25 +03:00
17 changed files with 72861 additions and 72360 deletions
@@ -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/copyleft/gpl.txt
from pisi.actionsapi import kde5
from pisi.actionsapi import pisitools
def setup():
kde5.configure()
def build():
kde5.make()
def install():
kde5.install()
pisitools.dodoc("README*")
@@ -0,0 +1,43 @@
<PISI>
<Source>
<Name>pisilinux-theme-maia</Name>
<Homepage>http://www.pisilinux.org/</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<Summary>PisiLinux için görsel çalışmaları.</Summary>
<Description>PisiLinux için simge seti, şifre ekranı, açılış ekranı ve kilit ekranı.</Description>
<BuildDependencies>
<Dependency>extra-cmake-modules</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>plasma-framework-devel</Dependency>
</BuildDependencies>
<Archive sha1sum="ffb21c2abe41dd3d83c541b868e1f0bb97440566" type="targz">https://github.com/alihanozturk/pisilinux-theme-maia/archive/0.1.tar.gz</Archive>
</Source>
<Package>
<Name>pisilinux-theme-maia</Name>
<Summary>PisiLinux için görsel çalışmaları.</Summary>
<Files>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/color-schemes</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/kservices5</Path>
<Path fileType="data">/usr/share/plasma</Path>
<Path fileType="data">/usr/share/sddm</Path>
<Path fileType="data">/usr/share/wallpapers</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-20</Date>
<Version>0.1</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -16,9 +16,9 @@
<BuildDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency>dconf-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
<Dependency versionFrom="5.6.0">qt5-declarative-devel</Dependency>
<Dependency>cmake</Dependency>
<Dependency versionFrom="5.6.1">qt5-base-devel</Dependency>
<Dependency versionFrom="5.6.0">qt5-base-devel</Dependency>
</BuildDependencies>
</Source>
@@ -29,7 +29,7 @@
<Dependency>qt5-declarative</Dependency>
<Dependency>glib2</Dependency>
<Dependency>dconf</Dependency>
<Dependency versionFrom="5.6.1">qt5-base</Dependency>
<Dependency versionFrom="5.6.0">qt5-base</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
@@ -18,6 +18,7 @@
<Dependency>mesa-devel</Dependency>
<Dependency>qt5-xmlpatterns-devel</Dependency>
<Dependency>qt5-assistant-devel</Dependency>
<Dependency>qt5-sql-sqlite</Dependency>
</BuildDependencies>
</Source>
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.export("CXXFLAGS", "%s -DUSE_STATIC_CONF" % get.CFLAGS())
autotools.autoconf()
autotools.configure("--without-scglib")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "CREDITS", "ChangeLog", "NEWS", "README*")
@@ -0,0 +1,52 @@
--- cdrdao-1.2.3rc2/acinclude.m4.orig 2009-02-21 11:30:02.000000000 +0100
+++ cdrdao-1.2.3rc2/acinclude.m4 2009-05-22 22:38:15.448770972 +0200
@@ -1,5 +1,49 @@
+dnl AM_GCONF_SOURCE_2
+dnl Defines GCONF_SCHEMA_CONFIG_SOURCE which is where you should install schemas
+dnl (i.e. pass to gconftool-2
+dnl Defines GCONF_SCHEMA_FILE_DIR which is a filesystem directory where
+dnl you should install foo.schemas files
+dnl
+
+AC_DEFUN([AM_GCONF_SOURCE_2],
+[
+ if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
+ GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
+ else
+ GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
+ fi
+
+ AC_ARG_WITH([gconf-source],
+ AC_HELP_STRING([--with-gconf-source=sourceaddress],
+ [Config database for installing schema files.]),
+ [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],)
+
+ AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE)
+ AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation])
+
+ if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
+ GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
+ fi
+
+ AC_ARG_WITH([gconf-schema-file-dir],
+ AC_HELP_STRING([--with-gconf-schema-file-dir=dir],
+ [Directory for installing schema files.]),
+ [GCONF_SCHEMA_FILE_DIR="$withval"],)
+
+ AC_SUBST(GCONF_SCHEMA_FILE_DIR)
+ AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files])
+
+ AC_ARG_ENABLE(schemas-install,
+ AC_HELP_STRING([--disable-schemas-install],
+ [Disable the schemas installation]),
+ [case ${enableval} in
+ yes|no) ;;
+ *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;;
+ esac])
+ AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no])
+])
# Configure paths for GTK--
# Erik Andersen 30 May 1998
# Modified by Tero Pulkkinen (added the compiler checks... I hope they work..)
dnl Check and configure include and link paths for lame library
@@ -0,0 +1,13 @@
diff -up cdrdao-1.2.3/dao/ScsiIf-linux.cc.stat cdrdao-1.2.3/dao/ScsiIf-linux.cc
--- cdrdao-1.2.3/dao/ScsiIf-linux.cc.stat 2010-01-20 20:11:36.000000000 +0100
+++ cdrdao-1.2.3/dao/ScsiIf-linux.cc 2010-01-20 20:14:07.000000000 +0100
@@ -19,6 +19,9 @@
#include <config.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
@@ -0,0 +1,11 @@
--- cdrdao/dao/main.cc~ 2009-04-16 15:34:27.000000000 +0200
+++ cdrdao/dao/main.cc 2009-04-16 15:34:38.000000000 +0200
@@ -207,7 +207,7 @@
static void printVersion()
{
- log_message(2, "Cdrdao version %s - (C) Andreas Mueller <andreas@daneb.de>",
+ log_message(0, "Cdrdao version %s - (C) Andreas Mueller <andreas@daneb.de>",
VERSION);
std::list<std::string> list;
+54
View File
@@ -0,0 +1,54 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>cdrdao</Name>
<Homepage>http://cdrdao.sourceforge.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:console</IsA>
<Summary>Burn CDs in disk-at-once mode</Summary>
<Description>cdrdao records audio or data CD-Rs in disk-at-once (DAO) mode based on a textual description of the CD contents.</Description>
<Archive sha1sum="70d6547795a1342631c7ab56709fd1940c2aff9f" type="tarbz2">mirrors://sourceforge/cdrdao/cdrdao-1.2.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>lame-devel</Dependency>
<Dependency>libao-devel</Dependency>
<Dependency>libmad-devel</Dependency>
<Dependency>libvorbis-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">cdrdao-1.2.3-version.patch</Patch>
<Patch level="1">cdrdao-1.2.3-stat.patch</Patch>
<Patch level="1">cdrdao-1.2.3-autoconf-update.patch</Patch>
</Patches>
</Source>
<Package>
<Name>cdrdao</Name>
<RuntimeDependencies>
<Dependency>lame</Dependency>
<Dependency>libmad</Dependency>
<Dependency>libvorbis</Dependency>
<Dependency>libao</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="config">/usr/share/cdrdao</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-19</Date>
<Version>1.2.3</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+7
View File
@@ -0,0 +1,7 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>cdrdao</Name>
<Summary xml:lang="tr">CDlerinizi DAO modunda yazar</Summary>
</Source>
</PISI>
+5 -1
View File
@@ -7,8 +7,12 @@
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.configure()
autotools.configure(" --prefix=/usr \
--disable-static \
--enable-pkg-check-modules")
def build():
autotools.make()
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import cmaketools
def setup():
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBURNING=LIBBURNIA ")
def build():
cmaketools.make()
def install():
cmaketools.install()
#pisitools.dodoc("AUTHORS", "ChangeLog", "INSTALL", "LICENSE", "TODO")
+70
View File
@@ -0,0 +1,70 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>simpleburn</Name>
<Homepage>http://simpleburn.tuxfamily.org/</Homepage>
<Packager>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>Cecill-2 license</License>
<Icon>simpleburn</Icon>
<IsA>app:gui</IsA>
<Summary>A simple GTK+ application for burning CDs and DVDs</Summary>
<Description>SimpleBurn is a minimalistic application for burning and extracting CDs and DVDs. It basically is a Cdrtools frontend and is designed in two parts: the GUI (GTK) and a BASH script that handle the requested actions.</Description>
<Archive sha1sum="d67191a92b90bfffe52b539d78901d7ea33df262" type="tarbz2">https://sourceforge.net/projects/pisilinux/files/source/simpleburn-1.6.5.tar.bz2</Archive>
<BuildDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency>cdparanoia-devel</Dependency>
<Dependency>mpg123-devel</Dependency>
<Dependency>pkgconfig</Dependency>
<Dependency>cmake</Dependency>
<Dependency>libisoburn-devel</Dependency>
<Dependency>libburn-devel</Dependency>
<Dependency>libisofs-devel</Dependency>
<Dependency>libcdio-devel</Dependency>
<Dependency>cdrkit</Dependency>
<Dependency>util-linux</Dependency>
<Dependency>libutil-linux-devel</Dependency>
<Dependency>eudev-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>simpleburn</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>glib2</Dependency>
<!--Optional Dependencies-->
<Dependency>lame</Dependency>
<Dependency>cdparanoia</Dependency>
<Dependency>libisoburn</Dependency>
<Dependency>cdrdao</Dependency>
<Dependency>libcdio</Dependency>
<Dependency>mpg123</Dependency>
<Dependency>vorbis-tools</Dependency>
<Dependency>cdrkit</Dependency>
<Dependency>libcdio</Dependency>
<!--Optional Dependencies-->
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="locale">/usr/share/locale</Path>
<Path fileType="data">/usr/share/simpleburn</Path>
<Path fileType="application">/usr/share/applications</Path>
<Path fileType="doc">/usr/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-19</Date>
<Version>1.6.5</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</PISI>
+72534 -72354
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
4053607d3e364b88077738bb15fa45d3383c57ad
bdd9c4352cd3cbf6da74c061794b673b02eeba64
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
ddef4e46f8c0dfec74e8c3751c9773123d6be8cf
fd0092b922cf742e768b32524c7f8a3f17bf20a2