From owner-freebsd-office@FreeBSD.ORG Tue Jul 24 17:03:42 2012 Return-Path: Delivered-To: freebsd-office@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B5D1106566C for ; Tue, 24 Jul 2012 17:03:42 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.21]) by mx1.freebsd.org (Postfix) with ESMTP id 09B3E8FC08 for ; Tue, 24 Jul 2012 17:03:42 +0000 (UTC) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.5/8.14.5) with ESMTP id q6OH3ftn063326 for ; Tue, 24 Jul 2012 10:03:41 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.5/8.14.5/Submit) id q6OH3fbu063325 for freebsd-office@freebsd.org; Tue, 24 Jul 2012 10:03:41 -0700 (PDT) (envelope-from sgk) Date: Tue, 24 Jul 2012 10:03:41 -0700 From: Steve Kargl To: freebsd-office@freebsd.org Message-ID: <20120724170341.GA63276@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Subject: libreoffice can't print to lpd/lp printers X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jul 2012 17:03:42 -0000 If one builds libreoffice and one does not use CUPS, then libreoffice will not print to an lpd/lp printer. This worked with older versins of this port. One can find a thread about this problem at http://comments.gmane.org/gmane.comp.documentfoundation.libreoffice.user/19782 To fix the problem, the Makefile needs to be changed with the following patch. After rebuilding libreoffice with the patch, I can again print to lpd/lp without a problem. troutmask:root[233] svn diff Index: Makefile =================================================================== --- Makefile (revision 301239) +++ Makefile (working copy) @@ -153,7 +153,7 @@ --without-system-mozilla \ --without-fonts \ --without-afms \ - --without-ppds \ + --with-ppds \ --without-stlport \ --disable-kde \ --disable-kdeab \ -- Steve