blob: 8d4b2d8035bc54ad56c556e237f813bcc6ae0d3b (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/cgiirc/cgiirc-0.5.9.ebuild,v 1.1 2006/10/04 04:07:30 rl03 Exp $
IUSE=""
inherit webapp
DESCRIPTION="A perl/CGI program to use IRC from a web browser"
HOMEPAGE="http://cgiirc.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~amd64"
src_unpack() {
elog "Note that file locations have changed."
elog "CGI:IRC will be installed into cgi-bin/${P}"
unpack ${A}
find ${S} -name .cvsignore -exec rm {} \;
}
src_install() {
webapp_src_preinst
local docs="README cgiirc.config.full ipaccess.example"
dodoc docs/{CHANGES,TODO} ${docs}
dohtml docs/help.html
dodir ${MY_CGIBINDIR}/${P}
cp -R . ${D}/${MY_CGIBINDIR}/${P}
cd ${D}/${MY_CGIBINDIR}/${P}
rm -rf docs ${docs}
webapp_configfile ${MY_CGIBINDIR}/${P}/cgiirc.config
webapp_src_install
}
|