1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

Update to 3.6.4. Changes include:

- DSC parser now respects the level of BeginDocument/EndDocument
- Possible segfault has been fixed
- Fixed bug #21239: Vlist.c produces garbage if International is set
- Fixed bug #21740: popup windows may partly invisible as not on the
  screen
- The escape key is now working in more contexts
- The filename can optionally be shown insted of the title
- Fixed bug #23199: No error message for errors in opened file
- Got rid of non-free code.

Approved by:	Conrad J. Sabatier (maintainer)
PR:		ports/124187
This commit is contained in:
Hiroki Sato 2008-06-08 16:11:45 +00:00
parent e1b9b337bd
commit 8914c2f27a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=214504
3 changed files with 4 additions and 18 deletions

View File

@ -7,8 +7,7 @@
#
PORTNAME= gv
PORTVERSION= 3.6.3
PORTREVISION= 2
PORTVERSION= 3.6.4
CATEGORIES= print
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ${PORTNAME}
@ -22,7 +21,6 @@ USE_XORG= xpm ice sm xext xmu x11
USE_GHOSTSCRIPT= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --libdir=${PREFIX}/lib/X11
MAN1= gv.1
@ -37,7 +35,4 @@ PLIST_FILES= bin/gv \
lib/X11/app-defaults/GV
PLIST_DIRS= lib/X11/gv
post-install:
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (gv-3.6.3.tar.gz) = 0947fdbccaba114ac24da339dbf7d01a
SHA256 (gv-3.6.3.tar.gz) = 9486c25675719e986cbd77b48204025e825c46258b6750deeb64b3940685a033
SIZE (gv-3.6.3.tar.gz) = 480724
MD5 (gv-3.6.4.tar.gz) = 34ea686ea499c938e152ab424859b903
SHA256 (gv-3.6.4.tar.gz) = 82a1c4edb19597a4fbddb018622b0f357524e8629c9f655ae4e7ddea003c6827
SIZE (gv-3.6.4.tar.gz) = 507008

View File

@ -1,9 +0,0 @@
#!/bin/sh
if [ "$2" != "POST-INSTALL" ]; then
exit 0
fi
if ! which gs >/dev/null; then
echo "I can't find ghostscript (gs) in your search path."
echo "Please install your favorite version of ghostscript,"
echo "otherwise this program is useless."
fi