Gentoo Archives: gentoo-commits

From: "Rafael Martins (rafaelmartins)" <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/cgisysinfo: metadata.xml ChangeLog cgisysinfo-0.1.ebuild
Date: Wed, 02 Mar 2011 02:04:35
Message-Id: 20110302020425.AD4F820054@flycatcher.gentoo.org
1 rafaelmartins 11/03/02 02:04:25
2
3 Added: metadata.xml ChangeLog cgisysinfo-0.1.ebuild
4 Log:
5 Initial commit.
6
7 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 www-apps/cgisysinfo/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/cgisysinfo/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/cgisysinfo/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 <herd>no-herd</herd>
21 <maintainer>
22 <email>rafaelmartins@g.o</email>
23 <name>Rafael G. Martins</name>
24 </maintainer>
25 <longdescription lang="en">
26 cgisysinfo is a small CGI utility to show basic system information on Linux
27 machines.
28
29 cgisysinfo is useful for machines that run a webserver but not PHP, and was
30 tested with nginx + fcgiwrap. It should works with any CGI-capable web
31 server.
32 </longdescription>
33 </pkgmetadata>
34
35
36
37
38 1.1 www-apps/cgisysinfo/ChangeLog
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/cgisysinfo/ChangeLog?rev=1.1&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/cgisysinfo/ChangeLog?rev=1.1&content-type=text/plain
42
43 Index: ChangeLog
44 ===================================================================
45 # ChangeLog for www-apps/cgisysinfo
46 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
47 # $Header: /var/cvsroot/gentoo-x86/www-apps/cgisysinfo/ChangeLog,v 1.1 2011/03/02 02:04:25 rafaelmartins Exp $
48
49 *cgisysinfo-0.1 (02 Mar 2011)
50
51 02 Mar 2011; Rafael G. Martins <rafaelmartins@g.o>
52 +cgisysinfo-0.1.ebuild, +metadata.xml:
53 Initial commit.
54
55
56
57
58 1.1 www-apps/cgisysinfo/cgisysinfo-0.1.ebuild
59
60 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/cgisysinfo/cgisysinfo-0.1.ebuild?rev=1.1&view=markup
61 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/cgisysinfo/cgisysinfo-0.1.ebuild?rev=1.1&content-type=text/plain
62
63 Index: cgisysinfo-0.1.ebuild
64 ===================================================================
65 # Copyright 1999-2011 Gentoo Foundation
66 # Distributed under the terms of the GNU General Public License v2
67 # $Header: /var/cvsroot/gentoo-x86/www-apps/cgisysinfo/cgisysinfo-0.1.ebuild,v 1.1 2011/03/02 02:04:25 rafaelmartins Exp $
68
69 EAPI="4"
70
71 if [[ ${PV} = *9999* ]]; then
72 WANT_AUTOCONF="2.5"
73 WANT_AUTOMAKE="1.10"
74 inherit autotools mercurial
75 EHG_REPO_URI="http://hg.rafaelmartins.eng.br/cgisysinfo/"
76 KEYWORDS=""
77 else
78 SRC_URI="http://files.rafaelmartins.eng.br/distfiles/${P}.tar.bz2"
79 KEYWORDS="~amd64 ~x86"
80 fi
81
82 DESCRIPTION="A small cgi utility to show basic system information."
83 HOMEPAGE="http://labs.rafaelmartins.org/wiki/cgisysinfo"
84
85 LICENSE="GPL-2"
86 SLOT="0"
87 IUSE=""
88
89 DOCS="README AUTHORS NEWS"
90
91 src_prepare() {
92 [[ ${PV} = *9999* ]] && eautoreconf
93 }
94
95 pkg_postinst() {
96 elog "Please read the README file for usage info."
97 }