pkgsrc/devel/arch/Makefile
jonb 696793a797 Update arch to version 1.0pre16. This fixes several problems:
1) Don't bother with GNU patch, now that our patch can handle
   our diff output for files that don't have newlines at the end.

2) There was a bug in the older versions of arch that could corrupt
   the archive libraries (think CVS repository corruption)

3) lots of other fixes that are scattered in Changelog files
   all over the place and mixed in with administrivial details.
   (Otherwise I would have listed them here...)

Now off to find a PR or two to close since we are in a freeze.
2002-07-24 22:59:28 +00:00

43 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.7 2002/07/24 22:59:28 jonb Exp $
#
DISTNAME= arch-1.0pre16
PKGNAME= arch-1.0.0.16
CATEGORIES= devel
MASTER_SITES= ftp://regexps.com/pub/src/arch/ \
ftp://regexps.com/pub/src/arch/old/
MAINTAINER= schmonz@netbsd.org
HOMEPAGE= http://www.regexps.com/
COMMENT= revision control system ideal for widely distributed development
USE_GMAKE= # defined
HAS_CONFIGURE= # defined
CONFIGURE_SCRIPT= ../configure
CONFIGURE_ARGS+= --prefix ${PREFIX}
WRKSRC= ${WRKDIR}/${DISTNAME}/src/=build
HTMLDIR= ${PREFIX}/share/doc/html/arch
EXAMPLESDIR= ${PREFIX}/share/examples/arch
LOCALDIR= ${PREFIX}/libexec/arch/local
post-extract:
${MKDIR} ${WRKSRC}
post-install:
# Install arch documentation.
${INSTALL_DATA_DIR} ${HTMLDIR}
${CP} -R ${WRKDIR}/${DISTNAME}/docs/html/* ${HTMLDIR}
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${HTMLDIR}
${CHMOD} -R ugo-w ${HTMLDIR}
# Install arch examples.
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
${CP} -R ${WRKDIR}/${DISTNAME}/docs/examples/* ${EXAMPLESDIR}
${RM} -rf ${EXAMPLESDIR}/browser/.arch-ids
${RM} -rf ${EXAMPLESDIR}/notifier/.arch-ids
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR}
${CHMOD} -R ugo-w ${EXAMPLESDIR}
.include "../../mk/bsd.pkg.mk"