diff options
author | Rafael Martins <rafaelmartins@gentoo.org> | 2011-03-02 02:04:25 +0000 |
---|---|---|
committer | Rafael Martins <rafaelmartins@gentoo.org> | 2011-03-02 02:04:25 +0000 |
commit | af84733fb7ea905d6c1d2ed573376cb5d4d0fa5e (patch) | |
tree | 5d2ebc9e777c5d8c52ffe12b004c04da715def07 | |
parent | New ebuild gnome-extra/synapse (diff) | |
download | gentoo-2-af84733fb7ea905d6c1d2ed573376cb5d4d0fa5e.tar.gz gentoo-2-af84733fb7ea905d6c1d2ed573376cb5d4d0fa5e.tar.bz2 gentoo-2-af84733fb7ea905d6c1d2ed573376cb5d4d0fa5e.zip |
Initial commit.
(Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
-rw-r--r-- | www-apps/cgisysinfo/ChangeLog | 10 | ||||
-rw-r--r-- | www-apps/cgisysinfo/cgisysinfo-0.1.ebuild | 33 | ||||
-rw-r--r-- | www-apps/cgisysinfo/metadata.xml | 18 |
3 files changed, 61 insertions, 0 deletions
diff --git a/www-apps/cgisysinfo/ChangeLog b/www-apps/cgisysinfo/ChangeLog new file mode 100644 index 000000000000..494a85205646 --- /dev/null +++ b/www-apps/cgisysinfo/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for www-apps/cgisysinfo +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/cgisysinfo/ChangeLog,v 1.1 2011/03/02 02:04:25 rafaelmartins Exp $ + +*cgisysinfo-0.1 (02 Mar 2011) + + 02 Mar 2011; Rafael G. Martins <rafaelmartins@gentoo.org> + +cgisysinfo-0.1.ebuild, +metadata.xml: + Initial commit. + diff --git a/www-apps/cgisysinfo/cgisysinfo-0.1.ebuild b/www-apps/cgisysinfo/cgisysinfo-0.1.ebuild new file mode 100644 index 000000000000..86a3b5e05074 --- /dev/null +++ b/www-apps/cgisysinfo/cgisysinfo-0.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/cgisysinfo/cgisysinfo-0.1.ebuild,v 1.1 2011/03/02 02:04:25 rafaelmartins Exp $ + +EAPI="4" + +if [[ ${PV} = *9999* ]]; then + WANT_AUTOCONF="2.5" + WANT_AUTOMAKE="1.10" + inherit autotools mercurial + EHG_REPO_URI="http://hg.rafaelmartins.eng.br/cgisysinfo/" + KEYWORDS="" +else + SRC_URI="http://files.rafaelmartins.eng.br/distfiles/${P}.tar.bz2" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="A small cgi utility to show basic system information." +HOMEPAGE="http://labs.rafaelmartins.org/wiki/cgisysinfo" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DOCS="README AUTHORS NEWS" + +src_prepare() { + [[ ${PV} = *9999* ]] && eautoreconf +} + +pkg_postinst() { + elog "Please read the README file for usage info." +} diff --git a/www-apps/cgisysinfo/metadata.xml b/www-apps/cgisysinfo/metadata.xml new file mode 100644 index 000000000000..4a174caa4a79 --- /dev/null +++ b/www-apps/cgisysinfo/metadata.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>rafaelmartins@gentoo.org</email> + <name>Rafael G. Martins</name> + </maintainer> + <longdescription lang="en"> + cgisysinfo is a small CGI utility to show basic system information on Linux + machines. + + cgisysinfo is useful for machines that run a webserver but not PHP, and was + tested with nginx + fcgiwrap. It should works with any CGI-capable web + server. + </longdescription> +</pkgmetadata> + |