mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
014b12c237
Update ports www/zope-placelesstranslationservice from 1.0r7 to 1.0r8. This version has been released since 2004-07-09. I want to update this to use with japanized-zope PR: ports/74065 Submitted by: HAYASHI Yasushi <yasi@yasi.to>
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
# New ports collection makefile for: zope-placelesstranslationservice
|
|
# Date created: 30 January 2004
|
|
# Whom: Khairil Yusof
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= placelesstranslationservice
|
|
PORTVERSION= 1.0r8
|
|
CATEGORIES= www zope
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= collective
|
|
PKGNAMEPREFIX= zope-
|
|
DISTNAME= PlacelessTranslationService-1.0-rc8
|
|
|
|
MAINTAINER= kaeru@inigo-tech.com
|
|
COMMENT= PlacelessTranslationService product for Zope/CMF
|
|
|
|
USE_PYTHON= yes
|
|
USE_ZOPE= yes
|
|
DIST_SUBDIR= zope
|
|
|
|
ZOPEPRODUCTNAME=PlacelessTranslationService
|
|
|
|
PLIST= ${WRKDIR}/pkg-plist
|
|
WRKSRC= ${WRKDIR}/${ZOPEPRODUCTNAME}
|
|
|
|
do-build:
|
|
-@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/
|
|
|
|
pre-install:
|
|
@${RM} -f ${PLIST}
|
|
@${TOUCH} ${PLIST}
|
|
@cd ${WRKDIR} ;\
|
|
for f in `${FIND} ${ZOPEPRODUCTNAME} -type f`; do \
|
|
${ECHO_CMD} %%ZOPEPRODUCTDIR%%/$${f} >> ${PLIST}; \
|
|
done; \
|
|
for d in `${FIND} -d ${ZOPEPRODUCTNAME} -type d`; do \
|
|
${ECHO_CMD} @dirrm %%ZOPEPRODUCTDIR%%/$${d} >> ${PLIST}; \
|
|
done; \
|
|
|
|
do-install:
|
|
@${MKDIR} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/
|
|
@${CHMOD} -R og+rX ${WRKSRC}/
|
|
@${CP} -R ${WRKSRC} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/
|
|
|
|
post-install:
|
|
.if !defined(BATCH)
|
|
@${CAT} ${PKGMESSAGE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|