Some important changes since last OpenBSD package: - New metadata format introduced; shrinks md archives for most users by not storing redundant path names for each file - Speed up operations that do not need crypto secrets by not decrypting secrets upon startup - Add ctctl tool to change local crypto password - Fixed a metadata bug that made mixed endian architectures fail - Extract creates temporary files and then renames them instead of extracting directly into the original filename - Add support for include and exclude patterns for archive mode - Validate metadata file before commencing extract operation - Fix a bug where crypto secrets could not be copied between little and big endian machines and vice versa - Dramatically decrease memory footprint of cyphertite - Print out the filesize and mtime from the server prettily in md list mode - Permit differential backups of absolute paths to come from different working directories ok sthen@
37 lines
964 B
Makefile
37 lines
964 B
Makefile
# $OpenBSD: Makefile,v 1.6 2011/08/29 21:42:54 dhill Exp $
|
|
|
|
COMMENT = tar-like secure remote deduplicating archiver
|
|
|
|
DISTNAME = cyphertite-0.4.2
|
|
CATEGORIES = sysutils archivers security
|
|
|
|
HOMEPAGE = https://www.cyphertite.com/
|
|
MAINTAINER = David Hill <dhill@openbsd.org>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = assl>=3 c clog crypto event expat exude>=2 \
|
|
shrink sqlite3 ssl util xmlsd>=1
|
|
|
|
MASTER_SITES = http://opensource.conformal.com/snapshots/cyphertite/
|
|
|
|
LIB_DEPENDS = archivers/libshrink>=0.2.1 \
|
|
databases/sqlite3 \
|
|
devel/libclog>=0.3.4 \
|
|
devel/libexude>=0.4.0 \
|
|
security/assl>=0.9.6 \
|
|
textproc/libxmlsd>=0.5.0
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cyphertite
|
|
${INSTALL_DATA} ${WRKSRC}/cyphertite/cyphertite.conf \
|
|
${PREFIX}/share/examples/cyphertite/cyphertite.conf.sample
|
|
|
|
.include <bsd.port.mk>
|