2c5ec667e7
ZSyncer is a Zope 2 product that allows you to synchronize and compare objects from one zope (source) to another (destination). It is a lot more convenient than the old manual export/transfer/import procedure. ZSyncer supports SSL as well as insecure HTTP. ZSyncer also allows you to view a diff against the destination object, for many types of objects. OK mbalmer@.
28 lines
595 B
Makefile
28 lines
595 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/10/17 10:14:52 xsa Exp $
|
|
|
|
COMMENT= "synchronize and compare Zope objects"
|
|
|
|
DISTNAME= ZSyncer-0.7.1
|
|
PKGNAME= zope-${DISTNAME:L}
|
|
CATEGORIES= www
|
|
HOMEPAGE= http://zsyncer.sourceforge.net
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=zsyncer/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MODULES= zope
|
|
|
|
WRKDIST= ${WRKDIR}/ZSyncer
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${MODZOPE_PRODUCTSDIR}
|
|
cd ${WRKDIR}; tar cf - ZSyncer | tar xf - -C ${MODZOPE_PRODUCTSDIR}
|
|
|
|
.include <bsd.port.mk>
|