Merge pull request #3034 from ayhanyalcinsoy/master
libxfont2, wayland-protocols:new packages for xorg-server
This commit is contained in:
+120858
-119742
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
ff37809feeb748ebe523650df6a3f99b5c9dfeaf
|
||||
12621cc6b9ac7a0e13da7f7a5323c1d8902d0f1c
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
505df6f6bf8026f0ea73b1f5722916997bbc6420
|
||||
7ddb5c36a2e02705346b97d52cae6db4a5cf03b0
|
||||
@@ -0,0 +1,23 @@
|
||||
# -*- 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"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README")
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libXfont2</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="4cf056ab00bf631649e040051cf8e2b096cc245b" type="tarbz2">http://xorg.freedesktop.org/archive/individual/lib/libXfont2-2.0.1.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>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libXfont2</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>libXfont2-devel</Name>
|
||||
<Summary>Development files for libXfont</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libXfont2</Dependency>
|
||||
<Dependency>libfontenc-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/X11</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2017-03-02</Date>
|
||||
<Version>2.0.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -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>
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Copyright 2010 TUBITAK/BILGEM
|
||||
# Licensed under the GNU General Public License, version 2.
|
||||
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>wayland-protocols</Name>
|
||||
<Homepage>http://wayland.freedesktop.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Specifications of extended Wayland protocols</Summary>
|
||||
<Description>Specifications of extended Wayland protocols</Description>
|
||||
<Archive sha1sum="c4726694daf5feb1437f5f4f13c3b2a9b94b8118" type="tarxz">https://wayland.freedesktop.org/releases/wayland-protocols-1.7.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>wayland-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>wayland-protocols</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/wayland-protocols</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>wayland-protocols-devel</Name>
|
||||
<Summary>Wayland-protocols development files</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">wayland-protocols</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/share/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2017-03-02</Date>
|
||||
<Version>1.7</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>wayland-protocols</Name>
|
||||
<Summary xml:lang="tr">Genişletişmiş wayland protocolü tanımlamaları</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>wayland-protocols-devel</Name>
|
||||
<Summary xml:lang="en">wayland-protocols için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user