blob: 38b6142acf82c9bb225326f6116882c8e15ece12 (
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/tomcat/tomcat-6.0.9_beta.ebuild,v 1.3 2007/02/15 02:19:06 wltjr Exp $
WANT_ANT_TASKS="ant-trax"
inherit eutils java-pkg-2 java-ant-2
DESCRIPTION="Tomcat Servlet-2.5/JSP-2.1 Container"
MY_P="apache-${P/_beta/}-src"
SLOT="6"
SRC_URI="mirror://apache/${PN}/${PN}-6/v${PV/_/-}/src/${MY_P}.tar.gz"
HOMEPAGE="http://tomcat.apache.org/"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
LICENSE="Apache-2.0"
IUSE="doc examples source test"
RDEPEND="|| ( >=virtual/jre-1.5 >=virtual/jre-1.6 )
=dev-java/eclipse-ecj-3.2*
>=dev-java/commons-daemon-1.0.1
>=dev-java/commons-dbcp-1.2.1
>=dev-java/commons-logging-1.1
>=dev-java/commons-pool-1.2
~dev-java/tomcat-servlet-api-${PV}"
DEPEND="|| ( >=virtual/jdk-1.5 >=virtual/jdk-1.6 )
${RDEPEND}
test? ( dev-java/junit )"
S=${WORKDIR}/${MY_P}
TOMCAT_NAME="${PN}-${SLOT}"
TOMCAT_HOME="/usr/share/${TOMCAT_NAME}"
WEBAPPS_DIR="/var/lib/${TOMCAT_NAME}/webapps"
pkg_setup() {
enewgroup tomcat 265
enewuser tomcat 265 -1 /dev/null tomcat
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${SLOT}/build-xml.patch"
}
src_compile(){
# Prevent out of memory/heap space errors
# Not sure if this is happening for others
# Old way
# java-pkg_force-compiler ecj-3.2
# New way if others get out of heap space
# ANT_OPTS=-XX:MaxPermSize=128m
local antflags="build-jasper-jdt deploy -Dbase.path=${T}"
antflags="${antflags} -Dcompile.debug=false"
if ! use doc; then
antflags="${antflags} -Dnobuild.docs=true"
fi
antflags="${antflags} -Dant.jar=$(java-pkg_getjar ant-core ant.jar)"
antflags="${antflags} -Dcommons-daemon.jar=$(java-pkg_getjar commons-daemon commons-daemon.jar)"
antflags="${antflags} -Djdt.jar=$(java-pkg_getjar eclipse-ecj-3.2 ecj.jar)"
antflags="${antflags} -Djsp-api.jar=$(java-pkg_getjar tomcat-servlet-api-2.5 jsp-api.jar)"
antflags="${antflags} -Dservlet-api.jar=$(java-pkg_getjar tomcat-servlet-api-2.5 servlet-api.jar)"
eant ${antflags}
}
src_install() {
local CATALINA_BASE=/var/lib/${TOMCAT_NAME}/
# init.d, conf.d
newinitd ${FILESDIR}/${SLOT}/tomcat.init ${TOMCAT_NAME}
newconfd ${FILESDIR}/${SLOT}/tomcat.conf ${TOMCAT_NAME}
# create dir structure
diropts -m755 -o tomcat -g tomcat
dodir /etc/${TOMCAT_NAME}
fperms 750 /etc/${TOMCAT_NAME}
dodir /usr/share/${TOMCAT_NAME}
keepdir /var/log/${TOMCAT_NAME}/
keepdir /var/tmp/${TOMCAT_NAME}/
keepdir /var/run/${TOMCAT_NAME}/
dodir ${CATALINA_BASE}
diropts -m0755
cd "${S}"
# we don't need dos scripts
rm -f bin/*.bat
chmod 755 bin/*.sh
# fix context's since upstream is slackin
sed -i -e 's:}/server/:}/:' ${S}/webapps/host-manager/host-manager.xml
sed -i -e 's:}/server/:}/:' ${S}/webapps/manager/manager.xml
# copy the manager's context to the right position
mkdir -p conf/Catalina/localhost
cp ${S}/webapps/host-manager/host-manager.xml conf/Catalina/localhost
cp ${S}/webapps/manager/manager.xml conf/Catalina/localhost
# replace the default pw with a random one, see #92281
local randpw=$(echo ${RANDOM}|md5sum|cut -c 1-15)
sed -e s:SHUTDOWN:${randpw}: -i conf/server.xml
# copy over the directories
chown -R tomcat:tomcat webapps/* conf/*
cp -pR conf/* ${D}/etc/${TOMCAT_NAME} || die "failed to copy conf"
cp -R bin output/build/bin output/build/lib ${D}/usr/share/${TOMCAT_NAME} \
|| die "failed to copy"
cp ${T}/tomcat6-deps/jdt/jasper-jdt.jar ${D}/usr/share/${TOMCAT_NAME}/lib \
|| die "failed to copy"
keepdir ${WEBAPPS_DIR}
chown tomcat:tomcat ${D}/${WEBAPPS_DIR} || die "Failed to change owner off ${1}."
chmod 750 ${D}/${WEBAPPS_DIR} || die "Failed to change permissions off ${1}."
cd "${D}/usr/share/${TOMCAT_NAME}/lib"
java-pkg_jar-from tomcat-servlet-api-2.5
cd "${S}"
# Copy over webapps, some controlled by use flags
cp -p RELEASE-NOTES webapps/ROOT/RELEASE-NOTES.txt
cp -pr webapps/ROOT ${D}${CATALINA_BASE}/webapps
mkdir ${D}${TOMCAT_HOME}/webapps
chown tomcat:tomcat ${D}${TOMCAT_HOME}/webapps
cp -pr webapps/host-manager ${D}${TOMCAT_HOME}/webapps
cp -pr webapps/manager ${D}${TOMCAT_HOME}/webapps
if use doc; then
cp -pr output/build/webapps/docs ${D}${CATALINA_BASE}/webapps
fi
if use examples; then
cp -pr output/build/webapps/examples ${D}${CATALINA_BASE}/webapps
fi
# symlink the directories to make CATALINA_BASE possible
dosym /etc/${TOMCAT_NAME} ${CATALINA_BASE}/conf
dosym /var/log/${TOMCAT_NAME} ${CATALINA_BASE}/logs
dosym /var/tmp/${TOMCAT_NAME} ${CATALINA_BASE}/temp
dosym /var/run/${TOMCAT_NAME} ${CATALINA_BASE}/work
dodoc ${S}/{RELEASE-NOTES,RUNNING.txt}
fperms 640 /etc/${TOMCAT_NAME}/tomcat-users.xml
}
pkg_postinst() {
elog
elog " This ebuild implements a FHS compliant layout for tomcat"
elog " Please read http://www.gentoo.org/proj/en/java/tomcat-guide.xml"
elog " for more information."
elog
elog " Please report any bugs to http://bugs.gentoo.org/"
elog
}
|