From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 20 21:30:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E5AB1065672 for ; Mon, 20 Feb 2012 21:30:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F41078FC0C for ; Mon, 20 Feb 2012 21:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1KLUBqO079916 for ; Mon, 20 Feb 2012 21:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1KLUBjA079913; Mon, 20 Feb 2012 21:30:11 GMT (envelope-from gnats) Date: Mon, 20 Feb 2012 21:30:11 GMT Message-Id: <201202202130.q1KLUBjA079913@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mel Flynn Cc: Subject: Re: ports/164355: misc/gpt will not install using pkg_add X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mel Flynn List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 21:30:12 -0000 The following reply was made to PR ports/164355; it has been noted by GNATS. From: Mel Flynn To: bug-followup@FreeBSD.org, eb30750@gmail.com Cc: Subject: Re: ports/164355: misc/gpt will not install using pkg_add Date: Mon, 20 Feb 2012 22:22:20 +0100 This is a multi-part message in MIME format. --------------030701020600000503050900 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi, the port is missing a few runtime dependencies that make the exec command fail. Attached patch fixes things, but since I'm not a user of the software can't verify if it'll fix all it's problems. -- Mel --------------030701020600000503050900 Content-Type: text/plain; name="patch-misc__gpt.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-misc__gpt.diff" Index: Makefile =================================================================== RCS file: /home/ncvs/ports/misc/gpt/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 21 Sep 2010 07:56:37 -0000 1.14 +++ Makefile 20 Feb 2012 21:12:19 -0000 @@ -7,7 +7,7 @@ PORTNAME= gpt PORTVERSION= 3.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= misc archivers devel parallel MASTER_SITES= ftp://ftp.globus.org/pub/gt4/4.0/4.0.0/gpt/ DISTNAME= gpt-${PORTVERSION}autotools2004-src @@ -20,7 +20,9 @@ RUN_DEPENDS+= ${SITE_PERL}/Archive/Tar.pm:${PORTSDIR}/archivers/p5-Archive-Tar \ ${SITE_PERL}/IO/Zlib.pm:${PORTSDIR}/archivers/p5-IO-Zlib \ ${LOCALBASE}/bin/gmake:${PORTSDIR}/devel/gmake \ - ${LOCALBASE}/bin/makepatch:${PORTSDIR}/textproc/makepatch + ${LOCALBASE}/bin/makepatch:${PORTSDIR}/textproc/makepatch \ + unzip:${PORTSDIR}/archivers/unzip \ + gmake:${PORTSDIR}/devel/gmake USE_PERL5= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}autotools2004 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/misc/gpt/pkg-plist,v retrieving revision 1.3 diff -u -r1.3 pkg-plist --- pkg-plist 2 Mar 2006 22:39:14 -0000 1.3 +++ pkg-plist 20 Feb 2012 21:12:19 -0000 @@ -132,5 +132,5 @@ @dirrm %%DATADIR%%/aclocal @dirrm %%DATADIR%%/amdir @dirrm %%DATADIR%% -@exec PATH=%%LOCALBASE%%/bin:${PATH} GPT_LOCATION=%D %D/sbin/gpt-config -probe -perl=%%PERL%% +@exec PATH=%%LOCALBASE%%/bin:${PATH} GPT_LOCATION=%D %D/sbin/gpt-config -probe -perl=%%PERL%% -gmake=%%LOCALBASE%%/bin/gmake -tar=/usr/bin/tar -unzip=%%LOCALBASE%%/bin/unzip @unexec echo "Configuration information saved. If you will *NOT* use this package" && echo "anymore, please remove /var/db/gpt and its contents manually." --------------030701020600000503050900--