From owner-freebsd-ports Sat May 1 15:10: 4 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 364AB14BF4 for ; Sat, 1 May 1999 15:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA17471; Sat, 1 May 1999 15:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 1CBDF14BDE for ; Sat, 1 May 1999 15:07:36 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id A12D41438; Sat, 1 May 1999 15:07:33 -0700 (PDT) Message-Id: <19990501220733.A12D41438@norn.ca.eu.org> Date: Sat, 1 May 1999 15:07:33 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11432: Update: deskutils/teapot Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11432 >Category: ports >Synopsis: Update: deskutils/teapot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat May 1 15:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update to teapot-1.3; honour CFLAGS and CC, NOPORTDOCS. >How-To-Repeat: >Fix: Index: teapot/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/deskutils/teapot/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1998/08/07 22:17:53 1.2 +++ Makefile 1999/05/01 21:59:03 @@ -1,12 +1,12 @@ # New ports collection makefile for: teapot -# Version required: 1.01 +# Version required: 1.03 # Date created: 7 January 1998 # Whom: Andrey Zakhvatov # # $Id: Makefile,v 1.2 1998/08/07 22:17:53 asami Exp $ # -DISTNAME= teapot-1.01 +DISTNAME= teapot-1.03 CATEGORIES= deskutils MASTER_SITES= ftp://cantor.informatik.rwth-aachen.de/pub/unix/ @@ -23,10 +23,12 @@ .for file in asqrt asqrt.README counter counter.README life life.README sqrt sqrt.README @ ${INSTALL_DATA} ${WRKSRC}/examples/${file} ${PREFIX}/share/examples/teapot .endfor +.if !defined(NOPORTDOCS) @ ${MKDIR} ${PREFIX}/share/doc/teapot @ ${INSTALL_DATA} ${WRKSRC}/README-en.html ${PREFIX}/share/doc/teapot/README.html .for file in teapot.doc teapot.html teapot.ps @ ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${PREFIX}/share/doc/teapot .endfor +.endif .include Index: teapot/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/deskutils/teapot/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1998/03/27 10:31:47 1.1.1.1 +++ md5 1999/05/01 21:50:38 @@ -1 +1 @@ -MD5 (teapot-1.01.tar.gz) = 7a5191788f86d3df5d589a7efde714c3 +MD5 (teapot-1.03.tar.gz) = c06d01c1cd8f260c4eeecf0e514fd89f Index: teapot/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/deskutils/teapot/patches/patch-aa,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 patch-aa --- patch-aa 1998/03/27 10:31:48 1.1.1.1 +++ patch-aa 1999/05/01 21:52:50 @@ -1,5 +1,5 @@ ---- Makefile.orig Wed Mar 18 19:12:56 1998 -+++ Makefile Fri Mar 27 11:22:13 1998 +--- Makefile.orig Sun Jun 14 08:11:40 1998 ++++ Makefile Sat May 1 14:52:37 1999 @@ -1,16 +1,16 @@ #{{{script}}}#{{{ Linux, moria machines, gcc -CFLAGS= -g -pipe -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -Wcast-qual -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wnested-externs -pedantic -fno-common @@ -29,8 +29,8 @@ -#CFLAGS= -pipe -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -Wcast-qual -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wnested-externs -pedantic -fno-common -#CPPFLAGS= -I./.curses.h -DNO_POSIX_SOURCE -#LIBS= -lncurses -lmytinfo -lm -+CC= gcc -+CFLAGS= -pipe -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -Wcast-qual -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wnested-externs -pedantic -fno-common -I./.curses.h -DNO_POSIX_SOURCE ++CC?= gcc ++CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wcast-qual -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wnested-externs -pedantic -fno-common -I./.curses.h -DNO_POSIX_SOURCE +LIBS= -lncurses -lmytinfo -lm #LDFLAGS= #MAKEDEPEND= gcc -MM -Chris >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message