forked from Lainports/freebsd-ports
This is a bundle of several ports covering many typical requirements for building an Apple WebObjects deployment environment. Each port is or has a dependancy with some other port in the bundle, and have therefore been lodged collectively. www/webobjects WebObjects runtime is the deployment environment for Apple WebObjects Applications. WebObjects is a suite of tools and object-oriented frameworks that enable you to create and deploy web applications and web services using Java. WWW: http://www.apple.com/webobjects PR: ports/117299 Submitted by: Quinton Dolan <q@onthenet.com.au>
19 lines
238 B
Bash
19 lines
238 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PATH=/bin:/usr/bin:/usr/sbin
|
|
RMDIR="/bin/rmdir"
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
;;
|
|
POST-DEINSTALL)
|
|
${RMDIR} /var/log/webobjects 2>/dev/null
|
|
${RMDIR} /var/run/webobjects 2>/dev/null
|
|
;;
|
|
*)
|
|
exit 64
|
|
esac
|
|
exit 0
|