From owner-freebsd-questions Tue Apr 8 17:35:15 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA15408 for questions-outgoing; Tue, 8 Apr 1997 17:35:15 -0700 (PDT) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by freefall.freebsd.org (8.8.5/8.8.5) with SMTP id RAA15403 for ; Tue, 8 Apr 1997 17:35:12 -0700 (PDT) Received: from ct.picker.com by whqvax.picker.com with SMTP; Tue, 8 Apr 1997 20:34:39 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA28173; Tue, 8 Apr 97 20:34:37 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id UAA03296; Tue, 8 Apr 1997 20:34:35 -0400 Message-Id: <19970408203435.28613@ct.picker.com> Date: Tue, 8 Apr 1997 20:34:35 -0400 From: Randall Hopper To: Dan Riley Cc: jdunham@fc.net, questions@FreeBSD.ORG Subject: Re: Acrobat Reader for FreeBSD References: <199704071231.HAA00329@rider.fc.net> <199704071353.IAA08352@dyson.iquest.net> <19970407102953.15410@ct.picker.com> <33496A8B.CA7AD306@vailsys.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.65 In-Reply-To: <33496A8B.CA7AD306@vailsys.com>; from Dan Riley on Mon, Apr 07, 1997 at 04:43:39PM -0500 Sender: owner-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Dan Riley: |Randall Hopper wrote: |> |jdunham@fc.net: |> |> What version of Acrobat Reader works with FreeBSD and where might I |> |> go to acquire it? Adobe's site does not seem to contain anything |> |> close enough, although the acroread startup script claims one of |> |> the options is for Intel/BSDi. |> |> That I've tried, the Linux version runs OK except that it doesn't generate |> valid postscript. This is unfortunate when dealing with encrypted PDFs as |> xpdf and ghostscript don't handle encrypted PDFs. | |What Linux version runs on 2.2.1? | |The version that I picked up at, |ftp://ftp.adobe.com/pub/adobe/acrobatreader/unix/3.x/acroread_linux_30.tar.gz |installs but will not run. | |/usr/local/Acrobat3/bin > ./acroread |The OS named FreeBSD version 2.2.1-RELEASE is currently not installed. |Try running on a installed platform and connecting to your display. |Installed platform(s) include the following: | Intel/Linux I have the 3.0 Linux AcroRead installed and had to make these few changes to acroread.sh. Works ok on 2.2-GAMMA, except for (as I mentioned) generating PostScript: --- ORIG/acroread.sh Tue Apr 8 20:32:22 1997 +++ acroread.sh Thu Jan 30 16:36:08 1997 @@ -5,7 +5,9 @@ ver=3.0 -install_dir=REPLACE_ME +# RHH - Changed this +#install_dir=REPLACE_ME +install_dir=/opt/pkg/AcroRead-3.0/Reader # # Prepend a colon separated environment variable @@ -143,6 +145,9 @@ else os_release=`uname -r` fi + +# RHH - Added this +os_name=Linux case "$os_name" in SunOS) Randall