Gentoo Archives: gentoo-commits

From: "William Hubbs (williamh)" <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/s6: metadata.xml s6-1.1.0.ebuild ChangeLog
Date: Wed, 02 Oct 2013 23:09:34
Message-Id: 20131002230929.DE5C22004C@flycatcher.gentoo.org
1 williamh 13/10/02 23:09:29
2
3 Added: metadata.xml s6-1.1.0.ebuild ChangeLog
4 Log:
5 initial commit
6
7 (Portage version: 2.2.1/cvs/Linux i686, signed Manifest commit with key 0x30C46538)
8
9 Revision Changes Path
10 1.1 sys-apps/s6/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/s6/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/s6/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>williamh@g.o</email>
22 <name>William Hubbs</name>
23 </maintainer>
24 <longdescription lang="en">
25 S6 is a small suite of programs for UNIX designed to allow
26 service supervision similar to daemontools or runit.
27 </longdescription>
28 </pkgmetadata>
29
30
31
32 1.1 sys-apps/s6/s6-1.1.0.ebuild
33
34 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/s6/s6-1.1.0.ebuild?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/s6/s6-1.1.0.ebuild?rev=1.1&content-type=text/plain
36
37 Index: s6-1.1.0.ebuild
38 ===================================================================
39 # Copyright 1999-2013 Gentoo Foundation
40 # Distributed under the terms of the GNU General Public License v2
41 # $Header: /var/cvsroot/gentoo-x86/sys-apps/s6/s6-1.1.0.ebuild,v 1.1 2013/10/02 23:09:29 williamh Exp $
42
43 EAPI=5
44
45 inherit multilib toolchain-funcs
46
47 DESCRIPTION="skarnet.org's small and secure supervision software suite"
48 HOMEPAGE="http://www.skarnet.org/software/s6/"
49 SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz"
50
51 LICENSE="ISC"
52 SLOT="0"
53 KEYWORDS="~amd64 ~x86"
54 IUSE=""
55
56 COMMON_DEPEND=">=dev-libs/skalibs-1.4.0
57 >=dev-lang/execline-1.2.2"
58 DEPEND="${COMMON_DEPEND}"
59 RDEPEND="${COMMON_DEPEND}"
60
61 S=${WORKDIR}/admin/${P}
62
63 src_configure()
64 {
65 echo $(tc-getCC) ${CFLAGS} > conf-compile/conf-cc
66 echo $(tc-getCC) ${LDFLAGS} > conf-compile/conf-dynld
67 echo /usr/$(get_libdir)/s6 > conf-compile/conf-install-library
68 echo /$(get_libdir) > conf-compile/conf-install-library.so
69 echo $(tc-getCC) ${LDFLAGS} > conf-compile/conf-ld
70 echo > conf-compile/conf-stripbins
71 echo > conf-compile/conf-striplibs
72 rm conf-compile/flag-slashpackage
73 echo /usr/lib/skalibs/sysdeps > conf-compile/import
74 echo /usr/include/skalibs > conf-compile/path-include
75 echo /usr/include >> conf-compile/path-include
76 echo /usr/$(get_libdir)/skalibs > conf-compile/path-library
77 echo /usr/$(get_libdir) >> conf-compile/path-library
78 echo /$(get_libdir)/skalibs > conf-compile/path-library.so
79 echo /$(get_libdir) >> conf-compile/path-library.so
80 }
81
82 src_compile()
83 {
84 emake -j1
85 }
86
87 src_install()
88 {
89 into /
90 dobin command/*
91
92 dodoc -r examples
93 dohtml -r doc/*
94 }
95
96
97
98 1.1 sys-apps/s6/ChangeLog
99
100 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/s6/ChangeLog?rev=1.1&view=markup
101 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/s6/ChangeLog?rev=1.1&content-type=text/plain
102
103 Index: ChangeLog
104 ===================================================================
105 # ChangeLog for sys-apps/s6
106 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
107 # $Header: /var/cvsroot/gentoo-x86/sys-apps/s6/ChangeLog,v 1.1 2013/10/02 23:09:29 williamh Exp $
108
109 *s6-1.1.0 (02 Oct 2013)
110
111 02 Oct 2013; William Hubbs <williamh@g.o> +metadata.xml,
112 +s6-1.1.0.ebuild:
113 initial commit