From owner-freebsd-ports Mon Sep 25 1:25:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sentinel.office1.bg (sentinel.office1.bg [195.24.48.182]) by hub.freebsd.org (Postfix) with SMTP id 7B1D137B42C for ; Mon, 25 Sep 2000 01:25:32 -0700 (PDT) Received: (qmail 33678 invoked by uid 1001); 25 Sep 2000 08:26:06 -0000 Date: Mon, 25 Sep 2000 11:26:06 +0300 From: Peter Pentchev To: kris@freebsd.org Cc: ports@freebsd.org Subject: unbreak devel/cdk port, raise minor PORTREVISION issue Message-ID: <20000925112606.A31322@ringwraith.office1.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Kris, Your recent commit to ports/devel/cdk/Makefile breaks builds of the port. Actually, this seems to be a common problem with most ports now that the PORTREVISION/PORTEPOCH system is in place - most ports with bumped PORTREVISION would need an additional (constant) line: WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} Without this, 'patch' and all further targets fail, since they either try a cd to ${WRKDIR}/${PORTNAME}, or ${WRKDIR}/${PKGNAME} - none of which expand to ${PORTNAME}-${PORTVERSION} any longer. Attached is a proposed (trivial) patch for the devel/cdk port. G'luck, Peter -- "yields falsehood, when appended to its quotation." yields falsehood, when appended to its quotation. diff -urN ports/devel/cdk/Makefile myports/devel/cdk/Makefile --- ports/devel/cdk/Makefile Fri Sep 22 14:50:56 2000 +++ myports/devel/cdk/Makefile Mon Sep 25 11:22:25 2000 @@ -15,7 +15,7 @@ MAINTAINER= obrien@FreeBSD.org -WRKSRC= ${WRKDIR}/${PKGNAME} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} GNU_CONFIGURE= yes INSTALLS_SHLIB= yes ALL_TARGET= default To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message