mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Upgrade to 1.65.
This commit is contained in:
parent
540165ff90
commit
f6547fa0f7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=15227
@ -1,12 +1,12 @@
|
||||
# New ports collection makefile for: ytree
|
||||
# Version required: 1.64
|
||||
# Version required: 1.65
|
||||
# Date created: 5 Jan 1998
|
||||
# Whom: Andrey Zakhvatov
|
||||
#
|
||||
# $Id: Makefile,v 1.2 1998/05/13 17:13:20 vanilla Exp $
|
||||
# $Id: Makefile,v 1.3 1998/11/11 12:26:00 jkoshy Exp $
|
||||
#
|
||||
|
||||
DISTNAME= ytree-1.64
|
||||
DISTNAME= ytree-1.65
|
||||
CATEGORIES= misc
|
||||
MASTER_SITES= http://www.han.de/~werner/ \
|
||||
${MASTER_SITE_SUNSITE}
|
||||
|
@ -1 +1 @@
|
||||
MD5 (ytree-1.64.tar.gz) = 93c449f3c3e6b9af02d20e8d16a8040c
|
||||
MD5 (ytree-1.65.tar.gz) = c9ee4eb81573d0ae8d3d73c885285f66
|
||||
|
@ -1,27 +1,36 @@
|
||||
--- Makefile.orig Mon May 11 04:12:35 1998
|
||||
+++ Makefile Wed May 13 02:30:12 1998
|
||||
@@ -29,7 +29,7 @@
|
||||
--- Makefile.orig Wed Dec 9 15:31:25 1998
|
||||
+++ Makefile Wed Dec 9 15:32:25 1998
|
||||
@@ -12,7 +12,7 @@
|
||||
# ADD_CFLAGS: Add -DVI_KEYS if you want vi-cursor-keys
|
||||
#
|
||||
|
||||
-ADD_CFLAGS = -O # -DVI_KEYS
|
||||
+#ADD_CFLAGS = -O # -DVI_KEYS
|
||||
|
||||
LFLAGS = -s
|
||||
BINDIR = /usr/bin
|
||||
@@ -27,10 +27,10 @@
|
||||
###########################
|
||||
# If color doesn't work, comment out
|
||||
# the following line and recompile
|
||||
COLOR = -DCOLOR_SUPPORT
|
||||
-COLOR = -DCOLOR_SUPPORT
|
||||
+#COLOR = -DCOLOR_SUPPORT
|
||||
#CLOCK = -DCLOCK_SUPPORT
|
||||
-CFLAGS = $(ADD_CFLAGS) $(COLOR) $(CLOCK)
|
||||
-LIBS = -lncurses
|
||||
+#CFLAGS = $(ADD_CFLAGS) $(COLOR) $(CLOCK)
|
||||
LIBS = -lncurses
|
||||
+#LIBS = -lncurses
|
||||
|
||||
###########################
|
||||
@@ -39,12 +39,14 @@
|
||||
#LIBS = -lcurses -ltermcap
|
||||
# LINUX without ncurses
|
||||
@@ -41,8 +41,8 @@
|
||||
###########################
|
||||
# FreeBSD (Thanks to Peter Brevik)
|
||||
###########################
|
||||
-#CFLAGS = -DCOLOR_SUPPORT -DNCURSES
|
||||
-#LIBS = -lncurses -lmytinfo -lcompat
|
||||
+CFLAGS += -DCOLOR_SUPPORT -DNCURSES
|
||||
+LIBS = -lncurses -lmytinfo -lcompat
|
||||
|
||||
###########################
|
||||
-# FreeBSD with ncurses (Thanks to Peter Brevik)
|
||||
+# FreeBSD (Thanks to Peter Brevik)
|
||||
###########################
|
||||
#ADD_INCLUDE = /usr/include/ncurses
|
||||
#ADD_LIB = /usr/lib
|
||||
#CFLAGS = -I$(ADD_INCLUDE) -DNCURSES $(ADD_CFLAGS)
|
||||
#LIBS = -L$(ADD_LIB) -lncurses -lmytinfo -lcompat
|
||||
+CFLAGS += -DCOLOR_SUPPORT -DNCURSES
|
||||
+LIBS = -lncurses -lmytinfo -lcompat
|
||||
|
||||
###########################
|
||||
# NeXT (Thanks to fifi)
|
||||
# DOS/Windows with DJGPP
|
||||
|
@ -1,20 +1,11 @@
|
||||
--- freesp.c Tue Sep 2 20:03:47 1997
|
||||
+++ /home/andy/tmp/wrk/freesp.c Mon Jan 5 13:44:42 1998
|
||||
--- freesp.c.orig Wed Dec 9 15:32:51 1998
|
||||
+++ freesp.c Wed Dec 9 15:34:01 1998
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
#include "ytree.h"
|
||||
|
||||
-#if ( defined( linux ) || defined( sun ) || defined( __NeXT__ ) || defined(hpux) || defined ( __FreeBSD__ ) ) && !defined( SVR4 )
|
||||
+#if ( defined( linux ) || defined( sun ) || defined( __NeXT__ ) || defined(hpux) ) && !defined( SVR4 )
|
||||
-#if ( defined( linux ) || defined( sun ) || defined( __NeXT__ ) || defined(hpux) || defined ( __FreeBSD__ ) || defined( __DJGPP__ ) ) && !defined( SVR4 )
|
||||
+#if ( defined( linux ) || defined( sun ) || defined( __NeXT__ ) || defined(hpux) || defined( __DJGPP__ ) ) && !defined( SVR4 )
|
||||
|
||||
#include <sys/vfs.h>
|
||||
#else
|
||||
#ifdef WIN32
|
||||
@@ -18,7 +18,7 @@
|
||||
#if defined( SVR4 ) || defined( OSF1 )
|
||||
#include <sys/statvfs.h>
|
||||
#else
|
||||
-#ifdef ultrix
|
||||
+#if ( defined( ultrix ) || defined ( __FreeBSD__ ) )
|
||||
#include <sys/param.h>
|
||||
#include <sys/mount.h>
|
||||
#else
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- dirwin.c.orig Sat Mar 21 22:40:47 1998
|
||||
+++ dirwin.c Sat Mar 21 22:41:17 1998
|
||||
--- dirwin.c.orig Wed Dec 9 15:35:50 1998
|
||||
+++ dirwin.c Wed Dec 9 15:35:59 1998
|
||||
@@ -163,7 +163,7 @@
|
||||
ERROR_MSG("malloc() Failed*Abort");
|
||||
exit(1);
|
||||
|
@ -1,11 +1,11 @@
|
||||
--- filewin.c.orig Sat Mar 21 22:42:17 1998
|
||||
+++ filewin.c Sat Mar 21 22:53:03 1998
|
||||
--- filewin.c.orig Wed Dec 9 15:36:15 1998
|
||||
+++ filewin.c Wed Dec 9 15:36:28 1998
|
||||
@@ -535,7 +535,7 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
- (void) sprintf( format, "%%c %%%c%ds %%10s %%3d %%7d %%12s",
|
||||
+ (void) sprintf( format, "%%c %%%c%ds %%10s %%3d %%7qd %%12s",
|
||||
- (void) sprintf( format, "%%c%%%c%ds %%10s %%3d %%7d %%12s",
|
||||
+ (void) sprintf( format, "%%c%%%c%ds %%10s %%3d %%7qd %%12s",
|
||||
justify,
|
||||
max_filename_len
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user