blob: 94af5e5ce05049cddf2e1b5c0a2a98c76c94feba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/scgi/scgi-1.13.ebuild,v 1.2 2010/01/07 15:55:56 fauli Exp $
inherit distutils
DESCRIPTION="Replacement for the CGI protocol that is similar to FastCGI."
HOMEPAGE="http://www.mems-exchange.org/software/scgi/"
SRC_URI="http://python.ca/scgi/releases/${P}.tar.gz"
LICENSE="CNRI"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
pkg_postinst() {
distutils_pkg_postinst
einfo "This package does not install mod_scgi!"
einfo "Please 'emerge mod_scgi' if you need it."
}
|