blob: 3c28ef2933b166890a1aba3136510192dd28ccdb (
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
99
100
101
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_survey/mod_survey-3.2.4.ebuild,v 1.3 2006/12/11 02:08:24 rl03 Exp $
inherit webapp
WEBAPP_MANUAL_SLOT="yes"
SLOT="0"
DESCRIPTION="XML-defined web questionnaires as a plug-in module for Apache"
HOMEPAGE="http://www.modsurvey.org"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="apache2 doc mysql nls postgres"
MY_PN=${PN/_/}
MY_PV=${PV/_/-}
S=${WORKDIR}/${PN}
SRC_URI="http://www.modsurvey.org/download/tarballs/${MY_PN}-${MY_PV}.tgz
doc? ( http://www.modsurvey.org/download/tarballs/${MY_PN}-docs-${MY_PV}.tgz )"
DEPEND=">=dev-lang/perl-5.6.1"
RDEPEND="${DEPEND}
apache2? ( >=net-www/apache-2 >=www-apache/mod_perl-1.99 )
!apache2? ( >=net-www/apache-1 <www-apache/mod_perl-1.99 )
postgres? ( >=dev-perl/DBI-1.38 dev-perl/DBD-Pg )
mysql? ( >=dev-perl/DBI-1.38 dev-perl/DBD-mysql )
>=virtual/perl-CGI-3.0.0"
LICENSE="GPL-2"
pkg_setup() {
webapp_pkg_setup
# stolen from app-admin/webalizer
# USE=nls has no real meaning if LINGUAS isn't set
if use nls && [ -z "${LINGUAS}" ]; then
ewarn "you must set LINGUAS in /etc/make.conf"
ewarn "if you want to USE=nls"
die "please either set LINGUAS or do not use nls"
fi
}
src_unpack() {
unpack ${A}
cd ${S}
rm -f docs/LICENSE.txt
sed -i "s|/usr/local/mod_survey/|${D}/usr/lib/mod_survey/|g" installer.pl
use doc && unpack ${MY_PN}-docs-${PV}.tgz
# unfortunatly, this program only allows for one lang, so only the first
# entry in LINGUAS is used
if use nls; then
local locallang
if ! grep -q ${LINGUAS:0:2} ${FILESDIR}/language-list.txt; then
ewarn "Language ${LINGUAS:0:2} is not supported, using English"
else
elog "Using language ${LINGUAS:0:2}"
locallang="$(grep ^${LINGUAS:0:2} ${FILESDIR}/language-list.txt)"
sed "s|\$lang = \"en\"|\$lang = \"${locallang}\"|" -i installer.pl
fi
fi
if ! use apache2; then
sed "s|\$isa2 = \"Off\"|\$isa2 = \"On\"|" -i installer.pl
fi
}
src_install() {
webapp_src_preinst
dodir /usr/lib/mod_survey
dodir /var/lib/mod_survey/data
dodir ${MY_HOSTROOTDIR}/${PN}
dodoc README.txt docs/*
perl installer.pl < /dev/null > /dev/null 2>&1
dosed /usr/lib/mod_survey/survey.conf
sed -i "s|/usr/lib/mod_survey/data/|/var/lib/mod_survey/data/|" ${D}/usr/lib/mod_survey/survey.conf
mv ${D}/usr/lib/mod_survey/survey.conf ${D}/${MY_HOSTROOTDIR}/${PN}
rm -rf ${D}/usr/lib/mod_survey/webroot ${D}/usr/lib/mod_survey/data
cp -R webroot/* ${D}/${MY_HTDOCSDIR}
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_hook_script ${FILESDIR}/reconfig
webapp_src_install
fowners apache:apache /var/lib/mod_survey/data
}
pkg_postinst(){
if [ ${#LINGUAS} -gt 2 ] && use nls; then
ewarn
ewarn "You have more than one language in LINGUAS"
ewarn "Due to the limitations of this package, it was built"
ewarn "only with ${LINGUAS:0:2} support. If this is not what"
ewarn "you intended, please place the language you desire"
ewarn "_first_ in the list of LINGUAS in /etc/make.conf"
ewarn
fi
webapp_pkg_postinst
}
|