mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
c985b7a8d6
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>
28 lines
1.2 KiB
Makefile
28 lines
1.2 KiB
Makefile
PLIST_GEN=${SH} -c '((${ECHO_CMD} ${FIND} -d $$0 ! -type d $$2) | ${SH} | \
|
|
${SED} -e "s,^,$$1/, ; s,^${PREFIX}/,," >> ${TMPPLIST}) && \
|
|
((${ECHO_CMD} ${FIND} -d $$0 -type d -empty $$2) | ${SH} | \
|
|
${SED} -e "s,^,$$1/, ; s,^${PREFIX}/,@exec mkdir -p %D/," \
|
|
>> ${TMPPLIST}) && \
|
|
((${ECHO_CMD} ${FIND} -d $$0 -type d $$2) | ${SH} | \
|
|
${SED} -e "s,^,$$1/, ; s,^${PREFIX}/,@dirrm ," >> ${TMPPLIST})' --
|
|
PLIST_DIRRMTRY=${SH} -c '(BASE=`${ECHO_CMD} $$0 | ${SED} -e "s,^${PREFIX}/,,"` ; \
|
|
while [ $$\# -gt 0 ] ; do \
|
|
DIRNAME=$${1-.}; \
|
|
while [ "$$DIRNAME" != "." ]; do \
|
|
(${ECHO_CMD} "@unexec rmdir %D/$$BASE/$$DIRNAME 2>/dev/null || true" >> ${TMPPLIST}); \
|
|
DIRNAME=`dirname $$DIRNAME`; \
|
|
done; \
|
|
shift; \
|
|
done; \
|
|
${ECHO_CMD} "@unexec rmdir %D/$$BASE 2>/dev/null || true" >> ${TMPPLIST};)' --
|
|
PLIST_DIRRM=${SH} -c '(BASE=$$0; BASE=`${ECHO_CMD} $$BASE | ${SED} -e "s,^${PREFIX}/,,"` ; \
|
|
while [ $$\# -gt 0 ] ; do \
|
|
DIRNAME=$${1-.}; \
|
|
while [ "$$DIRNAME" != "." ]; do \
|
|
(${ECHO_CMD} "@dirrm $$BASE/$$DIRNAME" >> ${TMPPLIST}); \
|
|
DIRNAME=`dirname $$DIRNAME`; \
|
|
done; \
|
|
shift; \
|
|
done; \
|
|
(${ECHO_CMD} "@dirrm $$BASE" >> ${TMPPLIST});)' --
|