blob: fb8dad8f6540553a0149efad5bc0acb89c9f673f (
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 2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-zope/neoboard/neoboard-1.1.ebuild,v 1.1 2003/04/07 04:00:22 kutsuya Exp $
inherit zproduct
P_NEW="NeoBoard-${PV}"
DESCRIPTION="Threaded message boards w/articles, attachments, & i18n."
HOMEPAGE="http://www.zoper.net/"
SRC_URI="${HOMEPAGE}/Downloads/${P_NEW}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
RDEPEND="net-zope/neoportallibrary
${RDEPEND}"
ZPROD_LIST="NeoBoard"
src_unpack()
{
unpack ${A}
mv ${S}/${P_NEW} ${S}/NeoBoard
}
pkg_postinst()
{
zproduct_pkg_postinst
ewarn "There are three different ways to add this product to your"
ewarn "Zope/CMF/Plone site. Please consult the documentation."
}
|