Update to 1.06
PR: 46038 Submitted by: Stefan Farfeleder <stefan@fafoe.dyndns.org>
This commit is contained in:
parent
c8855cd89f
commit
1a15692429
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=72253
3 changed files with 2 additions and 31 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xmake
|
||||
PORTVERSION= 1.05
|
||||
PORTVERSION= 1.06
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://apollo.backplane.com/xmake/ \
|
||||
ftp://atari.saturn5.com/pub/dlowe/
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (xmake-1.05.tgz) = 1563ca7d04d2df79bfa9a5c7db532aa7
|
||||
MD5 (xmake-1.06.tgz) = 257a2d11061363fd3b26fe3a073f890e
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
--- Makefile.orig Wed Oct 22 19:35:01 1997
|
||||
+++ Makefile Tue Jun 4 14:14:40 2002
|
||||
@@ -1,12 +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= -g -O2 -Wall -Wstrict-prototypes
|
||||
+CFLAGS+= -Wall
|
||||
LFLAGS=
|
||||
EXE= xmake
|
||||
-IBDIR= /usr/local/bin
|
||||
-IMDIR= /usr/local/man/man1
|
||||
-CC= cc
|
||||
+PREFIX?= /usr/local
|
||||
+IBDIR= $(PREFIX)/bin
|
||||
+IMDIR= $(PREFIX)/man/man1
|
||||
|
||||
all: $(EXE)
|
||||
|
||||
@@ -16,6 +16,6 @@
|
||||
clean:
|
||||
rm -f $(OBJS) $(EXE)
|
||||
|
||||
-install: all
|
||||
- install -c -s -m 755 $(EXE) $(IBDIR)/$(EXE)
|
||||
-
|
||||
+install:
|
||||
+ $(BSD_INSTALL_PROGRAM) $(EXE) $(IBDIR)
|
||||
+ $(BSD_INSTALL_MAN) xmake.1 $(IMDIR)
|
Loading…
Reference in a new issue