blob: c7153d431929572d2d0858739340c2bf4679ecfa (
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/otrs/otrs-2.0.3.ebuild,v 1.1.1.1 2005/11/30 09:37:05 chriswhite Exp $
inherit webapp eutils
S=${WORKDIR}/${PN}
IUSE="mysql postgres fastcgi apache2 ldap gd"
DESCRIPTION="OTRS is an Open source Ticket Request System"
HOMEPAGE="http://otrs.org/"
SRC_URI="ftp://ftp.otrs.org/pub/${PN}/${P}-01.tar.bz2"
KEYWORDS="~x86 ~ppc"
DEPEND="
=dev-lang/perl-5*
dev-perl/Date-Pcalc
dev-perl/DBI
perl-core/CGI
perl-core/Digest-MD5
dev-perl/libwww-perl
dev-perl/IO-stringy
perl-core/MIME-Base64
dev-perl/MIME-tools
dev-perl/MailTools
dev-perl/Net-DNS
dev-perl/libnet
dev-perl/Authen-SASL
dev-perl/XML-Parser
"
RDEPEND="
${DEPEND}
virtual/mta
ldap? ( dev-perl/perl-ldap net-nds/openldap )
mysql? ( =dev-db/mysql-4* dev-perl/DBD-mysql )
postgres? ( dev-db/postgresql dev-perl/DBD-Pg )
apache2? ( >=net-www/apache-2
fastcgi? ( dev-perl/FCGI net-www/mod_fastcgi )
!fastcgi? ( =www-apache/libapreq2-2* ) )
!apache2? ( =net-www/apache-1*
fastcgi? ( dev-perl/FCGI net-www/mod_fastcgi )
!fastcgi? ( =www-apache/libapreq-1* ) )
gd? ( dev-perl/GD dev-perl/GDTextUtil dev-perl/GDGraph )
"
LICENSE="GPL-2"
pkg_setup() {
webapp_pkg_setup
enewuser otrs -1 -1 /dev/null apache
if ! use vhosts; then
ewarn
ewarn "otrs will be installed using webapp-config -d otrs,"
ewarn "which may mess up Apache configs."
ewarn "If that happens, re-emerge with USE=\"vhosts\""
ewarn
fi
}
src_unpack() {
unpack ${A}
cp ${S}/Kernel/Config.pm.dist ${S}/Kernel/Config.pm
cd ${S}/Kernel/Config/
for foo in *.dist; do cp ${foo} `basename ${foo} .dist`; done
cd ${S}/scripts
rm -rf auto_* redhat* suse*
if use fastcgi; then
if ! use apache2; then
epatch ${FILESDIR}/apache1.patch
sed -e "s|cgi-bin|fcgi-bin|" -i ${S}/scripts/apache-httpd.include.conf
fi
if use apache2; then
epatch ${FILESDIR}/apache2.patch
sed -e "s|cgi-bin|fcgi-bin|" -i ${S}/scripts/apache2-httpd.include.conf
fi
sed -e "s|index.pl|index.fpl|" -i ${S}/var/httpd/htdocs/index.html
fi
}
src_install() {
webapp_src_preinst
dodir ${MY_HOSTROOTDIR}/${PF}
# install documentation
dodoc CHANGES CREDITS INSTALL README* TODO UPGRADING \
doc/otrs-database.dia doc/test-* doc/X-OTRS-Headers.txt \
.fetchmailrc.dist .mailfilter.dist .procmailrc.dist
dohtml doc/manual/{en,de}/html/*
# copy main files
cp -R .fetchmailrc.dist .mailfilter.dist .procmailrc.dist RELEASE Kernel bin scripts var ${D}/${MY_HOSTROOTDIR}/${PF}
mv ${D}/${MY_HOSTROOTDIR}/${PF}/var/httpd/htdocs/* ${D}/${MY_HTDOCSDIR}
# remove stuff from ${D} that shouldn't be there
rm -rf ${D}/${MY_HOSTROOTDIR}/${PF}/var/httpd
# keep some empty dirs
local a
local d="article log pics/images pics/stats pics sessions spool tmp"
for a in ${d}; do
keepdir ${MY_HOSTROOTDIR}/${PF}/var/${a}
done
# helpers
webapp_configfile ${MY_HOSTROOTDIR}/${PF}/Kernel/Config.pm
webapp_postinst_txt en ${FILESDIR}/postinstall-en-2.txt
webapp_hook_script ${FILESDIR}/reconfig-2
webapp_src_install
}
pkg_postinst() {
use vhosts && {
ewarn
ewarn "Don't run webapp-config with -d otrs."
ewarn "That will mess up Apache configs."
ewarn "Use something like -d ot"
ewarn
}
webapp_pkg_postinst
}
|