New port, xmake:
XMake is a make utility. It is not compatible with other makes, but provides extended functionality over most standard makes. Whereas most other makes have confusing rulesets and do not support many-to-many dependancy specifications, XMake has relatively few (basically no) rulesets and allows you to easily specify many:many dependencies. This gives XMake the flexibility to deal with complex project hierarchies very simply. PR: 3137 Submitted by: dlowe@saturn5.com
This commit is contained in:
parent
2740ef0a2f
commit
28f0fc4714
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=6430
6 changed files with 76 additions and 0 deletions
23
devel/xmake/Makefile
Normal file
23
devel/xmake/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# New ports collection makefile for: xmake
|
||||
# Version required: 1.01
|
||||
# Date created: 28 March 1997
|
||||
# Whom: dlowe
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= xmake-1.01
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.backplane.com/xmake/ \
|
||||
ftp://atari.saturn5.com/pub/dlowe/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= dlowe@saturn5.com
|
||||
|
||||
WRKSRC= ${WRKDIR}/xmake
|
||||
MAN1= xmake.1
|
||||
|
||||
pre-build:
|
||||
@${RM} -rf ${WRKSRC}/obj
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/xmake/distinfo
Normal file
1
devel/xmake/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (xmake-1.01.tgz) = 7fb2ebb2c32e3baab4ea22bf7d37bcd6
|
43
devel/xmake/files/patch-aa
Normal file
43
devel/xmake/files/patch-aa
Normal file
|
@ -0,0 +1,43 @@
|
|||
*** Makefile.orig Thu Feb 6 08:00:00 1997
|
||||
--- Makefile Mon Apr 28 13:47:27 1997
|
||||
***************
|
||||
*** 1,11 ****
|
||||
|
||||
SRCS= include.c list.c main.c subs.c var.c wild.c
|
||||
OBJS= include.o list.o main.o subs.o var.o wild.o
|
||||
! CFLAGS= -g -O2 -Wall -Wstrict-prototypes
|
||||
LFLAGS=
|
||||
EXE= xmake
|
||||
! IBDIR= /usr/local/bin
|
||||
! IMDIR= /usr/local/man/man1
|
||||
|
||||
all: $(EXE)
|
||||
|
||||
--- 1,12 ----
|
||||
|
||||
SRCS= include.c list.c main.c subs.c var.c wild.c
|
||||
OBJS= include.o list.o main.o subs.o var.o wild.o
|
||||
! CFLAGS= -O2 -Wall
|
||||
LFLAGS=
|
||||
EXE= xmake
|
||||
! PREFIX?= /usr/local
|
||||
! IBDIR= ${PREFIX}/bin
|
||||
! IMDIR= ${PREFIX}/man/man1
|
||||
|
||||
all: $(EXE)
|
||||
|
||||
***************
|
||||
*** 15,20 ****
|
||||
clean:
|
||||
rm -f $(OBJS) $(EXE)
|
||||
|
||||
! install: all
|
||||
! install -c -s -m 755 $(EXE) $(IBDIR)/$(EXE)
|
||||
!
|
||||
--- 16,21 ----
|
||||
clean:
|
||||
rm -f $(OBJS) $(EXE)
|
||||
|
||||
! install:
|
||||
! install -c -s -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} $(EXE) $(IBDIR)
|
||||
! install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} xmake.1 $(IMDIR)
|
1
devel/xmake/pkg-comment
Normal file
1
devel/xmake/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A powerful make utility
|
6
devel/xmake/pkg-descr
Normal file
6
devel/xmake/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
XMake is a make utility. It is not compatible with other makes, but
|
||||
provides extended functionality over most standard makes. Whereas most
|
||||
other makes have confusing rulesets and do not support many-to-many
|
||||
dependancy specifications, XMake has relatively few (basically no) rulesets
|
||||
and allows you to easily specify many:many dependencies. This gives XMake
|
||||
the flexibility to deal with complex project hierarchies very simply.
|
2
devel/xmake/pkg-plist
Normal file
2
devel/xmake/pkg-plist
Normal file
|
@ -0,0 +1,2 @@
|
|||
bin/xmake
|
||||
man/man1/xmake.1.gz
|
Loading…
Reference in a new issue