I have adopted the package and updated it to 1.2.40. Please feel free to share any comments or suggestions for the package.
Search Criteria
Package Details: mod_jk 1.2.40-1
Package Actions
| Package Base: | mod_jk |
|---|---|
| Description: | The Apache Tomcat Connector |
| Upstream URL: | http://tomcat.apache.org/connectors-doc/ |
| Category: | network |
| Licenses: | |
| Submitter: | None |
| Maintainer: | windy |
| Last Packager: | windy |
| Votes: | 18 |
| First Submitted: | 2006-02-01 23:49 |
| Last Updated: | 2015-02-13 18:23 |
Dependencies (2)
Required by (0)
Sources
Latest Comments
Comment by windy
Comment by fbudassi
Hi!
As the package is really out of date and it's actually not working right now, I decided to fix it. I'm not able to update a new PKGBUILD for this package, so I decided to post here the new code for it, so that you can use it in your own system.
Regards,
Federico Budassi.
# Contributor: [Vitaliy Berdinskikh](mailto:ur6lad@archlinux.org.ua) aka UR6LAD
# Contributor: [Federico Budassi](mailto:federico.budassi@gmail.com)
pkgname=mod_jk
pkgver=1.2.40
pkgrel=1
pkgdesc="The Apache Tomcat Connector"
arch=('any')
url="http://tomcat.apache.org/connectors-doc/"
license=('Apache')
depends=('java-environment' 'apache')
source=(http://www.eu.apache.org/dist/tomcat/tomcat-connectors/jk/tomcat-connectors-${pkgver}-src.tar.gz)
build() {
cd $srcdir/tomcat-connectors-${pkgver}-src/native/
./configure \
--prefix=/usr \
--with-apxs=/usr/sbin/apxs \
--sysconfdir=/etc
make
}
package() {
cd $srcdir/tomcat-connectors-${pkgver}-src/native/
install -D -m755 apache-2.0/mod_jk.so "$pkgdir/usr/lib/httpd/modules/mod_jk.so"
}
md5sums=('7e6f4e4dbf5261f42ddd1fdbb9ac3e32')
sha1sums=('e20641db5b658f9ae596ef60f527075d4f788455')
Comment by robvelor
@anatolik That worked thanks.
Comment by anatolik
Remove "mkdir -p $pkgdir/usr/lib/httpd/modules" and use
install -D -m755 apache-2.0/mod_jk.so "$pkgdir/usr/lib/httpd/modules/mod_jk.so"
Comment by egore911
I had to move the first line:
mkdir -p $pkgdir/usr/lib/httpd/modules
from build() to be the first line of package(). Otherwise it would create a "pkg" directory with chmod 000 and couldn't enter it.
Comment by ur6lad
1.2.37
Comment by mtorromeo
The source link does not work (404) and there is version 1.2.37 out. Would you mind updating?
Thanks.
Comment by ur6lad
1.2.36
Comment by ur6lad
1.2.31