aboutsummaryrefslogtreecommitdiff
path: root/devel/xmake
diff options
context:
space:
mode:
authorTilman Keskinoz <arved@FreeBSD.org>2003-01-02 18:29:24 +0000
committerTilman Keskinoz <arved@FreeBSD.org>2003-01-02 18:29:24 +0000
commit1a156924294ee02d707f34269a5ea6f66e8b4279 (patch)
tree5b77c1852be30e0cf4c7f58335e9f59207bacf51 /devel/xmake
parentc8855cd89f551226b06213354b7a7bc71149d17d (diff)
downloadports-1a156924294ee02d707f34269a5ea6f66e8b4279.tar.gz
ports-1a156924294ee02d707f34269a5ea6f66e8b4279.zip
Update to 1.06
PR: 46038 Submitted by: Stefan Farfeleder <stefan@fafoe.dyndns.org>
Notes
Notes: svn path=/head/; revision=72253
Diffstat (limited to 'devel/xmake')
-rw-r--r--devel/xmake/Makefile2
-rw-r--r--devel/xmake/distinfo2
-rw-r--r--devel/xmake/files/patch-aa29
3 files changed, 2 insertions, 31 deletions
diff --git a/devel/xmake/Makefile b/devel/xmake/Makefile
index fbd5d7c96170..f6ac1bf4711d 100644
--- a/devel/xmake/Makefile
+++ b/devel/xmake/Makefile
@@ -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/
diff --git a/devel/xmake/distinfo b/devel/xmake/distinfo
index ad2e976b93a3..27243f7a4f16 100644
--- a/devel/xmake/distinfo
+++ b/devel/xmake/distinfo
@@ -1 +1 @@
-MD5 (xmake-1.05.tgz) = 1563ca7d04d2df79bfa9a5c7db532aa7
+MD5 (xmake-1.06.tgz) = 257a2d11061363fd3b26fe3a073f890e
diff --git a/devel/xmake/files/patch-aa b/devel/xmake/files/patch-aa
deleted file mode 100644
index afebcf56e027..000000000000
--- a/devel/xmake/files/patch-aa
+++ /dev/null
@@ -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)