diff options
author | rafan <rafan@FreeBSD.org> | 2006-09-23 10:28:20 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2006-09-23 10:28:20 +0800 |
commit | 60b1b989c2b4e678e070b97d6e544014ddd092a5 (patch) | |
tree | 9c60f8c82e02e240670b63994cce6c3c92593245 | |
parent | 93ac6df3e192de7eb46f46b7125259c545207803 (diff) | |
download | freebsd-ports-gnome-60b1b989c2b4e678e070b97d6e544014ddd092a5.tar.gz freebsd-ports-gnome-60b1b989c2b4e678e070b97d6e544014ddd092a5.tar.zst freebsd-ports-gnome-60b1b989c2b4e678e070b97d6e544014ddd092a5.zip |
- Fix mapyrus script: removed quotes around the variable JAVA_AWT_HEADLESS,
otherwise mapyrus does not run under X.
- Removed an email address from pkg-descr
PR: ports/103478
Submitted by: Nicola Vitale <nivit at email.it> (maintainer)
-rw-r--r-- | graphics/mapyrus/Makefile | 1 | ||||
-rw-r--r-- | graphics/mapyrus/files/mapyrus.in | 2 | ||||
-rw-r--r-- | graphics/mapyrus/pkg-descr | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/graphics/mapyrus/Makefile b/graphics/mapyrus/Makefile index f7d70a7de65b..42ab211c7bdf 100644 --- a/graphics/mapyrus/Makefile +++ b/graphics/mapyrus/Makefile @@ -7,6 +7,7 @@ PORTNAME= mapyrus PORTVERSION= 0.609 +PORTREVISION= 1 CATEGORIES= graphics print java MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/graphics/mapyrus/files/mapyrus.in b/graphics/mapyrus/files/mapyrus.in index 760817eabe27..61a322fdd430 100644 --- a/graphics/mapyrus/files/mapyrus.in +++ b/graphics/mapyrus/files/mapyrus.in @@ -6,4 +6,4 @@ else JAVA_AWT_HEADLESS="" fi JAVA_VERSION="%%JAVA_VERSION%%" \ - exec "%%LOCALBASE%%/bin/java" "${JAVA_AWT_HEADLESS}" -jar "%%DATADIR%%/%%MAPYRUSJAR%%" "$@" + exec "%%LOCALBASE%%/bin/java" ${JAVA_AWT_HEADLESS} -jar "%%DATADIR%%/%%MAPYRUSJAR%%" "$@" diff --git a/graphics/mapyrus/pkg-descr b/graphics/mapyrus/pkg-descr index 2ce7c801c09d..393ba2505fb6 100644 --- a/graphics/mapyrus/pkg-descr +++ b/graphics/mapyrus/pkg-descr @@ -3,5 +3,5 @@ and labels to PostScript (high resolution, up to A0 paper size), Portable Document Format (PDF), Scalable Vector Graphics (SVG) format and web image output formats. -Author: Simon Chenery <simoc@users.sourceforge.net> +Author: Simon Chenery WWW: http://mapyrus.sourceforge.net |