45042aceea
cfvers is a versioning system for configuration files. It is similar to cvs and subversion, but different in its orientation toward system configuration files (think /etc), dealing with all file types and attributes. Features: - does not pollute the filesystem outside its dirs; - keeps both data and metadata (owner, group, perms, atime, mtime); - deals with all types of files (S_IFSOCK, S_IFLNK, S_IFREG, S_IFBLK, S_IFDIR, S_IFCHR, S_IFIFO); WWW: http://www.nongnu.org/cfvers/ PR: ports/72419 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
37 lines
810 B
Makefile
37 lines
810 B
Makefile
# New ports collection makefile for: cfvers
|
|
# Date created: 2004-10-06
|
|
# Whom: janos.mohacsi@bsd.hu
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cfvers
|
|
PORTVERSION= 0.4.6
|
|
CATEGORIES= sysutils devel
|
|
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Configuration versioning system
|
|
|
|
RUN_DEPENDS= ${PYTHON_SIELIBDIR}/sqlite/main.py:${PORTSDIR}/databases/py-PySQLite
|
|
|
|
USE_GMAKE= yes
|
|
USE_PYTHON= yes
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= cfv.1 cfvadmin.1
|
|
DOCS= AUTHORS NEWS README TODO doc/*.html
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} -e 's,/etc/cfvers.conf,${PREFIX}/etc/cfvers.conf,g' \
|
|
${WRKSRC}/cfvers/cmd.py
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|