mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
Another hyper make.
Submitted by: nils@guru.ims.uni-stuttgart.de (Cornelis van der Laan)
This commit is contained in:
parent
378907c980
commit
9239658f51
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=2037
6 changed files with 105 additions and 0 deletions
21
devel/dmake/Makefile
Normal file
21
devel/dmake/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# New ports collection makefile for: dmake
|
||||
# Version required: 4.0
|
||||
# Date created: 31 July 1995
|
||||
# Whom: nils@guru.ims.uni-stuttgart.de
|
||||
#
|
||||
# $Id: Makefile,v 1.9 1995/06/18 13:11:25 ache Exp $
|
||||
#
|
||||
|
||||
DISTNAME= dmake40
|
||||
PKGNAME= dmake-4.0
|
||||
CATEGORIES= development programming
|
||||
MASTER_SITES= ftp://plg.uwaterloo.ca/pub/dmake/
|
||||
|
||||
MAINTAINER= nils@guru.ims.uni-stuttgart.de
|
||||
|
||||
WRKSRC= $(WRKDIR)/dmake
|
||||
USE_GMAKE= yes
|
||||
MAKEFILE= makefile
|
||||
ALL_TARGET= bsd43
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/dmake/distinfo
Normal file
1
devel/dmake/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (dmake40.tar.gz) = e2858117a717a72332a5be5ceecf6f8a
|
72
devel/dmake/files/patch-aa
Normal file
72
devel/dmake/files/patch-aa
Normal file
|
@ -0,0 +1,72 @@
|
|||
*** unix/bsd43/make.sh.orig Thu Oct 6 18:26:53 1994
|
||||
--- unix/bsd43/make.sh Sat Aug 5 18:39:51 1995
|
||||
***************
|
||||
*** 1,3 ****
|
||||
--- 1,5 ----
|
||||
+ if [ ! -x dmake ]
|
||||
+ then
|
||||
mkdir objects
|
||||
cc -c -I. -Iunix -Iunix/bsd43 -O infer.c
|
||||
mv infer.o objects
|
||||
***************
|
||||
*** 51,69 ****
|
||||
mv runargv.o objects
|
||||
cc -c -I. -Iunix -Iunix/bsd43 -O unix/dcache.c
|
||||
mv dcache.o objects
|
||||
- cc -c -I. -Iunix -Iunix/bsd43 -O unix/bsd43/putenv.c
|
||||
- mv putenv.o objects
|
||||
- cc -c -I. -Iunix -Iunix/bsd43 -O unix/bsd43/tempnam.c
|
||||
- mv tempnam.o objects
|
||||
- cc -c -I. -Iunix -Iunix/bsd43 -O unix/bsd43/utime.c
|
||||
- mv utime.o objects
|
||||
- cc -c -I. -Iunix -Iunix/bsd43 -O unix/bsd43/setvbuf.c
|
||||
- mv setvbuf.o objects
|
||||
cc -O -o dmake objects/infer.o objects/make.o objects/stat.o objects/expand.o \
|
||||
objects/dmstring.o objects/hash.o objects/dag.o objects/dmake.o objects/path.o \
|
||||
objects/imacs.o objects/sysintf.o objects/parse.o objects/getinp.o \
|
||||
objects/quit.o objects/state.o objects/dmdump.o objects/macparse.o \
|
||||
objects/rulparse.o objects/percent.o objects/function.o objects/arlib.o \
|
||||
objects/dirbrk.o objects/rmprq.o objects/ruletab.o objects/runargv.o \
|
||||
! objects/dcache.o objects/putenv.o objects/tempnam.o objects/utime.o objects/setvbuf.o
|
||||
cp unix/bsd43/startup.mk startup.mk
|
||||
--- 53,64 ----
|
||||
mv runargv.o objects
|
||||
cc -c -I. -Iunix -Iunix/bsd43 -O unix/dcache.c
|
||||
mv dcache.o objects
|
||||
cc -O -o dmake objects/infer.o objects/make.o objects/stat.o objects/expand.o \
|
||||
objects/dmstring.o objects/hash.o objects/dag.o objects/dmake.o objects/path.o \
|
||||
objects/imacs.o objects/sysintf.o objects/parse.o objects/getinp.o \
|
||||
objects/quit.o objects/state.o objects/dmdump.o objects/macparse.o \
|
||||
objects/rulparse.o objects/percent.o objects/function.o objects/arlib.o \
|
||||
objects/dirbrk.o objects/rmprq.o objects/ruletab.o objects/runargv.o \
|
||||
! objects/dcache.o
|
||||
cp unix/bsd43/startup.mk startup.mk
|
||||
+ fi
|
||||
*** unix/runargv.c-dist Sat Aug 5 18:17:21 1995
|
||||
--- unix/runargv.c Sat Aug 5 18:17:38 1995
|
||||
***************
|
||||
*** 77,83 ****
|
||||
--- 77,85 ----
|
||||
char *cmd;
|
||||
{
|
||||
extern int errno;
|
||||
+ #ifndef __FreeBSD__
|
||||
extern char *sys_errlist[];
|
||||
+ #endif
|
||||
int pid;
|
||||
char **argv;
|
||||
|
||||
*** makefile.orig Thu Oct 6 18:30:22 1994
|
||||
--- makefile Sat Aug 5 18:58:26 1995
|
||||
***************
|
||||
*** 89,91 ****
|
||||
--- 89,97 ----
|
||||
tccswp msc40swp msc50swp msc51swp msc60swp \
|
||||
bcc bccswp ztc ztcswp
|
||||
$(DOS_VER) :; make.bat $@
|
||||
+
|
||||
+ install:
|
||||
+ install -c -s -m 755 dmake ${PREFIX}/bin
|
||||
+ mkdir -p ${PREFIX}/lib/dmake
|
||||
+ chmod 755 ${PREFIX}/lib/dmake
|
||||
+ install -c -m 444 startup.mk ${PREFIX}/lib/dmake
|
1
devel/dmake/pkg-comment
Normal file
1
devel/dmake/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
dmake 4.0 - Another hyper make utility
|
8
devel/dmake/pkg-descr
Normal file
8
devel/dmake/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
dmake Version 4.0
|
||||
=================
|
||||
FULL RELEASE OF DMAKE, REPLACES VERSIONS 3.8, and 3.9 (never posted)
|
||||
|
||||
Nature: This distribution advances dmake to Version 4.0, patch level 0.
|
||||
------- The release is an attempt at addressing obscure faults in dmake
|
||||
and at providing some much needed new functionality. See below
|
||||
for details of enhancements and bug fixes.
|
2
devel/dmake/pkg-plist
Normal file
2
devel/dmake/pkg-plist
Normal file
|
@ -0,0 +1,2 @@
|
|||
bin/dmake
|
||||
lib/dmake/startup.mk
|
Loading…
Add table
Reference in a new issue