summaryrefslogtreecommitdiff
path: root/archivers/9e
diff options
context:
space:
mode:
authorVolker Stolz <vs@FreeBSD.org>2005-04-19 08:25:09 +0000
committerVolker Stolz <vs@FreeBSD.org>2005-04-19 08:25:09 +0000
commit23c13a940f7aa398d615a34bdbca5d1b00f19938 (patch)
tree3afa64b91d2783706cfc95185367f01d34b579bb /archivers/9e
parentUpdate to 0.3100 (diff)
Use MAKE_ARGS instead of Makefile-patch
Notes
Notes: svn path=/head/; revision=133638
Diffstat (limited to 'archivers/9e')
-rw-r--r--archivers/9e/Makefile1
-rw-r--r--archivers/9e/files/patch-aa35
2 files changed, 1 insertions, 35 deletions
diff --git a/archivers/9e/Makefile b/archivers/9e/Makefile
index d6e4f891ff08..ea81cddae274 100644
--- a/archivers/9e/Makefile
+++ b/archivers/9e/Makefile
@@ -15,6 +15,7 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= Explode Plan9 archives
PLIST_FILES= bin/9e
+MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LIBS="" HDRS=""
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/9e ${PREFIX}/bin
diff --git a/archivers/9e/files/patch-aa b/archivers/9e/files/patch-aa
deleted file mode 100644
index e85b1648bdd3..000000000000
--- a/archivers/9e/files/patch-aa
+++ /dev/null
@@ -1,35 +0,0 @@
---- Makefile.orig Thu Jun 15 06:40:52 2000
-+++ Makefile Sun Oct 19 01:13:32 2003
-@@ -1,14 +1,11 @@
- # Makefile for 9e
-
--CC = gcc
-+CC ?= cc
-
--CFLAGS = -g3 -ggdb
-+CFLAGS ?= -O -pipe
-
- .PHONY: all clean distclean
-
--LIBS = -lefence
--
--HDRS = 9a.h
- SRCS = 9e.c
- OBJS = 9e.o
-
-@@ -17,7 +14,7 @@
- all: $(BINARIES)
-
- 9e: $(OBJS)
-- $(CC) -o 9e 9e.o $(LIBS)
-+ $(CC) -o 9e 9e.o
-
- clean:
- rm -f *.o *~ a.out
-@@ -26,4 +23,4 @@
- distclean: clean
- rm -f ${BINARIES}
-
--# EOF
-\ No newline at end of file
-+# EOF