libupnp and liberation-fonts in main
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#!/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
|
||||
|
||||
WorkDir = "liberation-fonts-ttf-2.00.0"
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/usr/share/fonts/liberation-fonts/", "*.ttf")
|
||||
|
||||
pisitools.dodoc("LICENSE", "AUTHORS", "ChangeLog", "README")
|
||||
@@ -0,0 +1,39 @@
|
||||
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>liberation-fonts</Name>
|
||||
<Homepage>https://fedorahosted.org/liberation-fonts/</Homepage>
|
||||
<Packager>
|
||||
<Name>Sezai Yeniay</Name>
|
||||
<Email>sezaiyeniay@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>data:font</IsA>
|
||||
<Summary>Font collection similar to ones found in Microsoft Windows</Summary>
|
||||
<Description>A set of fonts similar to Microsoft Windows fonts. There are three sets: Sans (a substitute for Arial, Albany, Helvetica, Nimbus Sans L, and Bitstream Vera Sans), Serif (a substitute for Times New Roman, Thorndale, Nimbus Roman, and Bitstream Vera Serif) and Mono (a substitute for Courier New, Cumberland, Courier, Nimbus Mono L, and Bitstream Vera Sans Mono).</Description>
|
||||
<Archive sha1sum="1d56c6f319401012e53818fa6e9e26ebf6429da0" type="targz">http://dev-www.libreoffice.org/src/cfbf1ac6f61bf6cf45342a0cc9381be5-liberation-fonts-ttf-2.00.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>fontforge</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>liberation-fonts</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/fonts</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2014-03-09</Date>
|
||||
<Version>2.00.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>liberation-fonts</Name>
|
||||
<Summary xml:lang="tr">Microsoft Windows fontlarına benzeyen bir dizi font ailesi</Summary>
|
||||
<Description xml:lang="tr">liberation-fonts MS Windows fontlarına benzer bir yazı tipi ailesidir. Sans, serif ve mono olmak üzere 3 setten oluşur.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,30 @@
|
||||
#!/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.autoreconf("-vif")
|
||||
autotools.configure("--disable-static \
|
||||
--without-docdir")
|
||||
#FIXME: documentation is temporarily disabled since update release 7.
|
||||
#--with-documentation=/usr/share/doc/%s" % get.srcNAME())
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
#pisitools.remove("/usr/share/doc/libupnp/IXML_Programming_Guide.pdf")
|
||||
#pisitools.remove("/usr/share/doc/libupnp/UPnP_Programming_Guide.pdf")
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
Index: libupnp-1.6.6/m4/acx_pthread.m4
|
||||
===================================================================
|
||||
--- libupnp-1.6.6.orig/m4/acx_pthread.m4
|
||||
+++ libupnp-1.6.6/m4/acx_pthread.m4
|
||||
@@ -146,7 +146,7 @@ acx_pthread_flags="pthreads none -Kthrea
|
||||
# pthread-config: use pthread-config program (for GNU Pth library)
|
||||
|
||||
case "${host_cpu}-${host_os}" in
|
||||
- *solaris*)
|
||||
+ *solaris*|*linux*)
|
||||
|
||||
# On Solaris (at least, for some versions), libc contains stubbed
|
||||
# (non-functional) versions of the pthreads routines, so link-based
|
||||
@@ -0,0 +1,54 @@
|
||||
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libupnp</Name>
|
||||
<Homepage>http://pupnp.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Portable UPnP library</Summary>
|
||||
<Description>The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux.</Description>
|
||||
<Archive sha1sum="ee9e16ff42808521b62b7fc664fc9cba479ede88" type="tarbz2">http://sourceforge.net/projects/pupnp/files/pupnp/libUPnP%201.6.19/libupnp-1.6.19.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>kernel-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">pthread-flag.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libupnp</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libupnp-devel</Name>
|
||||
<Summary>Development files for libupnp</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libupnp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2014-05-31</Date>
|
||||
<Version>1.6.19</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libupnp</Name>
|
||||
<Summary xml:lang="tr">Taşınabilir UPnP kitaplığı</Summary>
|
||||
<Summary xml:lang="fr">Librairie UPnP.</Summary>
|
||||
<Summary xml:lang="de">Portabels UPnP Bibliothek</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libupnp-devel</Name>
|
||||
<Summary xml:lang="tr">libupnp için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user