glibmm:moved into main for pisi 2.0

This commit is contained in:
2015-07-21 16:18:53 +03:00
parent d64b17317d
commit 320d96ff08
8 changed files with 301 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>desktop.gnome2</Name>
</PISI>
+26
View File
@@ -0,0 +1,26 @@
#!/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("--disable-static")
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.install()
dirs = ["/usr/share/doc", "/usr/share/devhelp"]
for dir in dirs:
pisitools.removeDir(dir)
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
+98
View File
@@ -0,0 +1,98 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>glibmm</Name>
<Homepage>http://gtkmm.sourceforge.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>C++ interface for glib2</Summary>
<Description>Glibmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks and a comprehensive set of widgets that are easily extensible via inheritance.</Description>
<Archive sha1sum="aa152d6f19bde44cd528b88f089c53913d0cd0ea" type="tarxz">mirrors://gnome/glibmm/2.44/glibmm-2.44.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>libsigc++-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>pkgconfig</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>glibmm</Name>
<RuntimeDependencies>
<Dependency>glib2</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libsigc++</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>glibmm-devel</Name>
<Summary>Development files for glibmm</Summary>
<RuntimeDependencies>
<Dependency release="current">glibmm</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libsigc++-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/glibmm-*</Path>
<Path fileType="data">/usr/lib/giomm-*</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/aclocal</Path>
<Path fileType="data">/usr/share/glibmm-*</Path>
</Files>
</Package>
<History>
<Update release="6">
<Date>2015-07-21</Date>
<Version>2.44.0</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-05-18</Date>
<Version>2.40.0</Version>
<Comment>Version bump</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-12-23</Date>
<Version>2.38.0</Version>
<Comment>Version bump</Comment>
<Name>Burak Fazıl Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-10-29</Date>
<Version>2.36.2</Version>
<Comment>Rebuild.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-14</Date>
<Version>2.36.2</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-22</Date>
<Version>2.34.1</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+14
View File
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>glibmm</Name>
<Summary xml:lang="tr">glib2 kitaplığı için C++ programlama dili arayüzü</Summary>
<Description xml:lang="tr">Glibmm, ünlü GUI kitaplığı GTK+ için resmi C++ arayüzüdür. Önemli özelliklerinin arasında tip bağımsız çağırmalar ve miras ile genişleyebilen uyumlu parçacıklar vardır.</Description>
<Description xml:lang="fr">Glibmm est l'interface officielle C++ pour la librairie IHM populaire GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage.</Description>
</Source>
<Package>
<Name>glibmm-devel</Name>
<Summary xml:lang="tr">glibmm için geliştirme dosyaları</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 get
WorkDir = "ORBit2-%s" % get.srcVERSION()
def setup():
autotools.configure("--disable-static")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make("-j1")
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "NEWS", "README", "TODO")
@@ -0,0 +1,23 @@
--- ORBit2-2.14.19/linc2/src/Makefile.am.depr 2013-03-15 09:24:45.384143557 -0400
+++ ORBit2-2.14.19/linc2/src/Makefile.am 2013-03-15 09:24:55.172144088 -0400
@@ -12,8 +12,7 @@
-I$(top_builddir)/linc2/include \
-I$(top_srcdir)/linc2/include \
$(LINC_CFLAGS) \
- $(WARN_CFLAGS) \
- -DG_DISABLE_DEPRECATED
+ $(WARN_CFLAGS)
if OS_WIN32
else
--- ORBit2-2.14.19/linc2/src/Makefile.in.depr 2013-03-15 09:24:45.943143588 -0400
+++ ORBit2-2.14.19/linc2/src/Makefile.in 2013-03-15 09:25:08.333144801 -0400
@@ -244,7 +244,7 @@
# -I$(top_srcdir)/include
INCLUDES = -I$(top_builddir)/linc2/include \
-I$(top_srcdir)/linc2/include $(LINC_CFLAGS) $(WARN_CFLAGS) \
- -DG_DISABLE_DEPRECATED $(am__append_1)
+ $(am__append_1)
liblinc_la_SOURCES = \
linc.c \
linc-connection.c \
+96
View File
@@ -0,0 +1,96 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>orbit2</Name>
<Homepage>http://www.gnome.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2</License>
<IsA>library</IsA>
<Summary>High-performance CORBA ORB</Summary>
<Description>Orbit2 allows to communication between two programs objects.</Description>
<Archive sha1sum="e7c26aa4b82c146b3ec08d490e3469b4913e4e2f" type="tarbz2">mirrors://gnome/ORBit2/2.14/ORBit2-2.14.19.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libIDL-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">fedora/ORBit2-allow-deprecated.patch</Patch>
</Patches>
</Source>
<Package>
<Name>orbit2</Name>
<RuntimeDependencies>
<Dependency>libIDL</Dependency>
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/idl</Path>
</Files>
</Package>
<Package>
<Name>orbit2-devel</Name>
<Summary>Development files for orbit2</Summary>
<RuntimeDependencies>
<Dependency release="current">orbit2</Dependency>
<Dependency>libIDL-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/orbit2-config</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/*.a</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/aclocal</Path>
</Files>
</Package>
<Package>
<Name>orbit2-docs</Name>
<IsA>data:doc</IsA>
<Summary>ORBit2 reference documents</Summary>
<Files>
<Path fileType="doc">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2014-05-21</Date>
<Version>2.14.19</Version>
<Comment>Rebuild.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="3">
<Date>2013-10-29</Date>
<Version>2.14.19</Version>
<Comment>Rebuild.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-26</Date>
<Version>2.14.19</Version>
<Comment>Release bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-12-22</Date>
<Version>2.14.19</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>orbit2</Name>
<Summary xml:lang="tr">Yüksek performanslı CORBA ORB</Summary>
<Description xml:lang="tr">Orbit2 iki program nesneleri arasındaki iletişimi sağlar.</Description>
</Source>
<Package>
<Name>orbit2-docs</Name>
<Summary xml:lang="tr">Orbit2 referans dökümanları</Summary>
</Package>
<Package>
<Name>orbit2-devel</Name>
<Summary xml:lang="tr">orbit2 için geliştirme dosyaları</Summary>
</Package>
</PISI>