diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /www-apps/cgisysinfo | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'www-apps/cgisysinfo')
-rw-r--r-- | www-apps/cgisysinfo/Manifest | 1 | ||||
-rw-r--r-- | www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild | 36 | ||||
-rw-r--r-- | www-apps/cgisysinfo/metadata.xml | 17 |
3 files changed, 54 insertions, 0 deletions
diff --git a/www-apps/cgisysinfo/Manifest b/www-apps/cgisysinfo/Manifest new file mode 100644 index 000000000000..cc2e11f06085 --- /dev/null +++ b/www-apps/cgisysinfo/Manifest @@ -0,0 +1 @@ +DIST cgisysinfo-0.4.1.tar.bz2 262016 SHA256 6284ad1b64a34827dc0ee4e7c2125ec843723b93cdf139e0d95215335e7533b8 SHA512 fd14339ea346f70c9b5632ae861ba006b70c5ff5849ebbd3b32bcedaf0a5865d411d6d0f251362baea515f0d64639d544779c3569574a710ed4967c9fa770909 WHIRLPOOL c651522b98b2bdef6c597b0842f39256450cb8b1d69e68e9896b56ab5dc5fd0d51c2057eb3b2f4d0a42e63fb5411ff86095d8362dd9a1711219ffbdccd1c8c7a diff --git a/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild b/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild new file mode 100644 index 000000000000..dd31918b8b5e --- /dev/null +++ b/www-apps/cgisysinfo/cgisysinfo-0.4.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +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://distfiles.rafaelmartins.eng.br/${PN}/${P}.tar.bz2" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="A small cgi utility to show basic system information" +HOMEPAGE="http://projects.rafaelmartins.eng.br/cgisysinfo" + +LICENSE="GPL-2" +SLOT="0" +IUSE="fastcgi" + +DEPEND="fastcgi? ( dev-libs/fcgi )" +RDEPEND="${DEPEND}" + +DOCS="README AUTHORS NEWS" + +src_prepare() { + [[ ${PV} = *9999* ]] && eautoreconf +} + +src_configure() { + econf $(use_enable fastcgi) +} diff --git a/www-apps/cgisysinfo/metadata.xml b/www-apps/cgisysinfo/metadata.xml new file mode 100644 index 000000000000..4b0a8a6e7cff --- /dev/null +++ b/www-apps/cgisysinfo/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <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> + |