From dmmiller@lcl12.cvzoom.net  Thu Oct 19 13:14:11 2000
Return-Path: <dmmiller@lcl12.cvzoom.net>
Received: from lcl12.cvzoom.net (lcl12.cvzoom.net [208.226.155.12])
	by hub.freebsd.org (Postfix) with ESMTP id 7F02237B4CF
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 19 Oct 2000 13:14:09 -0700 (PDT)
Received: (from dmmiller@localhost)
	by lcl12.cvzoom.net (8.11.1/8.11.1) id e9JKCw991988;
	Thu, 19 Oct 2000 16:12:58 -0400 (EDT)
	(envelope-from dmmiller)
Message-Id: <200010192012.e9JKCw991988@lcl12.cvzoom.net>
Date: Thu, 19 Oct 2000 16:12:58 -0400 (EDT)
From: dmmiller@cvzoom.net
Sender: dmmiller@lcl12.cvzoom.net
Reply-To: dmmiller@cvzoom.net
To: FreeBSD-gnats-submit@freebsd.org
Subject: New port
X-Send-Pr-Version: 3.2

>Number:         22131
>Category:       ports
>Synopsis:       New port:  port of seejpeg (console graphics viewer>
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu Oct 19 13:20:01 PDT 2000
>Closed-Date:    Tue Oct 24 13:47:18 PDT 2000
>Last-Modified:  Tue Oct 24 13:47:37 PDT 2000
>Originator:     Donn Miller
>Release:        FreeBSD 4.1.1-STABLE i386
>Organization:
>Environment:


FreeBSD lcl12.cvzoom.net 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Tue Oct 17 03:02:41 EDT 2000     dmmiller@lcl12.cvzoom.net:/usr/src/sys/compile/CUSTOM  i386

>Description:

A console graphics viewer using the svga console graphics library.

Seejpeg is another JPEG viewer which utilizes svgalib and contains
limited GIF, PPM, BMP and TARGA viewing support.

>How-To-Repeat:


# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	seejpeg
#	seejpeg/files
#	seejpeg/files/patch-aa
#	seejpeg/pkg-comment
#	seejpeg/pkg-plist
#	seejpeg/pkg-descr
#	seejpeg/distinfo
#	seejpeg/Makefile
#
echo c - seejpeg
mkdir -p seejpeg > /dev/null 2>&1
echo c - seejpeg/files
mkdir -p seejpeg/files > /dev/null 2>&1
echo x - seejpeg/files/patch-aa
sed 's/^X//' >seejpeg/files/patch-aa << 'END-of-seejpeg/files/patch-aa'
X--- Makefile.orig	Sun Nov  7 00:55:19 1999
X+++ Makefile	Thu Oct 19 10:31:56 2000
X@@ -6,19 +6,19 @@
X # $Id: Makefile,v 1.8 1999/11/07 05:55:19 evan Exp $	
X 
X # The installation directories.
X-BIN=	/usr/local/bin
X-MAN=	/usr/local/man/man1
X+BIN=	${LOCALBASE}/bin
X+MAN=	${LOCALBASE}/man/man1
X 
X # See the README for a description of these options.
X #OPTIONS= -DNO_32K_CASCADE -DTESTMODE=G640x480x32K -DBUG_WORKAROUND -DONLY_1_8_MODES
X OPTIONS= -DBUG_WORKAROUND
X 
X # This should be the location of the JPEG v6 header files.
X-JPEG_HEADERS=	-I /usr/local/include
X+JPEG_HEADERS=	-I ${LOCALBASE}/include
X #JPEG_HEADERS=	-I /usr/X11R6/include
X 
X # This should be the location of the JPEG v6 libraries.
X-JPEG_LIBS=	-L /usr/local/lib
X+JPEG_LIBS=	-L ${LOCALBASE}/lib
X #JPEG_LIBS=	-L /usr/X11R6/lib
X 
X # These may be changed, if desired.
X@@ -29,13 +29,13 @@
X # Editing of the rest of this Makefile shouldn't be necessary.
X 
X CFLAGS=		$(JPEG_HEADERS) -I jpeglib $(CCOPTS) $(OPTIONS)
X-LIBS=		-lvga $(JPEG_LIBS) -ljpeg -lm
X+LIBS=		-lvga $(JPEG_LIBS) -ljpeg -lgnugetopt -lm
X LDOPTS=		-s
X 
X SEEJPEG=	seejpeg.o jpeg.o image.o display.o cmap.o \
X 		jpeglib/rdbmp.o jpeglib/rdgif.o jpeglib/rdppm.o \
X 		jpeglib/rdtarga.o
X-
X+		
X default:
X 	@echo "To build seejpeg, first obtain the library for v6 of libjpeg.  This ought"
X 	@echo "to be available from the same place that you obtained seejpeg.  Having"
X@@ -54,7 +54,8 @@
X 
X install:
X 		install -s -o root -g bin -m 4711 seejpeg $(BIN)
X-		install -o root -g root -m 644 seejpeg.1 $(MAN)
X+		install -o root -g wheel -m 644 seejpeg.1 $(MAN)
X+		gzip ${LOCALBASE}/man/man1/seejpeg.1
X 
X clean:
X 		rm -f *.o jpeglib/*.o *~ core seejpeg
END-of-seejpeg/files/patch-aa
echo x - seejpeg/pkg-comment
sed 's/^X//' >seejpeg/pkg-comment << 'END-of-seejpeg/pkg-comment'
XA console graphics viewer using the svga console graphics library
END-of-seejpeg/pkg-comment
echo x - seejpeg/pkg-plist
sed 's/^X//' >seejpeg/pkg-plist << 'END-of-seejpeg/pkg-plist'
Xbin/seejpeg
END-of-seejpeg/pkg-plist
echo x - seejpeg/pkg-descr
sed 's/^X//' >seejpeg/pkg-descr << 'END-of-seejpeg/pkg-descr'
XA console graphics viewer using the svga console graphics library.
X
XSeejpeg is another JPEG viewer which utilizes svgalib and contains
Xlimited GIF, PPM, BMP and TARGA viewing support.
X
XWWW:http://www.icewalk.com/softlib/app/app_00013.html
X
X- Donn
Xdmmiller@zoominternet.net
END-of-seejpeg/pkg-descr
echo x - seejpeg/distinfo
sed 's/^X//' >seejpeg/distinfo << 'END-of-seejpeg/distinfo'
XMD5 (seejpeg-1.10.tgz) = 96a72df8ef223316eee0167c8da3fd1e
END-of-seejpeg/distinfo
echo x - seejpeg/Makefile
sed 's/^X//' >seejpeg/Makefile << 'END-of-seejpeg/Makefile'
X# New ports collection makefile for: seejpeg-1.10.tgz
X# Date created:		2000 Oct 19
X#
X# Whom:			Donn Miller <dmmiller@cvzoom.net>
X# $FreeBSD$
X#
X
XPORTNAME=	seejpeg
XPORTVERSION=	1.10
XCATEGORIES=	graphics
XMASTER_SITES=	${MASTER_SITE_SUNSITE}
XMASTER_SITE_SUBDIR=	apps/graphics/viewers/svga
XEXTRACT_SUFX=	.tgz
X
XMAINTAINER=	ports@FreeBSD.org
XLIB_DEPENDS=	vga.1:${PORTSDIR}/graphics/svgalib \
X		gnugetopt.1:${PORTSDIR}/devel/libgnugetopt \
X		jpeg.9:${PORTSDIR}/graphics/jpeg
XALL_TARGET=	seejpeg
X
XMAN1=		seejpeg.1
XMANCOMPRESSED=	yes
XUSE_GMAKE=	yes
X
Xpost-extract:
X	${CHMOD} 0644 ${WRKSRC}/Makefile
X
Xpost-patch:
X	${MV}	${WRKSRC}/Makefile ${WRKSRC}/Makefile.prev
X	${SED}	"s/-O3/${CFLAGS}/g" ${WRKSRC}/Makefile.prev >  ${WRKSRC}/Makefile
X
X.include <bsd.port.mk>
END-of-seejpeg/Makefile
exit

>Fix:



>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: gnats-admin->freebsd-ports 
Responsible-Changed-By: phantom 
Responsible-Changed-When: Sun Oct 22 07:28:17 PDT 2000 
Responsible-Changed-Why:  
Misfilled PR 

http://www.freebsd.org/cgi/query-pr.cgi?pr=22131 
Responsible-Changed-From-To: freebsd-ports->trevor 
Responsible-Changed-By: trevor 
Responsible-Changed-When: Sun Oct 22 08:48:31 PDT 2000 
Responsible-Changed-Why:  
I'm looking at this. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=22131 
Responsible-Changed-From-To: trevor->freebsd-ports 
Responsible-Changed-By: trevor 
Responsible-Changed-When: Sun Oct 22 09:03:55 PDT 2000 
Responsible-Changed-Why:  
My video card is poorly supported by SVGAlib, and I couldn't get this 
program to do anything useful, probably for that reason. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=22131 

From: Rasmus Kaj <kaj@raditex.se>
To: freebsd-gnats-submit@FreeBSD.org, dmmiller@cvzoom.net
Cc: Rasmus Kaj <kaj@raditex.se>
Subject: Re: ports/22131: New port:  port of seejpeg (console graphics viewer>
Date: 24 Oct 2000 14:27:58 +0200

 This seems to be an older version of ports/22133, so this PR
 (ports/22131) should probably be closed. Also, that port gives a
 MAINTAINER while this sets it to ports@FreeBSD.org ...
 
 -- 
 Rasmus Kaj ------------------------ rasmus@kaj.se - http://Raditex.se/~kaj/
  \                               By failing to prepare, you prepare to fail
   \----------------------------------------------------- http://Raditex.se/
 
State-Changed-From-To: open->closed 
State-Changed-By: trevor 
State-Changed-When: Tue Oct 24 13:47:18 PDT 2000 
State-Changed-Why:  
Committed--thanks, Donn. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=22131 
>Unformatted:
