blob: 54eefcba1f22cd866944eb3d4cc91140f8beebe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-zope/verbosesecurity/verbosesecurity-0.6.ebuild,v 1.2 2006/01/27 02:49:08 vapier Exp $
inherit zproduct eutils
DESCRIPTION="Zope Product which explains the reason for denied security access"
HOMEPAGE="http://hathawaymix.org/Software/VerboseSecurity"
SRC_URI="${HOMEPAGE}/VerboseSecurity-${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86"
RDEPEND=">=net-zope/zope-2.7.0"
S=${WORKDIR}
ZPROD_LIST="VerboseSecurity"
pkg_preinst() {
echo
ewarn "This product does a 'monkey patch' to Zope."
ewarn "One of the results being that zope will execute a little slower."
echo
ebeep 5
epause 8
}
|