Date: Tue, 18 Apr 2000 02:36:20 +0400 From: "Andrey A. Chernov" <ache@nagual.pp.ru> To: Satoshi - Ports Wraith - Asami <asami@freebsd.org> Cc: ports@freebsd.org Subject: Re: LIB_DEPENDS runs too early Message-ID: <20000418023619.A56894@nagual.pp.ru> In-Reply-To: <20000416204434.A36898@nagual.pp.ru>; from ache@nagual.pp.ru on Sun, Apr 16, 2000 at 08:44:34PM %2B0400 References: <20000416053046.A27753@nagual.pp.ru> <vqcsnwm8lnh.fsf@silvia.hip.berkeley.edu> <20000416204434.A36898@nagual.pp.ru>
next in thread | previous in thread | raw e-mail | index | archive | help
Here is the patch for review. I left misc-depends in "extract" stage to allow extraction programs and move build-depends and lib-depends to "configure" stage. Extract must not depend in any way of tools and libraries needed for building. Please review this patch and tell me if it breaks something or commit it. Thanks. --- bsd.port.mk.bak Tue Apr 18 02:26:20 2000 +++ bsd.port.mk Tue Apr 18 02:28:11 2000 @@ -1848,7 +1848,10 @@ .endif .if make(real-extract) @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} checksum REAL_EXTRACT=yes - @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} build-depends lib-depends misc-depends + @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} misc-depends +.endif +.if make(real-configure) + @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} build-depends lib-depends .endif .if make(real-install) @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} check-categories -- Andrey A. Chernov <ache@nagual.pp.ru> http://nagual.pp.ru/~ache/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000418023619.A56894>