diff options
author | Rafael Martins <rafaelmartins@gentoo.org> | 2011-03-27 04:31:18 +0000 |
---|---|---|
committer | Rafael Martins <rafaelmartins@gentoo.org> | 2011-03-27 04:31:18 +0000 |
commit | f7f5b56b0b4c3f9cb519d8e6e6578669fc5838eb (patch) | |
tree | b7d575ed15486121596eb2494b3e1edf55a7c48f /www-apps/cgisysinfo | |
parent | remove masks for removed packages (diff) | |
download | gentoo-2-f7f5b56b0b4c3f9cb519d8e6e6578669fc5838eb.tar.gz gentoo-2-f7f5b56b0b4c3f9cb519d8e6e6578669fc5838eb.tar.bz2 gentoo-2-f7f5b56b0b4c3f9cb519d8e6e6578669fc5838eb.zip |
Version bump.
(Portage version: 2.2.0_alpha26/cvs/Linux x86_64)
Diffstat (limited to 'www-apps/cgisysinfo')
-rw-r--r-- | www-apps/cgisysinfo/ChangeLog | 8 | ||||
-rw-r--r-- | www-apps/cgisysinfo/cgisysinfo-0.2.ebuild (renamed from www-apps/cgisysinfo/cgisysinfo-0.1.ebuild) | 13 |
2 files changed, 17 insertions, 4 deletions
diff --git a/www-apps/cgisysinfo/ChangeLog b/www-apps/cgisysinfo/ChangeLog index 494a85205646..d715f087669a 100644 --- a/www-apps/cgisysinfo/ChangeLog +++ b/www-apps/cgisysinfo/ChangeLog @@ -1,6 +1,12 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/cgisysinfo/ChangeLog,v 1.2 2011/03/27 04:31:18 rafaelmartins Exp $ + +*cgisysinfo-0.2 (27 Mar 2011) + + 27 Mar 2011; Rafael G. Martins <rafaelmartins@gentoo.org> + -cgisysinfo-0.1.ebuild, +cgisysinfo-0.2.ebuild: + Version bump. *cgisysinfo-0.1 (02 Mar 2011) diff --git a/www-apps/cgisysinfo/cgisysinfo-0.1.ebuild b/www-apps/cgisysinfo/cgisysinfo-0.2.ebuild index 86a3b5e05074..a16b2245c3e9 100644 --- a/www-apps/cgisysinfo/cgisysinfo-0.1.ebuild +++ b/www-apps/cgisysinfo/cgisysinfo-0.2.ebuild @@ -1,6 +1,6 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/cgisysinfo/cgisysinfo-0.2.ebuild,v 1.1 2011/03/27 04:31:18 rafaelmartins Exp $ EAPI="4" @@ -16,11 +16,14 @@ else fi DESCRIPTION="A small cgi utility to show basic system information." -HOMEPAGE="http://labs.rafaelmartins.org/wiki/cgisysinfo" +HOMEPAGE="http://labs.rafaelmartins.eng.br/wiki/cgisysinfo" LICENSE="GPL-2" SLOT="0" -IUSE="" +IUSE="fastcgi" + +DEPEND="fastcgi? ( dev-libs/fcgi )" +RDEPEND="${DEPEND}" DOCS="README AUTHORS NEWS" @@ -28,6 +31,10 @@ src_prepare() { [[ ${PV} = *9999* ]] && eautoreconf } +src_configure() { + econf $(use_enable fastcgi) +} + pkg_postinst() { elog "Please read the README file for usage info." } |