From bec0effc5ffde2bb655758d9e6f7a6b03489fbd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Tue, 7 Jul 2015 13:34:19 +0300 Subject: [PATCH] libdaemon fix deps. --- programming/misc/libdaemon/actions.py | 21 +++++ programming/misc/libdaemon/pspec.xml | 87 +++++++++++++++++++++ programming/misc/libdaemon/translations.xml | 18 +++++ 3 files changed, 126 insertions(+) create mode 100644 programming/misc/libdaemon/actions.py create mode 100644 programming/misc/libdaemon/pspec.xml create mode 100644 programming/misc/libdaemon/translations.xml diff --git a/programming/misc/libdaemon/actions.py b/programming/misc/libdaemon/actions.py new file mode 100644 index 0000000000..c1b83a4ffb --- /dev/null +++ b/programming/misc/libdaemon/actions.py @@ -0,0 +1,21 @@ +#!/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-lynx \ + --disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("README", "LICENSE") diff --git a/programming/misc/libdaemon/pspec.xml b/programming/misc/libdaemon/pspec.xml new file mode 100644 index 0000000000..3da17bd3d1 --- /dev/null +++ b/programming/misc/libdaemon/pspec.xml @@ -0,0 +1,87 @@ + + + + + libdaemon + http://0pointer.de/lennart/projects/libdaemon + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + Library for writing UNIX daemons + libdaemon is a lightweight C library which eases the writing of UNIX daemons. + http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz + + + + libdaemon + + /usr/lib + /usr/share/doc + + + + + libdaemon-devel + Development files for libdaemon + + libdaemon + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man/man3 + + + + + libdaemon-32bit + emul32 + 32-bit shared libraries for libdaemon + emul32 + + glibc-32bit + + + glibc-32bit + libdaemon + + + /usr/lib32 + + + + + + 2014-03-09 + 0.14 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 0.14 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-02-15 + 0.14 + add emul32 + Erdinç Gültekin + admins@pisilinux.org + + + 2010-10-12 + 0.14 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/programming/misc/libdaemon/translations.xml b/programming/misc/libdaemon/translations.xml new file mode 100644 index 0000000000..46c08e2cf2 --- /dev/null +++ b/programming/misc/libdaemon/translations.xml @@ -0,0 +1,18 @@ + + + + libdaemon + UNIX hizmetleri yazmak için bir kitaplığı + libdaemon, UNIX hizmetleri yazmayı kolaylaştıran hafif bir C kitaplığıdır. + + + + libdaemon-devel + libdaemon için geliştirme dosyaları + + + + libdaemon-32bit + 32-bit shared libraries for libdaemon + + \ No newline at end of file