blob: 589c3cdecf37df64e41a80be12eba42d30a3faf8 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-zope/plone/plone-2.5.1-r1.ebuild,v 1.1 2007/01/09 22:55:54 radek Exp $
inherit zproduct
MY_P="Plone-2.5.1"
DESCRIPTION="A Zope Content Management System, based on Zope CMF."
HOMEPAGE="http://plone.org"
HOTFIXES_URI="http://plone.org/products/plone-hotfix/releases/20061031/PloneHotFix20061031.tar.gz"
SRC_URI="mirror://sourceforge/plone/${MY_P}-final.tar.gz
$HOTFIXES_URI"
LICENSE="GPL-2"
SLOT="2.5"
KEYWORDS="~x86 ~sparc ~ppc ~amd64"
IUSE=""
DEPEND="app-admin/zope-config"
RDEPEND="
>=dev-python/imaging-1.1.5
>=www-client/lynx-2.8.5
=net-zope/zope-2.9*
"
S="${WORKDIR}/${MY_P}"
ZPROD_LIST="
Archetypes
ATContentTypes
ATReferenceBrowserWidget
CacheFu
CMFActionIcons
CMFCalendar
CMFCore
CMFDefault
CMFDynamicViewFTI
CMFFormController
CMFPlacefulWorkflow
CMFPlone
CMFQuickInstallerTool
CMFSetup
CMFTopic
CMFUid
DCWorkflow
ExtendedPathIndex
ExternalEditor
GenericSetup
GroupUserFolder
kupu
Marshall
MimetypesRegistry
PasswordResetTool
PlacelessTranslationService
PloneErrorReporting
PloneLanguageTool
PlonePAS
PloneTestCase
PloneTranslations
PluggableAuthService
PluginRegistry
PortalTransforms
ResourceRegistries
SecureMailHost
statusmessages
validation
PloneHotFix20061031
"
src_compile() {
# hotfixes to be applied
cp -a "${WORKDIR}/PloneHotFix20061031/" "${WORKDIR}/${MY_P}/"
}
pkg_postinst() {
elog "This plone version is a bundled version = contains all necessary zope products"
elog "You should carefully manage Your zope instance manually(!) with zprod-manager tool"
elog "If You have simple installation (just zope and plone) you can safely execute:"
elog "'zprod-manager add' and then mark ${P} to be added to your instance."
elog
elog "Please be warned that this ${PF} contains security hotfix 20061031."
elog "You need manually re-add plone to Your zope instance to activate this hotfix!"
}
|