From owner-freebsd-ports Wed Mar 6 13:52:57 2002 Delivered-To: freebsd-ports@freebsd.org Received: from giganda.komkon.org (giganda.komkon.org [63.167.241.66]) by hub.freebsd.org (Postfix) with ESMTP id 4D97437B405 for ; Wed, 6 Mar 2002 13:52:41 -0800 (PST) Received: (from str@localhost) by giganda.komkon.org (8.11.3/8.11.3) id g26LqZc84337 for ports@freebsd.org; Wed, 6 Mar 2002 16:52:35 -0500 (EST) (envelope-from str) Date: Wed, 6 Mar 2002 16:52:35 -0500 (EST) From: Igor Roshchin Message-Id: <200203062152.g26LqZc84337@giganda.komkon.org> To: ports@freebsd.org Subject: ghostscript-gnu - Makefile errors. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Oops, I mistakenly posted this with a wrong (confusing) Subject line. Thus, reposting. Hello! There is what appears to be a typo in the Makefile for ghostscript-gnu, that I just downloaded from ftp.freebsd.org # $FreeBSD: ports/print/ghostscript-gnu/Makefile,v 1.68 2002/02/01 14:07:17 murr ay Exp $ It has a line: LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png I believe it should be LIB_DEPENDS= png:${PORTSDIR}/graphics/png (notice ".5" in the current version of it) This problem prevents the port to be built if I already have "png" ports installed earlier. Obviously, the make for ghostscript-gnu checks, and sees that png.5 is not registered as being installed, and then starts building and installing png.5, that is located in ${PORTSDIR}/graphics/png That make process sees that png is installed, and thus refuses to install it, returning an error, thus the original make process stops. The following simple patch does it: --- ghostscript-gnu/Makefile Sat Feb 2 09:04:01 2002 +++ ghostscript-gnu/Makefile.new Tue Mar 5 18:10:23 2002 @@ -28,7 +28,7 @@ MAINTAINER= ports@FreeBSD.org BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/graphics/jpeg:extract -LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png +LIB_DEPENDS= png:${PORTSDIR}/graphics/png USE_BZIP2= yes USE_GMAKE= yes Igor PS. If you reply, please Cc: to me, I am not on the ports list. Igor Roshchin System Administrator KomKon Sites To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message