summaryrefslogtreecommitdiff
blob: 1a41237b19e0fc670fcc8261e453c6fda8c43ec9 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/viewcvs/viewcvs-0.9.2-r3.ebuild,v 1.3 2004/06/25 01:14:56 agriffis Exp $

PDATE=${PV/0.9.2_p/}
DESCRIPTION="Viewcvs, a web interface to cvs and subversion"
HOMEPAGE="http://viewcvs.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-${PDATE}.tar.gz"

LICENSE="viewcvs"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="apache2"

DEPEND=""
RDEPEND=">=app-text/rcs-5.7
	>=dev-util/cvs-1.11
	sys-apps/diffutils
	net-www/apache"

WWW="/var/www/localhost/viewcvs"

doinstall() {
	# start_location=$1
	# end_location=$2
	# mode=$3
	if [ -d $1 ]; then
		install -o root -d ${D}/$2
		for f in ${1}/*
		do
			doinstall ${f} ${f/${1}/${2}} $3
		done
	else
		sed -e "{ s,\(^#!.*$\),#!/usr/bin/python,; \
		s,\(<VIEWCVS_INSTALL_DIRECTORY>\),${WWW},; \
		s,\(^LIBRARY_DIR\)\(.*\$\),\1 = \"${WWW}/lib\",; \
		s,\(^CONF_PATHNAME\)\(.*\$\),\1 = \"${WWW}/viewcvs.conf\",}" ${1} >${1}.cpy

		install -o root -m $3 ${1}.cpy ${D}/$2
		rm ${1}.cpy
	fi
}

src_install() {
	cd ${S}
	install -o root -d ${D}/${WWW}/cgi

	doinstall cgi/viewcvs.cgi ${WWW}/cgi/viewcvs.cgi 755
	doinstall cgi/query.cgi ${WWW}/cgi/query.cgi 755
	doinstall standalone.py ${WWW}/standalone.py 755
	doinstall tools/loginfo-handler ${WWW}/loginfo-handler 755
	doinstall tools/cvsdbadmin ${WWW}/cvsdbadmin 755
	doinstall tools/make-database ${WWW}/make-database 755

	insinto /etc/viewcvs
	doinstall cgi/viewcvs.conf.dist ${WWW}/viewcvs.conf 644
	doinstall cgi/cvsgraph.conf.dist ${WWW}/cvsgraph.conf 644

	doinstall lib ${WWW}/lib 644
	doinstall templates ${WWW}/templates 644

	doinstall website ${WWW}/doc 644

	dosym ${WWW}/viewcvs.conf /etc/viewcvs/viewcvs.conf
	dosym ${WWW}/cvsgraph.conf /etc/viewcvs/cvsgraph.conf

	cat <<EOF >apache.conf
# Enables ViewCVS in /var/www/localhost/viewcvs and creates an alias to /viewcvs
# Configuration of ViewCVS could be done in /etc/viewcvs/

ScriptAlias /viewcvs /var/www/localhost/viewcvs/cgi/viewcvs.cgi
ScriptAlias /cvsquery /var/www/localhost/viewcvs/cgi/cvsquery.cgi

<Directory /var/www/localhost/viewcvs/cgi>
	Options ExecCGI
	<IfModule mod_access.c>
		Order allow,deny
		Allow from all
	</IfModule>
</Directory>
EOF

	if use apache2; then
		cp apache.conf 47_viewcvs.conf
		insinto /etc/apache2/conf/modules.d
		doins 47_viewcvs.conf
	fi

	dodoc INSTALL TODO CHANGES README apache.conf
}

pkg_postinst() {
	ewarn "Before using viewcvs make sure you configure it correctly."
	einfo "There is a sample apache integration configuration file in the"
	einfo "documentation directory named: apache.conf"
	einfo "If you're using apache2 this configuration is already done for"
	einfo "you in /etc/apache2/conf/modules.d/47_viewcvs.conf"
}