diff options
author | demon <demon@FreeBSD.org> | 2009-06-17 18:01:22 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2009-06-17 18:01:22 +0800 |
commit | 13b7caf0be23b765c6cfcac639cdfd699fdf7ca2 (patch) | |
tree | f2ce7ad8877311f7c91ba48254be246c5b7c3d25 | |
parent | 9674facda8dc3d3e2cfeac1321820b290f63d69d (diff) | |
download | freebsd-ports-gnome-13b7caf0be23b765c6cfcac639cdfd699fdf7ca2.tar.gz freebsd-ports-gnome-13b7caf0be23b765c6cfcac639cdfd699fdf7ca2.tar.zst freebsd-ports-gnome-13b7caf0be23b765c6cfcac639cdfd699fdf7ca2.zip |
Update to 2.9.1.
-rw-r--r-- | ftp/uftp/Makefile | 4 | ||||
-rw-r--r-- | ftp/uftp/distinfo | 6 | ||||
-rw-r--r-- | ftp/uftp/files/patch-Makefile | 32 |
3 files changed, 23 insertions, 19 deletions
diff --git a/ftp/uftp/Makefile b/ftp/uftp/Makefile index 7628a519b004..66e58a122a6e 100644 --- a/ftp/uftp/Makefile +++ b/ftp/uftp/Makefile @@ -6,7 +6,7 @@ # PORTNAME= uftp -PORTVERSION= 2.8.1 +PORTVERSION= 2.9.1 CATEGORIES= ftp MASTER_SITES= http://www.tcnj.edu/~bush/ DISTNAME= uftp @@ -16,6 +16,8 @@ DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= demon@FreeBSD.org COMMENT= A multicast capable FTP client and server +USE_GMAKE= yes +MAKEFILE= makefile WRKSRC= ${WRKDIR} PLIST_FILES= bin/uftp bin/uftpd diff --git a/ftp/uftp/distinfo b/ftp/uftp/distinfo index bb6d16434ab7..68033078808b 100644 --- a/ftp/uftp/distinfo +++ b/ftp/uftp/distinfo @@ -1,3 +1,3 @@ -MD5 (uftp-2.8.1/uftp.tar) = 5873267aa7c3af5576964890231a33ef -SHA256 (uftp-2.8.1/uftp.tar) = 6bd7a4e7b16a6efc04df45b53d344bb03e30af7e1d0a4ef43d92e9f13b4c0616 -SIZE (uftp-2.8.1/uftp.tar) = 163840 +MD5 (uftp-2.9.1/uftp.tar) = c8b9b87cac29d66edb168b6917a59289 +SHA256 (uftp-2.9.1/uftp.tar) = 1d3eec68835f7687225c828301cda3f85b9836b086b5f1ca9c4f9f57e36bb6be +SIZE (uftp-2.9.1/uftp.tar) = 163840 diff --git a/ftp/uftp/files/patch-Makefile b/ftp/uftp/files/patch-Makefile index b695973f8ca6..1058b447688e 100644 --- a/ftp/uftp/files/patch-Makefile +++ b/ftp/uftp/files/patch-Makefile @@ -1,15 +1,17 @@ -*** /dev/null Wed Jun 4 14:07:15 2008 ---- Makefile Wed Jun 4 14:07:49 2008 -*************** -*** 0 **** ---- 1,10 ---- -+ # -+ # Makefile for uftp client and server -+ # -+ all: uftp uftpd -+ -+ uftp: uftp.c -+ ${CC} ${CFLAGS} -o $@ $< -lm -+ -+ uftpd: uftpd.c -+ ${CC} ${CFLAGS} -o $@ $< -lm +--- makefile.orig 2009-06-14 04:29:21.000000000 +0400 ++++ makefile 2009-06-17 13:58:51.000000000 +0400 +@@ -1,10 +1,10 @@ + UNAME_S:=$(shell uname -s) + + # defaults +-CC = gcc +-OPTIONS=-g -Wall +-LDLIBS=-lc -lm +-CFLAGS= ++CC ?= gcc ++OPTIONS= ++LDLIBS=-lm ++CFLAGS?= + + # Sun + ifeq ("SunOS", "$(UNAME_S)") |