Code sync
[external/libdaemon.git] / debian / control
1 Source: libdaemon
2 Section: libs
3 Priority: optional
4 Maintainer: GangHeok Kim <gangheok.kim@samsung.com>, TaekSu Shin <taeksu.shin@samsung.com>
5 Uploaders: GangHeok Kim <gangheok.kim@samsung.com>
6 Build-Depends: debhelper (>= 7), autotools-dev, doxygen
7 #deleted lynx
8 Standards-Version: 3.8.3
9 Homepage: http://0pointer.de/lennart/projects/libdaemon/
10 Vcs-Git: git://git.debian.org/git/pkg-utopia/libdaemon.git
11 Vcs-Browser: http://git.debian.org/?p=pkg-utopia/libdaemon.git;a=summary
12
13 Package: libdaemon-dev
14 Section: libdevel
15 Architecture: any
16 Depends: libdaemon0 (= ${binary:Version})
17 Description: lightweight C library for daemons - development files
18  libdaemon is a leightweight C library which eases the writing of UNIX daemons.
19  It consists of the following parts:
20  .
21   * Wrapper around fork() for correct daemonization of a process
22   * Wrapper around syslog() for simple log output to syslog or STDERR
23   * An API for writing PID files
24   * An API for serializing signals into a pipe for use with select() or poll()
25   * An API for running subprocesses with STDOUT and STDERR redirected to syslog
26  .
27  Routines like these are included in most of the daemon software available. It
28  is not simple to get these done right and code duplication is not acceptable.
29  .
30  This package includes the header files and the static version of the library
31  and documentation.
32
33 Package: libdaemon0
34 Architecture: any
35 Depends: ${shlibs:Depends}
36 Description: lightweight C library for daemons - runtime library
37  libdaemon is a leightweight C library which eases the writing of UNIX daemons.
38  It consists of the following parts:
39  .
40   * Wrapper around fork() for correct daemonization of a process
41   * Wrapper around syslog() for simple log output to syslog or STDERR
42   * An API for writing PID files
43   * An API for serializing signals into a pipe for use with select() or poll()
44   * An API for running subprocesses with STDOUT and STDERR redirected to syslog
45  .
46  Routines like these are included in most of the daemon software available. It
47  is not simple to get these done right and code duplication is not acceptable.
48  .
49  This package includes the libdaemon run time shared library.
50
51 Package: libdaemon0-dbg
52 Section: debug
53 Architecture: any
54 Priority: extra
55 Depends: libdaemon0 (= ${binary:Version})
56 Description: lightweight C library for daemons - debugging symbols
57  libdaemon is a leightweight C library which eases the writing of UNIX daemons.
58  It consists of the following parts:
59  .
60   * Wrapper around fork() for correct daemonization of a process
61   * Wrapper around syslog() for simple log output to syslog or STDERR
62   * An API for writing PID files
63   * An API for serializing signals into a pipe for use with select() or poll()
64   * An API for running subprocesses with STDOUT and STDERR redirected to syslog
65  .
66  Routines like these are included in most of the daemon software available. It
67  is not simple to get these done right and code duplication is not acceptable.
68  .
69  This package contains the debugging symbols for libdaemon.