From owner-cvs-share Mon Sep 18 01:01:31 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07190 for cvs-share-outgoing; Mon, 18 Sep 1995 01:01:31 -0700 Received: (from asami@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07178 ; Mon, 18 Sep 1995 01:01:24 -0700 Date: Mon, 18 Sep 1995 01:01:24 -0700 From: Satoshi Asami Message-Id: <199509180801.BAA07178@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/mk bsd.port.mk Sender: owner-cvs-share@FreeBSD.org Precedence: bulk asami 95/09/18 01:01:23 Modified: share/mk bsd.port.mk Log: Split EXEC_DEPENDS into FETCH_DEPENDS, BUILD_DEPENDS and RUN_DEPENDS. They are called from the fetch, extract and install targets, respectively. Also, only RUN_DEPENDS is put into the @pkgdep list of the package. EXEC_DEPENDS is still supported (for now), it is copied into BUILD_DEPENDS and RUN_DEPENDS. This will go away after we finish fixing all the ports Makefiles. This change fixes the following bug/features: (1) "make fetch" building and installing all the dependencies (2) Programs needed for building only (e.g., gmake) put into the packages' dependency lists ("why does the emacs package depend on gmake?") Reviewed by: the ports list