pangomm C++ interface for Pango

This commit is contained in:
groni
2015-11-27 14:04:59 +01:00
parent fd9a453478
commit b2abf61e75
7 changed files with 212 additions and 2 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/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
def setup():
autotools.configure("--disable-static")
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
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", "COPYING*", "NEWS", "README")
+85
View File
@@ -0,0 +1,85 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>pangomm</Name>
<Homepage>http://www.gtkmm.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>C++ interface for Pango</Summary>
<Description>Pangomm is a library that provides pango based C++ interface for object-oriented gtkmm applications.</Description>
<Archive sha1sum="15d89717a390a0c78c01871190c8febd29dad684" type="tarxz">mirrors://gnome/pangomm/2.34/pangomm-2.34.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>grep</Dependency>
<Dependency>libtool-devel</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>glibmm-devel</Dependency>
<Dependency>cairomm-devel</Dependency>
<Dependency>libsigc++-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>pangomm</Name>
<RuntimeDependencies>
<Dependency>pango</Dependency>
<Dependency>glibmm</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>glib2</Dependency>
<Dependency>cairomm</Dependency>
<Dependency>libsigc++</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>pangomm-devel</Name>
<Summary>Development files for pangomm</Summary>
<RuntimeDependencies>
<Dependency release="current">pangomm</Dependency>
<Dependency>cairomm-devel</Dependency>
<Dependency>glibmm-devel</Dependency>
<Dependency>pango-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib/pangomm-1.4</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-05-18</Date>
<Version>2.34.0</Version>
<Comment>Rebuild.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-14</Date>
<Version>2.34.0</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-26</Date>
<Version>2.28.4</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>pangomm</Name>
<Summary xml:lang="tr">Pango için C++ arayüzü</Summary>
<Description xml:lang="tr">Pangomm, nesne tabanlı gtkmm uygulamaları için C++ tabanlı pango arayüzü sağlayan bir kitaplıktır.</Description>
</Source>
<Package>
<Name>pangomm-devel</Name>
<Summary xml:lang="tr">pangomm için geliştirme dosyaları</Summary>
</Package>
</PISI>