1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Update to 2.9.1.

This commit is contained in:
Dmitry Sivachenko 2009-06-17 10:01:22 +00:00
parent 5f84b82db0
commit 94ad88e94b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=236115
3 changed files with 23 additions and 19 deletions

View File

@ -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

View File

@ -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

View File

@ -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)")