From owner-freebsd-ports Sat Apr 17 21:52:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E4D9614FAB for ; Sat, 17 Apr 1999 21:52:25 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id VAA40807; Sat, 17 Apr 1999 21:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 17 Apr 1999 21:50:02 -0700 (PDT) Message-Id: <199904180450.VAA40807@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11193: Update: editors/lpe Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11193; it has been noted by GNATS. From: Chris Piazza To: cpiazza@home.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: RE: ports/11193: Update: editors/lpe Date: Sat, 17 Apr 1999 21:41:38 -0700 (PDT) A quick update to this, fixed some bugs. -Cut- Index: lpe/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/editors/lpe/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- Makefile 1999/04/14 05:56:14 1.1.1.1 +++ Makefile 1999/04/18 04:33:10 @@ -1,12 +1,12 @@ # New ports collection makefile for: lpe -# Version required: 1.1.5 +# Version required: 1.1.8 # Date created: 12 April 1999 # Whom: Chris Piazza # # $Id: Makefile,v 1.1.1.1 1999/04/14 05:56:14 mharo Exp $ # -DISTNAME= lpe-1.1.5 +DISTNAME= lpe-1.1.8 CATEGORIES= editors MASTER_SITES= http://cdsmith.twu.net/lpe/ @@ -25,11 +25,7 @@ do-install: ${MKDIR} ${PREFIX}/lib/lpe ${INSTALL_PROGRAM} ${WRKSRC}/lpe ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/cmode.so ${PREFIX}/lib/lpe - ${INSTALL_DATA} ${WRKSRC}/cppmode.so ${PREFIX}/lib/lpe - ${INSTALL_DATA} ${WRKSRC}/htmlmode.so ${PREFIX}/lib/lpe - ${INSTALL_DATA} ${WRKSRC}/perlmode.so ${PREFIX}/lib/lpe - ${INSTALL_DATA} ${WRKSRC}/sgmlmode.so ${PREFIX}/lib/lpe + ${INSTALL_DATA} ${WRKSRC}/*.so ${PREFIX}/lib/lpe ${INSTALL_MAN} ${WRKSRC}/lpe.1 ${PREFIX}/man/man1 .include Index: lpe/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/editors/lpe/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1999/04/14 05:56:14 1.1.1.1 +++ md5 1999/04/18 04:28:47 @@ -1 +1 @@ -MD5 (lpe-1.1.5.tar.gz) = 708371d5ddfe4e663b0bff2952851731 +MD5 (lpe-1.1.8.tar.gz) = 64fd9f61ee7549241a5ae665405a36e5 Index: lpe/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/editors/lpe/patches/patch-aa,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 patch-aa --- patch-aa 1999/04/14 05:56:14 1.1.1.1 +++ patch-aa 1999/04/18 04:38:52 @@ -1,5 +1,5 @@ ---- Config.make.orig Mon Apr 12 10:30:06 1999 -+++ Config.make Mon Apr 12 21:00:29 1999 +--- Config.make.orig Sat Apr 17 20:46:41 1999 ++++ Config.make Sat Apr 17 21:38:04 1999 @@ -5,7 +5,6 @@ # Base directory in which to install lpe. The binary and man page will be @@ -8,39 +8,34 @@ # Directory in which to place source language modules that are built as a # part of the install. For the modules to work, this path must also be listed -@@ -13,13 +12,12 @@ - MODULE_DIR = /etc/lpe +@@ -16,11 +15,11 @@ + SHELL = /bin/sh - # The shell to use when interpreting Bourne-compatible shell scripts --SHELL = /bin/sh - # The C compiler to use; use GCC by default -CC = gcc +CC ?= gcc + # OSF: cc # The link command line for building shared libraries -LD_SH = gcc -shared +LD_SH = ${CC} -shared # OpenBSD: ld -Bshareable - - # The flags to pass to the preprocessor -@@ -28,18 +26,14 @@ + # OSF: ld -shared + # Cygwin: /bin/true +@@ -32,14 +31,14 @@ # OpenBSD: -I/usr/local/include -DSLANG_H="" -DLIMITS_H="" # The flags to pass to the compiler proper -CFLAGS = -pipe -Wall -g -O2 ++CFLAGS ?= -pipe -Wall -O2 + # OSF: -pipe -g3 -O2 # The flags to pass to the linker - LDFLAGS = -L/usr/local/lib -rdynamic + LDFLAGS = -L/usr/local/lib # The libraries, in linker option format, against which to link -LOADLIBES = -lslang -ldl +LOADLIBES = -lslang -ltermcap - # For Windows NT: -lslang -ldl -ltermcap - # For FreeBSD: -lslang -ldl -ltermcap - # For OpenBSD: -lslang -ldl -ltermcap - - # Location and options to a BSD compatible install program --INSTALL = /usr/bin/install -c --INSTALL_PROGRAM = $(INSTALL) --INSTALL_DATA = $(INSTALL) -m 644 + # OSF -lslang -lc + # Cygwin: -lslang -ltermcap + # FreeBSD: -lslang -ldl -ltermcap Index: lpe/patches/patch-ab =================================================================== RCS file: /cvs/FreeBSD/ports/editors/lpe/patches/patch-ab,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 patch-ab --- patch-ab 1999/04/14 05:56:14 1.1.1.1 +++ patch-ab 1999/04/18 04:41:03 @@ -1,11 +1,10 @@ ---- options.h.orig Mon Apr 12 20:34:09 1999 -+++ options.h Mon Apr 12 20:34:39 1999 -@@ -85,7 +85,7 @@ - * default; it is overridden by an LPE_MODULE_PATH environment variable, if - * present. +--- options.h.orig Sat Apr 17 21:32:31 1999 ++++ options.h Sat Apr 17 21:32:50 1999 +@@ -107,6 +107,6 @@ + * standard modules in /usr, and finally, if none of the others are found, in + * the old location; /etc/lpe. */ --#define DEF_MODULE_PATH "/etc/lpe:~/.lpe" -+#define DEF_MODULE_PATH "/etc/lpe:~/.lpe:__PREFIX__/lib/lpe" +-#define DEF_MODULE_PATH "~/.lpe:/usr/local/lib/lpe:/usr/lib/lpe:/etc/lpe" ++#define DEF_MODULE_PATH "~/.lpe:__PREFIX__/lib/lpe:/usr/local/lib/lpe" - /* Time to flash braces. This defines, in tenths of a second, how long a brace - * flash should last. It is meaningless if brace flashing is not enabled. + #endif /* LPE_OPTIONS_H */ Index: lpe/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/editors/lpe/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 PLIST --- PLIST 1999/04/14 05:56:14 1.1.1.1 +++ PLIST 1999/04/18 04:27:42 @@ -2,6 +2,8 @@ lib/lpe/cmode.so lib/lpe/cppmode.so lib/lpe/htmlmode.so +lib/lpe/javamode.so +lib/lpe/mailmode.so lib/lpe/perlmode.so lib/lpe/sgmlmode.so @dirrm lib/lpe -Cut- --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message