blob: 0e65880b92792476142a0ec4e128791d2e2f7a36 (
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
28
29
30
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-zope/externaleditor/externaleditor-0.5.ebuild,v 1.5 2003/09/08 10:45:19 msterret Exp $
inherit zproduct
DESCRIPTION="Allows you to use your favorite editor(s) from ZMI."
HOMEPAGE="http://www.zope.org/Members/Caseman/ExternalEditor/"
SRC_URI="${HOMEPAGE}/ExternalEditor-${PV}.tgz
${HOMEPAGE}/zopeedit-${PV}-src.tgz"
LICENSE="ZPL"
KEYWORDS="x86 ~ppc"
ZPROD_LIST="ExternalEditor"
src_install()
{
dobin zopeedit.py
rm -f zopeedit.py
zproduct_src_install all
}
pkg_postinst()
{
zproduct_pkg_postinst
ewarn
ewarn "To use the External Editor Zope Product you will need to manually"
ewarn "configure the helper application(/usr/bin/zopeedit.py) for your"
ewarn "browser. Read the documention for ExternalEditor."
}
|