diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-08-16 12:10:17 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-08-16 12:10:17 +0000 |
commit | 51b1eb82e8b866f120c92adfc7b0598ed6dc644a (patch) | |
tree | b0e8c0930caca24507f9e5cc3314863c756ab20d /math | |
parent | 0d6bb222c42faa953af7f9c180b582795fc6804f (diff) | |
download | ports-51b1eb82e8b866f120c92adfc7b0598ed6dc644a.tar.gz ports-51b1eb82e8b866f120c92adfc7b0598ed6dc644a.zip |
Notes
Diffstat (limited to 'math')
-rw-r--r-- | math/rpc/Makefile | 9 | ||||
-rw-r--r-- | math/rpc/distinfo | 2 | ||||
-rw-r--r-- | math/rpc/files/patch-Makefile | 23 | ||||
-rw-r--r-- | math/rpc/files/patch-src::Makefile | 12 |
4 files changed, 8 insertions, 38 deletions
diff --git a/math/rpc/Makefile b/math/rpc/Makefile index 53310a93c863..25b825cdc574 100644 --- a/math/rpc/Makefile +++ b/math/rpc/Makefile @@ -7,13 +7,18 @@ # PORTNAME= rpc -PORTVERSION= 0.95 +PORTVERSION= 0.96 CATEGORIES= math MASTER_SITES= http://www.eecs.umich.edu/~pelzlpj/rpc/ -MAINTAINER= ijliao@FreeBSD.org +MAINTAINER= ports@FreeBSD.org BUILD_DEPENDS= ${LOCALBASE}/lib/libccm.so:${PORTSDIR}/math/ccmath RUN_DEPENDS= ${LOCALBASE}/lib/libccm.so:${PORTSDIR}/math/ccmath +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +USE_GMAKE= yes + .include <bsd.port.mk> diff --git a/math/rpc/distinfo b/math/rpc/distinfo index f091991dd074..57fbfaff30a3 100644 --- a/math/rpc/distinfo +++ b/math/rpc/distinfo @@ -1 +1 @@ -MD5 (rpc-0.95.tar.gz) = 48791b27627b25744f7febd58987b67e +MD5 (rpc-0.96.tar.gz) = 7fa4c8b12ebb1fc872979a7cb7b0a2b2 diff --git a/math/rpc/files/patch-Makefile b/math/rpc/files/patch-Makefile deleted file mode 100644 index ec6a46677017..000000000000 --- a/math/rpc/files/patch-Makefile +++ /dev/null @@ -1,23 +0,0 @@ ---- Makefile.orig Mon Jun 11 07:59:05 2001 -+++ Makefile Wed Jun 13 17:57:18 2001 -@@ -1,5 +1,5 @@ --CXXFLAGS = -c -O2 -Wall --LDFLAGS = -lm -lccm -lcurses -+CXXFLAGS += -c -+LDFLAGS = -lm -lccm -lcurses -L${LOCALBASE}/lib - - all: rpc - -@@ -7,10 +7,10 @@ - cd src; $(MAKE) - - install: -- cp -f src/rpc /usr/bin -+ cp -f src/rpc ${PREFIX}/bin - - uninstall: -- rm /usr/bin/rpc -+ rm ${PREFIX}/bin/rpc - - clean: - rm -f core src/rpc src/*.o src/*.co src/core diff --git a/math/rpc/files/patch-src::Makefile b/math/rpc/files/patch-src::Makefile deleted file mode 100644 index 40923f8b2870..000000000000 --- a/math/rpc/files/patch-src::Makefile +++ /dev/null @@ -1,12 +0,0 @@ ---- src/Makefile.orig Mon Jun 11 10:14:48 2001 -+++ src/Makefile Wed Jun 13 17:59:04 2001 -@@ -1,6 +1,6 @@ --CXXFLAGS = -c -O2 -Wall --CFLAGS = -c -O2 -Wall --LDFLAGS = -lm -lccm -lcurses -+CXXFLAGS += -c -+CFLAGS += -c -I${LOCALBASE}/include -+LDFLAGS = -lm -lccm -lcurses -L${LOCALBASE}/lib - - all: rpc - |