diff options
author | mph <mph@FreeBSD.org> | 1998-04-19 18:03:27 +0000 |
---|---|---|
committer | mph <mph@FreeBSD.org> | 1998-04-19 18:03:27 +0000 |
commit | 22ba88528984ea9a18a40e0ae536028bb4e83f76 (patch) | |
tree | 0e6cd70abbff50ca9ebce7beb9523b97fa97be0c /print | |
parent | bfd3367f336236e98de654b7bc589368c795e34f (diff) | |
download | FreeBSD-ports-22ba88528984ea9a18a40e0ae536028bb4e83f76.zip FreeBSD-ports-22ba88528984ea9a18a40e0ae536028bb4e83f76.tar.gz |
Apply patches by maintainer:
- Update maintainer's email address
- Fix a typecast problem
And my modifications:
- Change "version required" line in Makefile header
- Change patch to Imakefile to not override CC and CFLAGS.
PR: 6350
Submitted by: David A. Bader <dbader@eece.unm.edu>
Diffstat (limited to 'print')
-rw-r--r-- | print/bibview/Makefile | 8 | ||||
-rw-r--r-- | print/bibview/files/patch-aa | 15 | ||||
-rw-r--r-- | print/bibview/files/patch-ab | 22 |
3 files changed, 36 insertions, 9 deletions
diff --git a/print/bibview/Makefile b/print/bibview/Makefile index a0a959d..74b3dd0 100644 --- a/print/bibview/Makefile +++ b/print/bibview/Makefile @@ -1,9 +1,9 @@ # New ports collection makefile for: bibview -# Version required: 1.5 +# Version required: 2.2 # Date created: 21 July 1997 -# Whom: dbader@umiacs.umd.edu +# Whom: dbader@eece.unm.edu # -# $Id: Makefile,v 1.2 1997/11/22 01:28:05 asami Exp $ +# $Id: Makefile,v 1.3 1997/11/24 08:40:52 tg Exp $ # DISTNAME= bibview-2.2 @@ -11,7 +11,7 @@ CATEGORIES= databases print MASTER_SITES= ${MASTER_SITE_TEX_CTAN} MASTER_SITE_SUBDIR= biblio/bibtex/utils/bibview-2.0 -MAINTAINER= dbader@umiacs.umd.edu +MAINTAINER= dbader@eece.unm.edu USE_IMAKE= yes WRKSRC= ${WRKDIR}/bibview-2.2 diff --git a/print/bibview/files/patch-aa b/print/bibview/files/patch-aa index 4378d24..96dd858 100644 --- a/print/bibview/files/patch-aa +++ b/print/bibview/files/patch-aa @@ -1,11 +1,20 @@ ---- Imakefile.orig Mon Feb 27 14:41:19 1995 -+++ Imakefile Mon Nov 24 09:30:53 1997 +--- Imakefile.orig Mon Feb 27 08:41:19 1995 ++++ Imakefile Sun Apr 19 13:51:51 1998 @@ -9,7 +9,7 @@ /* nothing needs to be modified below this point */ -CFLAGS = $(STD_CPP_DEFINES) -+CFLAGS = -I/usr/X11R6/include ++/* CFLAGS = $(STD_CPP_DEFINES) */ #ifdef NeXTArchitecture SYS_LIBRARIES = XawClientLibs -lm -lsys_s +@@ -33,7 +33,7 @@ + + #else /* Others */ /* END SGIArchitecture */ + +-CC = gcc -fstrength-reduce -fpcc-struct-return ++/* CC = gcc -fstrength-reduce -fpcc-struct-return */ + + #endif + #endif diff --git a/print/bibview/files/patch-ab b/print/bibview/files/patch-ab index 8887fc7..3e47c24 100644 --- a/print/bibview/files/patch-ab +++ b/print/bibview/files/patch-ab @@ -1,5 +1,5 @@ ---- bibview.c.orig Fri Apr 21 18:49:15 1995 -+++ bibview.c Thu Sep 11 13:08:28 1997 +--- bibview.c.orig Fri Apr 21 10:49:15 1995 ++++ bibview.c Sun Apr 19 07:33:25 1998 @@ -170,9 +170,9 @@ /* fallback resources */ static char *fallback_resources[] = { @@ -12,3 +12,21 @@ #endif NULL }; +@@ -824,7 +824,7 @@ + + /* install signal handler */ + for (i = 1; i<= 15; i++) +- signal(i, signalHandler); ++ signal(i, (sig_t)signalHandler); + + /* install Xtoolkit handlers */ + XtSetWarningHandler((XtErrorHandler)Xt_warningHandler); +@@ -891,7 +891,7 @@ + static void + signalHandler (int s, int code) + { +- signal(s, signalHandler); ++ signal(s, (sig_t)signalHandler); + } + + |