Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Apr 2000 22:01:26 -0700 (PDT)
From:      tkato@prontomail.ne.jp
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/17852: Update port: mail/glbiff to 0.3.2
Message-ID:  <200004080501.WAA34447@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         17852
>Category:       ports
>Synopsis:       Update port: mail/glbiff to 0.3.2
>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:   Fri Apr  7 22:10:02 PDT 2000
>Closed-Date:
>Last-Modified:
>Originator:     KATO Tsuguru
>Release:        4.0-RELEASE i386
>Organization:
>Environment:
>Description:
- Update to version 0.3.2
- Update MASTER_SITES and WWW: line of pkg/DESCR

New file:
patches/patch-aa

>How-To-Repeat:

>Fix:
diff -urN /usr/ports/mail/glbiff/Makefile mail/glbiff/Makefile
--- /usr/ports/mail/glbiff/Makefile	Wed Mar 29 20:03:55 2000
+++ mail/glbiff/Makefile	Sat Apr  8 07:33:32 2000
@@ -1,35 +1,35 @@
 # New ports collection makefile for:	glbiff
-# Version required:			0.2.11
+# Version required:			0.3.2
 # Date created:				18 May 1998
 # Whom:					Andrey Zakhvatov
 #
 # $FreeBSD: ports/mail/glbiff/Makefile,v 1.12 2000/03/29 07:18:35 kris Exp $
 #
 
-DISTNAME=	glbiff-0.2.11
+DISTNAME=	glbiff-0.3.2
 CATEGORIES=	mail
-MASTER_SITES=	http://www.eecg.utoronto.ca/~mac/projects/
+MASTER_SITES=	http://www.dgp.utoronto.ca/~mac/projects/
 EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	ports@FreeBSD.org
 
-LIB_DEPENDS=	GL:${PORTSDIR}/graphics/Mesa3 \
-		GLU:${PORTSDIR}/graphics/Mesa3 \
-		glut:${PORTSDIR}/graphics/Mesa3
+LIB_DEPENDS=	GL:${PORTSDIR}/graphics/Mesa3
 
-GNU_CONFIGURE=	yes
 USE_X_PREFIX=	yes
+GNU_CONFIGURE=	yes
+MAN1=		glbiff.1
+MAN5=		glbiffrc.5
 
 do-install:
-	@ ${INSTALL_PROGRAM} ${WRKSRC}/glbiff ${PREFIX}/bin
-	@ ${MKDIR} ${PREFIX}/share/examples/glbiff
-	@ ${INSTALL_DATA} ${WRKSRC}/glbiffrc.sample ${PREFIX}/share/examples/glbiff/dot.glbiffrc.sample
-
-post-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/glbiff ${PREFIX}/bin
+	@${MKDIR} ${PREFIX}/share/examples/glbiff
+	${INSTALL_DATA} ${WRKSRC}/glbiffrc.sample ${PREFIX}/share/examples/glbiff/dot.glbiffrc.sample
+	${INSTALL_MAN} ${WRKSRC}/glbiff.1 ${PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/glbiffrc.5 ${PREFIX}/man/man5
 .if !defined(NOPORTDOCS)
-	@ ${MKDIR} ${PREFIX}/share/doc/glbiff
+	@${MKDIR} ${PREFIX}/share/doc/glbiff
 .for file in ChangeLog README README.last-minute TODO
-	@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/glbiff
+	${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/glbiff
 .endfor
 .endif
 
diff -urN /usr/ports/mail/glbiff/files/md5 mail/glbiff/files/md5
--- /usr/ports/mail/glbiff/files/md5	Mon May  3 11:28:37 1999
+++ mail/glbiff/files/md5	Sat Apr  8 06:52:45 2000
@@ -1 +1 @@
-MD5 (glbiff-0.2.11.tgz) = 1c37a9af67742dec0f995ff000a7593e
+MD5 (glbiff-0.3.2.tgz) = 90aeeec9f246d13138e672f19f936361
diff -urN /usr/ports/mail/glbiff/patches/patch-aa mail/glbiff/patches/patch-aa
--- /usr/ports/mail/glbiff/patches/patch-aa	Thu Jan  1 09:00:00 1970
+++ mail/glbiff/patches/patch-aa	Sat Apr  8 07:26:11 2000
@@ -0,0 +1,32 @@
+--- Makefile.in.orig	Mon Feb 14 01:14:48 2000
++++ Makefile.in	Sat Apr  8 07:25:29 2000
+@@ -3,16 +3,17 @@
+ SRCDIR		=$(PROGRAM)-$(VERSION)
+ OBJS		= glbiff.o mail.o draw.o astro.o cfg.o
+ 
+-INST_DIR	= /usr/local
++INST_DIR	= @PREFIX@
+ BIN_DIR		= $(INST_DIR)/bin
+ MAN_DIR		= $(INST_DIR)/man
+ 
+ #DEBUG		= -g3 -DDEBUG
+ DEBUG		= -g3
+ 
+-LIBS		= @LIBS@
+-CFLAGS		= @CFLAGS@ -DVERSION=\"$(VERSION)\"
++LIBS		= @X_PRE_LIBS@ @X_LIBS@ @X_EXTRA_LIBS@ @LIBS@
++CXXFLAGS	= @CXXFLAGS@ -DVERSION=\"$(VERSION)\"
+ LDFLAGS		= @LDFLAGS@
++CPPFLAGS	= @X_CFLAGS@ @CPPFLAGS@
+ 
+ all:		$(PROGRAM)
+ 
+@@ -41,7 +42,7 @@
+ 		etags *.cc *.h
+ 
+ .cc.o:		
+-		g++ -c $(CFLAGS) $<
++		$(CXX) -c $(CXXFLAGS) $(CPPFLAGS) $<
+ 
+ dist:
+ 		make distclean;\
diff -urN /usr/ports/mail/glbiff/pkg/DESCR mail/glbiff/pkg/DESCR
--- /usr/ports/mail/glbiff/pkg/DESCR	Mon May  3 14:50:09 1999
+++ mail/glbiff/pkg/DESCR	Sat Apr  8 06:49:44 2000
@@ -3,4 +3,4 @@
 comes from the "mailbox" program available on SGI machines, and
 hence tries to mimic some of the features present in it.
 
-WWW: http://www.eecg.utoronto.ca/~mac/projects/glbiff.html
+WWW: http://www.dgp.toronto.edu/~mac/projects/glbiff.html


>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200004080501.WAA34447>