Update to 1.1.14 and give maintainership to Maxim Tulyuk <mt@primats.org.ua>.

PR:		42786
Submitted by:	Maxim Tulyuk <mt@primats.org.ua>
Approved by:	noway@nohow.demon.co.uk (former maintainer)
This commit is contained in:
Peter Pentchev 2002-10-29 13:25:34 +00:00
parent 824629f4a1
commit 3c632538e0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=69102
5 changed files with 37 additions and 15 deletions

View File

@ -6,12 +6,12 @@
#
PORTNAME= plucker
PORTVERSION= 1.1.13
PORTVERSION= 1.1.14
CATEGORIES= palm www
MASTER_SITES= http://plkr.org/download/plucker-1.1/
DISTNAME= ${PORTNAME}_bin-${PORTVERSION}
MAINTAINER= noway@nohow.demon.co.uk
MAINTAINER= mt@primats.org.ua
BUILD_DEPENDS= ppmtoTbmp:${PORTSDIR}/palm/ppmtoTbmp \
convert:${PORTSDIR}/graphics/ImageMagick \
@ -21,7 +21,7 @@ BUILD_DEPENDS= ppmtoTbmp:${PORTSDIR}/palm/ppmtoTbmp \
RUN_DEPENDS= ${BUILD_DEPENDS}
USE_PYTHON= yes
USE_BZIP= yes
USE_BZIP2= yes
PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S/^${LOCALBASE}\///g}
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
INSTALL_TARGET= install-prc-files install-data install-pyplucker

View File

@ -1 +1 @@
MD5 (plucker_bin-1.1.13.tar.gz) = 8d5bc2852aa5297c04de4222779c780d
MD5 (plucker_bin-1.1.14.tar.bz2) = 81571d88ed5c009491cb50509bd38ec8

View File

@ -0,0 +1,11 @@
--- configure.orig Sat Oct 27 22:06:04 2001
+++ configure Sun Sep 15 00:26:05 2002
@@ -974,7 +974,7 @@
test -n "$SED" && break
done
- $SED --version 2>&1 | grep GNU >/dev/null 2>&1
+# $SED --version 2>&1 | grep GNU >/dev/null 2>&1
if test "$?" != "0" ; then
echo "configure: warning: "Version of sed on path must be GNU sed to build manual"" 1>&2
BUILD_MANUAL=no

View File

@ -0,0 +1,11 @@
--- configure.in.orig Sat Oct 27 22:06:03 2001
+++ configure.in Sun Sep 15 00:22:44 2002
@@ -202,7 +202,7 @@
if test "$BUILD_MANUAL" = "yes"; then
AC_PATH_PROGS(SED, gsed sed)
- [$SED --version 2>&1 | grep GNU >/dev/null 2>&1]
+dnl [$SED --version 2>&1 | grep GNU >/dev/null 2>&1]
if test "$?" != "0" ; then
AC_MSG_WARN("Version of sed on path must be GNU sed to build manual")
BUILD_MANUAL=no

View File

@ -1,5 +1,5 @@
--- unix/setup.py.in.orig Fri Sep 14 03:34:24 2001
+++ unix/setup.py.in Fri Oct 5 23:57:20 2001
--- unix/setup.py.in.orig Sat Oct 27 21:53:35 2001
+++ unix/setup.py.in Sun Sep 15 00:07:50 2002
@@ -14,8 +14,9 @@
VERSION="@VERSION@"
@ -11,22 +11,22 @@
+PILOTXFER=os.path.join("@prefix@", "bin", "pilot-xfer")
if os.environ.has_key ('HOME'):
USERDIR = os.environ["HOME"]
@@ -99,7 +100,7 @@
if get_answer("Install the User's Guide, too", 'y'):
guide = os.path.join(PALMDIR, "PluckerUserGuide.pdb")
USERDIR = os.environ["HOME"]
@@ -117,7 +118,7 @@
if get_answer("Install the User's Guide, too", 'y'):
guide = os.path.join(PALMDIR, "PluckerUserGuide.pdb")
- os.system("pilot-xfer -i %s %s %s" % (viewer, zlib, guide))
+ os.system(PILOTXFER + " -i %s %s %s" % (viewer, zlib, guide))
- os.system("pilot-xfer -i %s %s %s" % (viewer, zlib, guide))
+ os.system(PILOTXFER + " -i %s %s %s" % (viewer, zlib, guide))
#
@@ -131,7 +132,7 @@
@@ -149,7 +150,7 @@
install_config_files()
-if not os.system('pilot-xfer > /dev/null 2>&1'):
+if not os.system(PILOTXFER + ' > /dev/null 2>&1'):
install_viewer()
install_viewer()
else:
print "\nThe program 'pilot-xfer' is missing so the Palm applications cannot be installed. You'll find them in %s." % PALMDIR
print "\nThe program 'pilot-xfer' is missing so the Palm applications cannot be installed. You'll find them in %s." % PALMDIR