libXfont, libXmu, and other xorg-apps dep. added.

This commit is contained in:
Ertuğrul Erata
2015-07-14 11:01:20 +03:00
parent 6aacb49d98
commit 5e961bf0bd
10 changed files with 404 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
# -*- 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 \
--disable-devel-docs")
pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README")
+104
View File
@@ -0,0 +1,104 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libXfont</Name>
<Homepage>http://www.x.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>X.Org Xfont library</Summary>
<Description>libXfont is the Xorg library that allows using various types of fonts.</Description>
<Archive sha1sum="54d0d0814679901ebf6dd2dd656c8842a4a61b6c" type="tarbz2">mirrors://xorg/individual/lib/libXfont-1.5.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libfontenc-devel</Dependency>
<Dependency>util-macros</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>xorg-proto</Dependency>
<Dependency>xtrans</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>freetype-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libXfont</Name>
<RuntimeDependencies>
<Dependency>libfontenc</Dependency>
<Dependency>zlib</Dependency>
<Dependency>freetype</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libXfont-devel</Name>
<Summary>Development files for libXfont</Summary>
<RuntimeDependencies>
<Dependency release="current">libXfont</Dependency>
<Dependency>libfontenc-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/X11</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="7">
<Date>2014-08-31</Date>
<Version>1.5.0</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-05-17</Date>
<Version>1.4.7</Version>
<Comment>Release bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-03-07</Date>
<Version>1.4.7</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-07</Date>
<Version>1.4.6</Version>
<Comment>Rebuild.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-25</Date>
<Version>1.4.6</Version>
<Comment>Release bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-30</Date>
<Version>1.4.6</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-11-22</Date>
<Version>1.4.5</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+14
View File
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libXfont</Name>
<Summary xml:lang="tr">X.Org Xfont kitaplığı</Summary>
<Summary xml:lang="fr">Librairie Xfont de X.Org</Summary>
<Summary xml:lang="de">X.Org Xfont Bibliothek</Summary>
</Source>
<Package>
<Name>libXfont-devel</Name>
<Summary xml:lang="tr">libXfont için geliştirme dosyaları</Summary>
</Package>
</PISI>
+2 -2
View File
@@ -16,8 +16,8 @@
<BuildDependencies>
<Dependency>util-macros</Dependency>
<Dependency>libXt-devel</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libXext-devel</Dependency>
</BuildDependencies>
</Source>
+20
View File
@@ -0,0 +1,20 @@
# -*- 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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
autotools.autoreconf("-vif")
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("ChangeLog", "COPYING", "README")
+104
View File
@@ -0,0 +1,104 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libXxf86dga</Name>
<Homepage>http://www.x.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>X.Org Xxf86dga library</Summary>
<Description>LibXxf86dga is the client library for the XFree86-DGA extension.</Description>
<Archive sha1sum="51f2fc8d5d5fb398cf3c66735789feadb9aaeba9" type="tarbz2">mirrors://xorg/individual/lib/libXxf86dga-1.1.4.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libXext-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>util-macros</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libXxf86dga</Name>
<RuntimeDependencies>
<Dependency>libXext</Dependency>
<Dependency>libX11</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libXxf86dga-devel</Name>
<Summary>Development files for libXxf86dga</Summary>
<RuntimeDependencies>
<Dependency release="current">libXxf86dga</Dependency>
<Dependency>libXext-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/X11</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib32/pkgconfig</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>libXxf86dga-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for libXxf86dga</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>libXext-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">libXxf86dga</Dependency>
<Dependency>libXext-32bit</Dependency>
<Dependency>libX11-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2014-05-16</Date>
<Version>1.1.4</Version>
<Comment>Release bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-07</Date>
<Version>1.1.4</Version>
<Comment>Rebuild.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-25</Date>
<Version>1.1.4</Version>
<Comment>Release bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-06-21</Date>
<Version>1.1.4</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-06-01</Date>
<Version>1.1.3</Version>
<Comment>First release</Comment>
<Name>Erdem Artan</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libXxf86dga</Name>
<Summary xml:lang="tr">X.Org Xxf86dga kitaplığı</Summary>
<Summary xml:lang="fr">Librairie Xxf86dga de X.Org</Summary>
<Summary xml:lang="de">X.Org Xxf86dga Bibliothek</Summary>
</Source>
<Package>
<Name>libXxf86dga-devel</Name>
<Summary xml:lang="tr">libXxf86dga için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>libXxf86dga-32bit</Name>
<Summary xml:lang="tr">libXxf86dga için 32-bit paylaşımlı kitaplıklar</Summary>
</Package>
</PISI>
+19
View File
@@ -0,0 +1,19 @@
# -*- 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.autoreconf("-vif")
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("ChangeLog", "COPYING", "README")
+83
View File
@@ -0,0 +1,83 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libxkbfile</Name>
<Homepage>http://www.x.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>X.Org xkbfile library</Summary>
<Description>Libxkbfile provides an interface to read and manipulate description files for XKB, the X11 keyboard configuration extension.</Description>
<Archive sha1sum="05139829837c26e3a14a40a700f058c018bc71f5" type="tarbz2">mirrors://xorg/individual/lib/libxkbfile-1.0.8.tar.bz2</Archive>
<BuildDependencies>
<Dependency>util-macros</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>xorg-proto</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libxkbfile</Name>
<RuntimeDependencies>
<Dependency>libX11</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libxkbfile-devel</Name>
<Summary>Development files for libxkbfile</Summary>
<RuntimeDependencies>
<Dependency release="current">libxkbfile</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/X11</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2014-05-16</Date>
<Version>1.0.8</Version>
<Comment>Release bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2013-10-07</Date>
<Version>1.0.8</Version>
<Comment>Rebuild.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-25</Date>
<Version>1.0.8</Version>
<Comment>Release bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-25</Date>
<Version>1.0.8</Version>
<Comment>Release bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-06-01</Date>
<Version>1.0.8</Version>
<Comment>First release</Comment>
<Name>Erdem Artan</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+14
View File
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libxkbfile</Name>
<Summary xml:lang="tr">X.Org xkbfile kitaplığı</Summary>
<Summary xml:lang="fr">Librairie xkbfile de X.Org</Summary>
<Summary xml:lang="de">X.Org xkbfile Bibliothek</Summary>
</Source>
<Package>
<Name>libxkbfile-devel</Name>
<Summary xml:lang="tr">libxkbfile için geliştirme dosyaları</Summary>
</Package>
</PISI>