diff options
author | recht <recht@pkgsrc.org> | 2003-12-02 23:22:50 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2003-12-02 23:22:50 +0000 |
commit | cb68a907a266ab5ee8304e53f9f20695bfbb35d2 (patch) | |
tree | 1ad6f0663ea447a80240f4c1733a22c65b4a1cf2 /devel/tla/Makefile | |
parent | 791a560f4238c70b7d1824e40e69d6f8d7e75256 (diff) | |
download | pkgsrc-cb68a907a266ab5ee8304e53f9f20695bfbb35d2.tar.gz |
re-import of arch as tla (pkgname change)
update to 1.1.08 based upon PR 23022 by Neil Booth (update to 1.1pre5)
tla is a revision control system: a program that lets programmers
archive a history of changes made to the software they maintain and
that, more importantly, helps programmers to coordinate, synchronize,
and combine multiple lines of development for a single project.
suggested/ok'ed by wiz@
Diffstat (limited to 'devel/tla/Makefile')
-rw-r--r-- | devel/tla/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/devel/tla/Makefile b/devel/tla/Makefile new file mode 100644 index 00000000000..2d96f9198be --- /dev/null +++ b/devel/tla/Makefile @@ -0,0 +1,37 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/12/02 23:22:50 recht Exp $ +# + +DISTNAME= tla-1.1pre8 +PKGNAME= tla-1.1.0.8 +WRKSRC= ${WRKDIR}/${DISTNAME}/src/=build +CATEGORIES= devel +MASTER_SITES= http://regexps.srparish.net/src/tla/ + +MAINTAINER= schmonz@NetBSD.org +HOMEPAGE= http://arch.fifthvision.net/bin/view/Arch/WebHome +COMMENT= Revision control system ideal for widely distributed development + +DEPENDS+= patch-[0-9]*:../../devel/patch + +USE_GMAKE= # defined + +HAS_CONFIGURE= # defined +CONFIGURE_SCRIPT= ../configure +CONFIGURE_ARGS+= --prefix ${PREFIX} +CONFIGURE_ARGS+= --with-gnu-patch=${PREFIX}/bin/${GNU_PROGRAM_PREFIX}patch + +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}/src/docs-tla/html/* ${HTMLDIR} + ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${HTMLDIR} + ${CHMOD} -R ugo-w ${HTMLDIR} + +.include "../../mk/bsd.pkg.mk" |