mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
a9b268a1ac
custom accounting applications based on the Progress database product. I felt that the built in wasn't useful enough so I designed a new one and implemented it. It actually started life as a package configuration and batch file generator for DOS and mutated to a simple script interpreter to replace shar file distribution. At this point it has almost nothing in common with that first program. The basic idea behind generate is to create a script which generates files. There is some simple flow control constructs but the power lies in its macro processing. I have shamelessly stolen ideas from cpp, m4, make and David Tilbrook's dtree. WWW: http://www.druid.net/darcy/readme-generate.html PR: ports/102507 Submitted by: D'Arcy J.M. Cain <darcy at druid.net>
27 lines
528 B
Makefile
27 lines
528 B
Makefile
# New ports collection makefile for: generate
|
|
# Date created: 24 August 2006
|
|
# Whom: D'Arcy J.M. Cain <darcy@druid.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= generate
|
|
PORTVERSION= 2.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.druid.net/pub/distrib/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= darcy@druid.net
|
|
COMMENT= Simple text pre-processor
|
|
|
|
USE_GMAKE= yes
|
|
MAN1= generate.1
|
|
|
|
PLIST_FILES= bin/generate bin/rgenerate
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,^CFLAGS *=,CFLAGS +=,' \
|
|
${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|