aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-09-18 21:41:09 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-09-18 21:41:09 +0000
commit4c32ad5a11484ecc099edfccac406963f1056950 (patch)
tree4f3c13b3da8767221bc9ecbfed2ae0548c7f382d /misc
parent87d530b0a1c1b902bce59d2199c0c71d6da6d651 (diff)
downloadports-4c32ad5a11484ecc099edfccac406963f1056950.tar.gz
ports-4c32ad5a11484ecc099edfccac406963f1056950.zip
- Update to 0.5
PR: ports/86230 Submitted by: Andrej Zverev <az@inec.ru>
Notes
Notes: svn path=/head/; revision=143112
Diffstat (limited to 'misc')
-rw-r--r--misc/since/Makefile5
-rw-r--r--misc/since/distinfo10
-rw-r--r--misc/since/files/patch-Makefile39
3 files changed, 23 insertions, 31 deletions
diff --git a/misc/since/Makefile b/misc/since/Makefile
index 099a2c789698..c4e05bc06248 100644
--- a/misc/since/Makefile
+++ b/misc/since/Makefile
@@ -6,10 +6,9 @@
#
PORTNAME= since
-PORTVERSION= 0.3
+PORTVERSION= 0.5
CATEGORIES= misc
-MASTER_SITES= http://keyserver.kjsl.com/~jharris/distfiles/ \
- ftp://jade.cs.uct.ac.za/pub/
+MASTER_SITES= ftp://jade.cs.uct.ac.za/pub/
MAINTAINER= ports@FreeBSD.org
COMMENT= View the end of a file like tail(1), but save state between sessions
diff --git a/misc/since/distinfo b/misc/since/distinfo
index 1e6fdfccb676..8614f9f0285f 100644
--- a/misc/since/distinfo
+++ b/misc/since/distinfo
@@ -1,5 +1,5 @@
-MD5 (since-0.3.tar.gz) = 0575abb4f0b824ec04a0bce425e61df3
-SHA1 (since-0.3.tar.gz) = 9de40c5a3f77073a8b9b46756c8e6349083c94c8
-RMD160 (since-0.3.tar.gz) = 269c046c2b898bd557a5fa8ce80b08fc72f86abd
-SHA256 (since-0.3.tar.gz) = e7a09b085a79b2c3ad17e24ca163910a63f468c92784a02423d46a4d0e93b849
-SIZE (since-0.3.tar.gz) = 16512
+MD5 (since-0.5.tar.gz) = 923c23f5198380cae42cbcaf411f3bca
+SHA1 (since-0.5.tar.gz) = 4b09435b7100e91a23010b2cb655a5d847558f3e
+RMD160 (since-0.5.tar.gz) = 87987c50612b2ab2df604b5029a6aab4d8f15ed8
+SHA256 (since-0.5.tar.gz) = 179afff70f9e13fbdfda72e5b3862fd84f6eed7631543f696108012dba9abf64
+SIZE (since-0.5.tar.gz) = 12557
diff --git a/misc/since/files/patch-Makefile b/misc/since/files/patch-Makefile
index 90a5d57f1be2..3986873f90f1 100644
--- a/misc/since/files/patch-Makefile
+++ b/misc/since/files/patch-Makefile
@@ -1,31 +1,24 @@
---- Makefile.orig Mon May 7 13:05:30 2001
-+++ Makefile Mon Feb 11 12:37:38 2002
-@@ -16,8 +16,8 @@
- ###########################################################################
- # Compiler and Flags ######################################################
+--- Makefile.orig Sun Oct 6 15:02:43 2002
++++ Makefile Sat Sep 17 00:46:29 2005
+@@ -7,8 +7,8 @@
+ MANDIR = /usr/local/man/man1
+ # Compiler and Flags
-CC = gcc
--CFLAGS = -Wall -O2 -fomit-frame-pointer -DVERSION=\"$(VERSION)\"
-+#CC = gcc
-+CFLAGS += -Wall -fomit-frame-pointer -DVERSION=\"$(VERSION)\"
- STRIP = strip
-
- #CFLAGS += -DTRACE
-@@ -43,15 +43,14 @@
- # Install #################################################################
+-CFLAGS = -Wall -O2
++#CC = gcc
++#CFLAGS = -Wall -O2
+ RM = rm -f
+ INSTALL = install -c
+ LINK = ln -s
+@@ -20,8 +20,8 @@
+ # Install
install : $(TARGET)
-- $(INSTALL) -m 0755 $(TARGET) $(INTARGET)
-- $(INSTALL) -m 0644 $(MAN) $(INMAN)
+- $(INSTALL) -m 0755 $(TARGET) $(BINDIR)
+- $(INSTALL) -m 0644 $(MAN) $(MANDIR)
+ $(BSD_INSTALL_PROGRAM) $(TARGET) $(PREFIX)/bin/$(TARGET)
+ $(BSD_INSTALL_MAN) $(MAN) $(PREFIX)/man/man1/$(MAN)
- ###########################################################################
- # Build since executable ##################################################
-
+ # Build since executable
$(TARGET) : $(OBJ)
- $(CC) $(CFLAGS) $(OBJ) -o $(TARGET)
-- $(STRIP) $(TARGET)
-
- ###########################################################################
- # Build object files from source ##########################################