mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
a172b298f4
This port was removed in September 2010 because the project (python VCS) had been abandoned for at least 3 years. The submitter adopted the project and updated it without changing the version number (hence the port revision bump). The submitter naturally becomes the new maintainer. Psyco support has been removed since psyco report no longer exists. PR: 188995 Submitted by: Chris Hutchison
41 lines
917 B
Makefile
41 lines
917 B
Makefile
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= codeville
|
|
PORTVERSION= 0.1.16
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://bsdforge.com/projects/source/devel/codeville/
|
|
DISTNAME= Codeville-${PORTVERSION}
|
|
|
|
MAINTAINER= portmaster@bsdforge.com
|
|
COMMENT= Anarchic control version system without unnecessary re-merges
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= tar:xz
|
|
USE_PYTHON= yes
|
|
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
PYDISTUTILS_PKGNAME= Codeville
|
|
|
|
PORTDOCS= LICENSE.txt
|
|
EXAMPLE_FILES= cdvserver.conf.sample
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
# examples
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/${EXAMPLE_FILES} ${STAGEDIR}${EXAMPLESDIR}
|
|
# documentation
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|