2008-05-26 15:25:22 +02:00
|
|
|
# $NetBSD: bsd.pkg.mk,v 1.1946 2008/05/26 13:25:22 joerg Exp $
|
1997-08-20 12:21:05 +02:00
|
|
|
#
|
1998-06-05 14:45:53 +02:00
|
|
|
# This file is in the public domain.
|
1997-08-20 12:21:05 +02:00
|
|
|
#
|
2005-02-11 16:55:13 +01:00
|
|
|
# Please see the pkgsrc/doc/guide manual for details on the
|
|
|
|
# variables used in this make file template.
|
|
|
|
#
|
2006-07-08 04:16:33 +02:00
|
|
|
# Default sequence for "all" is:
|
|
|
|
#
|
2006-07-13 16:02:34 +02:00
|
|
|
# bootstrap-depends
|
|
|
|
# fetch
|
|
|
|
# checksum
|
|
|
|
# depends
|
|
|
|
# tools
|
|
|
|
# extract
|
|
|
|
# patch
|
2006-07-27 15:47:29 +02:00
|
|
|
# wrapper
|
2006-07-13 16:02:34 +02:00
|
|
|
# configure
|
|
|
|
# build
|
1997-08-20 12:21:05 +02:00
|
|
|
#
|
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "misc/common.mk"
|
2006-06-06 17:28:51 +02:00
|
|
|
|
2008-05-23 14:31:24 +02:00
|
|
|
############################################################################
|
|
|
|
# Transform package Makefile variables and set defaults
|
|
|
|
# This is the early set used directly or indirectly in
|
|
|
|
# the phase variables.
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
##### PKGBASE, PKGNAME[_NOREV], PKGVERSION
|
|
|
|
|
|
|
|
PKGBASE?= ${PKGNAME:C/-[^-]*$//}
|
|
|
|
PKGVERSION?= ${PKGNAME:C/^.*-//}
|
|
|
|
PKGVERSION?= ${PKGNAME:C/^.*-//}
|
|
|
|
.if defined(PKGREVISION) && !empty(PKGREVISION) && (${PKGREVISION} != "0")
|
|
|
|
. if defined(PKGNAME)
|
|
|
|
PKGNAME_NOREV:= ${PKGNAME}
|
|
|
|
PKGNAME:= ${PKGNAME}nb${PKGREVISION}
|
|
|
|
. else
|
|
|
|
PKGNAME?= ${DISTNAME}nb${PKGREVISION}
|
|
|
|
PKGNAME_NOREV= ${DISTNAME}
|
|
|
|
. endif
|
|
|
|
.else
|
|
|
|
PKGNAME?= ${DISTNAME}
|
|
|
|
PKGNAME_NOREV= ${PKGNAME}
|
|
|
|
.endif
|
|
|
|
PKGVERSION_NOREV= ${PKGNAME_NOREV:C/^.*-//}
|
|
|
|
|
2008-05-26 15:25:22 +02:00
|
|
|
# A meta-package is a package that does not have any files and whose
|
|
|
|
# only purpose is to depend on other packages, giving that collection
|
|
|
|
# a simple name.
|
|
|
|
#
|
|
|
|
# Keywords: meta meta-package META_PACKAGE
|
|
|
|
#
|
|
|
|
.if defined(META_PACKAGE)
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
NO_CONFIGURE= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
DISTFILES= # none
|
|
|
|
PLIST_SRC= # none
|
|
|
|
do-patch:
|
|
|
|
@${DO_NADA}
|
|
|
|
do-install:
|
|
|
|
@${DO_NADA}
|
|
|
|
.endif
|
|
|
|
|
2008-05-23 14:31:24 +02:00
|
|
|
####
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Allow various phases to define the default variables
|
|
|
|
############################################################################
|
2007-07-29 07:18:36 +02:00
|
|
|
.if defined(EMUL_PLATFORMS) && !empty(EMUL_PLATFORMS)
|
2007-10-13 13:04:15 +02:00
|
|
|
. include "emulator/emulator.mk"
|
2007-07-29 07:18:36 +02:00
|
|
|
.endif
|
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "features/features.mk"
|
2007-09-07 23:55:44 +02:00
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "flavor/bsd.flavor-vars.mk"
|
|
|
|
.include "check/bsd.check-vars.mk"
|
|
|
|
.include "depends/bsd.depends-vars.mk"
|
|
|
|
.include "fetch/bsd.fetch-vars.mk"
|
|
|
|
.include "checksum/bsd.checksum-vars.mk"
|
|
|
|
.include "extract/bsd.extract-vars.mk"
|
|
|
|
.include "patch/bsd.patch-vars.mk"
|
|
|
|
.include "configure/bsd.configure-vars.mk"
|
|
|
|
.include "build/bsd.build-vars.mk"
|
|
|
|
.include "install/bsd.install-vars.mk"
|
2006-07-13 16:02:34 +02:00
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "bsd.pkg.error.mk"
|
2006-06-06 17:28:51 +02:00
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "bsd.hacks.mk"
|
Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file that
caches variable definitions that were computed by make. These variables
are specified by listing them in MAKE_VARS, e.g.,
.if !defined(FOO)
FOO!= very_time_consuming_command
.endif
MAKE_VARS+= FOO
bsd.pkg.mk will include only the one generated during the most recent
phase. A particular phase's makevars.mk file consists of variable
definitions that are a superset of all of the ones produced in previous
phases of the build.
The caching is useful because bsd.pkg.mk invokes make recursively,
which in the example above has the potential to run the very time-consuming
command each time unless we cause FOO to be defined for the sub-make
processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't
consistently applied to every invocation of make, and also because
MAKE_FLAGS can overflow the maximum length of a make variable very
quickly if we add many values to it.
One important and desirable property of variables cached via MAKE_VARS
is that they only apply to the current package, and not to any
dependencies whose builds may have been triggered by the current
package.
The makevars.mk files are generated by new targets fetch-vars,
extract-vars, patch-vars, etc., and these targets are built during
the corresponding real-* target to ensure that they are being invoked
with PKG_PHASE set to the proper value.
Also, remove the variables cache file that bsd.wrapper.mk was generating
since the new makevars.mk files provide the same functionality at a
higher level. Change all WRAPPER_VARS definitions that were used by
the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-09 07:06:55 +02:00
|
|
|
|
2005-02-11 16:55:13 +01:00
|
|
|
############################################################################
|
2005-01-24 20:57:42 +01:00
|
|
|
# Transform package Makefile variables and set defaults
|
2005-02-11 16:55:13 +01:00
|
|
|
############################################################################
|
2003-10-02 16:41:42 +02:00
|
|
|
|
2005-01-24 20:57:42 +01:00
|
|
|
MKCRYPTO?= YES # build crypto packages by default
|
|
|
|
|
|
|
|
##### Variant spellings
|
|
|
|
|
|
|
|
.if defined(LICENCE) && !defined(LICENSE)
|
|
|
|
LICENSE= ${LICENCE}
|
|
|
|
.endif
|
|
|
|
.if defined(ACCEPTABLE_LICENCES) && !defined(ACCEPTABLE_LICENSES)
|
|
|
|
ACCEPTABLE_LICENSES= ${ACCEPTABLE_LICENCES}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
##### Others
|
1997-08-20 12:21:05 +02:00
|
|
|
|
2005-02-11 16:55:13 +01:00
|
|
|
BUILD_DEPENDS?= # empty
|
|
|
|
COMMENT?= (no description)
|
|
|
|
DEPENDS?= # empty
|
2005-01-24 20:57:42 +01:00
|
|
|
DESCR_SRC?= ${PKGDIR}/DESCR
|
2002-07-02 13:26:05 +02:00
|
|
|
INTERACTIVE_STAGE?= none
|
2006-03-04 22:28:51 +01:00
|
|
|
MAINTAINER?= pkgsrc-users@NetBSD.org
|
2005-01-24 20:57:42 +01:00
|
|
|
PKGWILDCARD?= ${PKGBASE}-[0-9]*
|
|
|
|
SVR4_PKGNAME?= ${PKGNAME}
|
|
|
|
WRKSRC?= ${WRKDIR}/${DISTNAME}
|
|
|
|
|
2006-10-09 12:30:27 +02:00
|
|
|
# Override for SU_CMD user check
|
|
|
|
_SU_ROOT_USER?= ${ROOT_USER}
|
2006-11-05 16:10:08 +01:00
|
|
|
REAL_ROOT_USER?= ${ROOT_USER}
|
|
|
|
REAL_ROOT_GROUP?= ${ROOT_GROUP}
|
2006-10-09 12:30:27 +02:00
|
|
|
|
2005-03-18 19:16:34 +01:00
|
|
|
.if (defined(INSTALL_UNSTRIPPED) && !empty(INSTALL_UNSTRIPPED:M[yY][eE][sS])) || defined(DEBUG_FLAGS)
|
|
|
|
_INSTALL_UNSTRIPPED= # set (flag used by platform/*.mk)
|
|
|
|
.endif
|
|
|
|
|
2005-02-11 16:55:13 +01:00
|
|
|
##### Transform USE_* into dependencies
|
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "bsd.pkg.use.mk"
|
2005-02-11 16:55:13 +01:00
|
|
|
|
2005-02-11 17:57:45 +01:00
|
|
|
############################################################################
|
|
|
|
# Sanity checks
|
|
|
|
############################################################################
|
|
|
|
|
2005-01-24 20:57:42 +01:00
|
|
|
# Fail-safe in the case of circular dependencies
|
|
|
|
.if defined(_PKGSRC_DEPS) && defined(PKGNAME) && !empty(_PKGSRC_DEPS:M${PKGNAME})
|
2005-02-11 18:00:07 +01:00
|
|
|
PKG_FAIL_REASON+= "Circular dependency detected"
|
2005-01-24 20:57:42 +01:00
|
|
|
.endif
|
|
|
|
|
2005-02-11 17:57:45 +01:00
|
|
|
# PKG_INSTALLATION_TYPE can only be one of two values: "pkgviews" or
|
|
|
|
# "overwrite".
|
|
|
|
.if (${PKG_INSTALLATION_TYPE} != "pkgviews") && \
|
|
|
|
(${PKG_INSTALLATION_TYPE} != "overwrite")
|
|
|
|
PKG_FAIL_REASON+= "PKG_INSTALLATION_TYPE must be \`\`pkgviews'' or \`\`overwrite''."
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if empty(PKG_INSTALLATION_TYPES:M${PKG_INSTALLATION_TYPE})
|
|
|
|
PKG_FAIL_REASON+= "This package doesn't support PKG_INSTALLATION_TYPE=${PKG_INSTALLATION_TYPE}."
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(ALL_TARGET)
|
|
|
|
PKG_FAIL_REASON+='ALL_TARGET is deprecated and must be replaced with BUILD_TARGET.'
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(NO_WRKSUBDIR)
|
|
|
|
PKG_FAIL_REASON+='NO_WRKSUBDIR has been deprecated - please replace it with an explicit'
|
|
|
|
PKG_FAIL_REASON+='assignment of WRKSRC= $${WRKDIR}'
|
|
|
|
.endif # NO_WRKSUBDIR
|
|
|
|
|
|
|
|
# We need to make sure the buildlink-x11 package is not installed since it
|
|
|
|
# breaks builds that use imake.
|
|
|
|
.if defined(USE_IMAKE)
|
|
|
|
. if exists(${LOCALBASE}/lib/X11/config/buildlinkX11.def) || \
|
|
|
|
exists(${X11BASE}/lib/X11/config/buildlinkX11.def)
|
|
|
|
PKG_FAIL_REASON+= "${PKGNAME} uses imake, but the buildlink-x11 package was found." \
|
|
|
|
" Please deinstall it (pkg_delete buildlink-x11)."
|
|
|
|
. endif
|
|
|
|
.endif # USE_IMAKE
|
|
|
|
|
|
|
|
.if !defined(CATEGORIES) || !defined(DISTNAME)
|
|
|
|
PKG_FAIL_REASON+='CATEGORIES and DISTNAME are mandatory.'
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(PKG_PATH)
|
|
|
|
PKG_FAIL_REASON+='Please unset PKG_PATH before doing pkgsrc work!'
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(MASTER_SITE_SUBDIR)
|
|
|
|
PKG_FAIL_REASON+='MASTER_SITE_SUBDIR is deprecated and must be replaced with MASTER_SITES.'
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(PATCH_SITE_SUBDIR)
|
|
|
|
PKG_FAIL_REASON+='PATCH_SITE_SUBDIR is deprecated and must be replaced with PATCH_SITES.'
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(ONLY_FOR_ARCHS) || defined(NOT_FOR_ARCHS) \
|
|
|
|
|| defined(ONLY_FOR_OPSYS) || defined(NOT_FOR_OPSYS)
|
|
|
|
PKG_FAIL_REASON+='ONLY/NOT_FOR_ARCHS/OPSYS are deprecated and must be replaced with ONLY/NOT_FOR_PLATFORM.'
|
|
|
|
.endif
|
|
|
|
|
2005-01-24 20:57:42 +01:00
|
|
|
# Allow variables to be set on a per-OS basis
|
|
|
|
OPSYSVARS+= CFLAGS CXXFLAGS CPPFLAGS LDFLAGS LIBS
|
|
|
|
.for _var_ in ${OPSYSVARS:O}
|
|
|
|
. if defined(${_var_}.${OPSYS})
|
|
|
|
${_var_}+= ${${_var_}.${OPSYS}}
|
|
|
|
. elif defined(${_var_}.*)
|
|
|
|
${_var_}+= ${${_var_}.*}
|
|
|
|
. endif
|
|
|
|
.endfor
|
|
|
|
|
2005-02-11 17:36:49 +01:00
|
|
|
CPPFLAGS+= ${CPP_PRECOMP_FLAGS}
|
2005-11-14 05:41:17 +01:00
|
|
|
|
2005-02-11 17:36:49 +01:00
|
|
|
ALL_ENV+= CC=${CC:Q}
|
2005-05-10 03:34:04 +02:00
|
|
|
ALL_ENV+= CFLAGS=${CFLAGS:M*:Q}
|
|
|
|
ALL_ENV+= CPPFLAGS=${CPPFLAGS:M*:Q}
|
2007-01-03 00:34:40 +01:00
|
|
|
ALL_ENV+= CXX=${CXX:Q}
|
2005-05-10 03:34:04 +02:00
|
|
|
ALL_ENV+= CXXFLAGS=${CXXFLAGS:M*:Q}
|
2005-02-11 17:36:49 +01:00
|
|
|
ALL_ENV+= COMPILER_RPATH_FLAG=${COMPILER_RPATH_FLAG:Q}
|
2005-03-16 03:09:54 +01:00
|
|
|
ALL_ENV+= F77=${FC:Q}
|
2005-02-11 17:36:49 +01:00
|
|
|
ALL_ENV+= FC=${FC:Q}
|
2005-05-10 03:34:04 +02:00
|
|
|
ALL_ENV+= FFLAGS=${FFLAGS:M*:Q}
|
2005-03-20 19:18:09 +01:00
|
|
|
ALL_ENV+= LANG=C
|
|
|
|
ALL_ENV+= LC_COLLATE=C
|
|
|
|
ALL_ENV+= LC_CTYPE=C
|
|
|
|
ALL_ENV+= LC_MESSAGES=C
|
|
|
|
ALL_ENV+= LC_MONETARY=C
|
|
|
|
ALL_ENV+= LC_NUMERIC=C
|
|
|
|
ALL_ENV+= LC_TIME=C
|
2005-05-10 03:34:04 +02:00
|
|
|
ALL_ENV+= LDFLAGS=${LDFLAGS:M*:Q}
|
2005-02-11 17:36:49 +01:00
|
|
|
ALL_ENV+= LINKER_RPATH_FLAG=${LINKER_RPATH_FLAG:Q}
|
|
|
|
ALL_ENV+= PATH=${PATH:Q}:${LOCALBASE}/bin:${X11BASE}/bin
|
|
|
|
ALL_ENV+= PREFIX=${PREFIX}
|
|
|
|
|
2006-10-22 09:00:41 +02:00
|
|
|
# This variable can be added to MAKE_ENV to ease installation of packages
|
|
|
|
# that use BSD-style Makefiles.
|
|
|
|
BSD_MAKE_ENV= BINOWN=${BINOWN} BINGRP=${BINGRP}
|
2008-01-01 15:20:20 +01:00
|
|
|
BSD_MAKE_ENV+= GAMEOWN=${GAMEOWN} GAMEGRP=${GAMEGRP}
|
2006-10-22 09:00:41 +02:00
|
|
|
BSD_MAKE_ENV+= MANOWN=${MANOWN} MANGRP=${MANGRP}
|
2008-01-01 15:20:20 +01:00
|
|
|
BSD_MAKE_ENV+= SHAREOWN=${SHAREOWN} SHAREGRP=${SHAREGRP}
|
|
|
|
BSD_MAKE_ENV+= DOCOWN=${DOCOWN} DOCGRP=${DOCGRP}
|
|
|
|
BSD_MAKE_ENV+= BINMODE=${BINMODE} NONBINMODE=${NONBINMODE}
|
2006-10-22 09:20:06 +02:00
|
|
|
BSD_MAKE_ENV+= BINDIR=${PREFIX}/bin
|
|
|
|
BSD_MAKE_ENV+= INCSDIR=${PREFIX}/include
|
|
|
|
BSD_MAKE_ENV+= LIBDIR=${PREFIX}/lib
|
|
|
|
BSD_MAKE_ENV+= MANDIR=${PREFIX}/${PKGMANDIR}
|
2008-02-13 10:28:41 +01:00
|
|
|
BSD_MAKE_ENV+= STRIPFLAG=${_STRIPFLAG_INSTALL:Q}
|
2006-10-22 09:00:41 +02:00
|
|
|
|
2006-07-16 01:58:52 +02:00
|
|
|
_BUILD_DEFS= ${BUILD_DEFS}
|
2006-07-17 15:35:11 +02:00
|
|
|
_BUILD_DEFS+= LOCALBASE
|
|
|
|
_BUILD_DEFS+= PKGINFODIR
|
|
|
|
_BUILD_DEFS+= PKGMANDIR
|
2006-07-16 01:58:52 +02:00
|
|
|
|
2005-01-24 20:57:42 +01:00
|
|
|
# Store the result in the +BUILD_INFO file so we can query for the build
|
|
|
|
# options using "pkg_info -Q PKG_OPTIONS <pkg>".
|
|
|
|
#
|
|
|
|
.if defined(PKG_SUPPORTED_OPTIONS) && defined(PKG_OPTIONS)
|
2006-07-16 01:58:52 +02:00
|
|
|
_BUILD_DEFS+= PKG_OPTIONS
|
2005-01-24 20:57:42 +01:00
|
|
|
.endif
|
2002-07-02 13:26:05 +02:00
|
|
|
|
2003-09-02 08:59:37 +02:00
|
|
|
.if empty(DEPOT_SUBDIR)
|
|
|
|
PKG_FAIL_REASON+= "DEPOT_SUBDIR may not be empty."
|
1997-08-20 12:21:05 +02:00
|
|
|
.endif
|
1998-07-31 16:55:38 +02:00
|
|
|
|
2006-06-07 20:37:06 +02:00
|
|
|
# ZERO_FILESIZE_P exits with a successful return code if the given file
|
|
|
|
# has zero length.
|
|
|
|
# NONZERO_FILESIZE_P exits with a successful return code if the given file
|
|
|
|
# has nonzero length.
|
2006-06-07 19:44:29 +02:00
|
|
|
#
|
2006-06-07 20:37:06 +02:00
|
|
|
_ZERO_FILESIZE_P= ${AWK} 'END { exit (NR > 0) ? 1 : 0; }'
|
|
|
|
_NONZERO_FILESIZE_P= ${AWK} 'END { exit (NR > 0) ? 0 : 1; }'
|
2006-06-07 19:44:29 +02:00
|
|
|
|
2002-01-04 13:00:56 +01:00
|
|
|
# Automatically increase process limit where necessary for building.
|
2005-11-18 18:07:13 +01:00
|
|
|
_ULIMIT_CMD= ${UNLIMIT_RESOURCES:@_lim_@${ULIMIT_CMD_${_lim_}};@}
|
2002-01-04 13:00:56 +01:00
|
|
|
|
2005-06-04 22:56:47 +02:00
|
|
|
_NULL_COOKIE= ${WRKDIR}/.null
|
1997-08-20 12:21:05 +02:00
|
|
|
|
|
|
|
# Miscellaneous overridable commands:
|
1999-11-29 20:48:15 +01:00
|
|
|
SHCOMMENT?= ${ECHO_MSG} >/dev/null '***'
|
2001-03-06 15:50:45 +01:00
|
|
|
|
2004-11-12 21:25:41 +01:00
|
|
|
LIBABISUFFIX?=
|
|
|
|
|
Implement some parts of proposals posted to tech-pkg:
- Define OS_VERSION in bsd.prefs.mk (...if not already defined). Previously
was only set in a conditional block in bsd.pkg.mk.
- Define new values, MACHINE_PLATFORM and MACHINE_GNU_PLATFORM, which
default to ${OPSYS}-${OS_VERSION}-${MACHINE_ARCH} and
${LOWER_OPSYS}-${LOWER_VENDOR}-${LOWER_ARCH} respectively.
(Probably should nuke LOWER_ARCH and rename LOWER_VENDOR to something
like MACHINE_GNU_VENDOR.)
- Use ${MACHINE_GNU_PLATFORM} as the argument to `--host' in GNU_CONFIGURE
packages.
- Allow for ONLY_FOR_PLATFORM and NOT_FOR_PLATFORM, lists of patterns
in csh(1) glob style which are matched against MACHINE_PLATFORM above
and take the place of {ONLY,NOT}_FOR_{ARCHS,OPSYS}. (For now, until
all pkgs are converted, provide backwards compatibility.) *Both* may
be defined, in which case NOT_FOR_PLATFORM takes precedence.
- Also do some significant aesthetic cleanup, based on the idea
`define platform-specific overrides first, then define a generic case
with the ?= operator'. Lots more of this to do yet.
1999-05-24 20:42:00 +02:00
|
|
|
TOUCH_FLAGS?= -f
|
1997-08-20 12:21:05 +02:00
|
|
|
|
|
|
|
# A few aliases for *-install targets
|
2005-07-17 06:17:09 +02:00
|
|
|
INSTALL= ${TOOLS_INSTALL} # XXX override sys.mk
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_PROGRAM?= \
|
2002-05-29 16:52:14 +02:00
|
|
|
${INSTALL} ${COPY} ${_STRIPFLAG_INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_GAME?= \
|
|
|
|
${INSTALL} ${COPY} ${_STRIPFLAG_INSTALL} -o ${GAMEOWN} -g ${GAMEGRP} -m ${GAMEMODE}
|
|
|
|
INSTALL_SCRIPT?= \
|
1997-08-20 12:21:05 +02:00
|
|
|
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_LIB?= \
|
2004-04-28 00:35:47 +02:00
|
|
|
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_DATA?= \
|
1997-08-20 12:21:05 +02:00
|
|
|
${INSTALL} ${COPY} -o ${SHAREOWN} -g ${SHAREGRP} -m ${SHAREMODE}
|
2004-08-04 04:56:01 +02:00
|
|
|
INSTALL_GAME_DATA?= \
|
|
|
|
${INSTALL} ${COPY} -o ${GAMEOWN} -g ${GAMEGRP} -m ${GAMEDATAMODE}
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_MAN?= \
|
1997-08-20 12:21:05 +02:00
|
|
|
${INSTALL} ${COPY} -o ${MANOWN} -g ${MANGRP} -m ${MANMODE}
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_PROGRAM_DIR?= \
|
2003-07-12 12:21:33 +02:00
|
|
|
${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m ${PKGDIRMODE}
|
2006-04-12 23:01:15 +02:00
|
|
|
INSTALL_GAME_DIR?= \
|
|
|
|
${INSTALL} -d -o ${GAMEOWN} -g ${GAMEGRP} -m ${GAMEDIRMODE}
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_SCRIPT_DIR?= \
|
1998-03-07 22:19:00 +01:00
|
|
|
${INSTALL_PROGRAM_DIR}
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_LIB_DIR?= \
|
2004-04-28 00:35:47 +02:00
|
|
|
${INSTALL_PROGRAM_DIR}
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_DATA_DIR?= \
|
2003-07-12 12:21:33 +02:00
|
|
|
${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m ${PKGDIRMODE}
|
2004-05-12 03:03:58 +02:00
|
|
|
INSTALL_MAN_DIR?= \
|
2003-07-12 12:21:33 +02:00
|
|
|
${INSTALL} -d -o ${MANOWN} -g ${MANGRP} -m ${PKGDIRMODE}
|
1997-08-20 12:21:05 +02:00
|
|
|
|
2005-05-22 17:31:03 +02:00
|
|
|
INSTALL_MACROS= BSD_INSTALL_PROGRAM=${INSTALL_PROGRAM:Q} \
|
|
|
|
BSD_INSTALL_SCRIPT=${INSTALL_SCRIPT:Q} \
|
|
|
|
BSD_INSTALL_LIB=${INSTALL_LIB:Q} \
|
|
|
|
BSD_INSTALL_DATA=${INSTALL_DATA:Q} \
|
|
|
|
BSD_INSTALL_MAN=${INSTALL_MAN:Q} \
|
|
|
|
BSD_INSTALL=${INSTALL:Q} \
|
|
|
|
BSD_INSTALL_PROGRAM_DIR=${INSTALL_PROGRAM_DIR:Q} \
|
|
|
|
BSD_INSTALL_SCRIPT_DIR=${INSTALL_SCRIPT_DIR:Q} \
|
|
|
|
BSD_INSTALL_LIB_DIR=${INSTALL_LIB_DIR:Q} \
|
|
|
|
BSD_INSTALL_DATA_DIR=${INSTALL_DATA_DIR:Q} \
|
|
|
|
BSD_INSTALL_MAN_DIR=${INSTALL_MAN_DIR:Q} \
|
|
|
|
BSD_INSTALL_GAME=${INSTALL_GAME:Q} \
|
2006-04-12 23:01:15 +02:00
|
|
|
BSD_INSTALL_GAME_DATA=${INSTALL_GAME_DATA:Q} \
|
|
|
|
BSD_INSTALL_GAME_DIR=${INSTALL_GAME_DIR:Q}
|
2007-01-11 13:11:03 +01:00
|
|
|
MAKE_ENV+= ${INSTALL_MACROS:M*}
|
|
|
|
SCRIPTS_ENV+= ${INSTALL_MACROS:M*}
|
1997-08-20 12:21:05 +02:00
|
|
|
|
2006-03-15 17:20:11 +01:00
|
|
|
# If pkgsrc is supposed to ensure that tests are run before installation
|
|
|
|
# of the package, then the build targets should be "build test", otherwise
|
|
|
|
# just "build" suffices.
|
|
|
|
#
|
|
|
|
.if !empty(PKGSRC_RUN_TEST:M[yY][eE][sS])
|
|
|
|
_PKGSRC_BUILD_TARGETS= build test
|
|
|
|
.else
|
|
|
|
_PKGSRC_BUILD_TARGETS= build
|
|
|
|
.endif
|
|
|
|
|
2006-07-05 08:09:15 +02:00
|
|
|
# OVERRIDE_DIRDEPTH represents the common directory depth under
|
|
|
|
# ${WRKSRC} up to which we find the files that need to be
|
|
|
|
# overridden. By default, we search two levels down, i.e.,
|
|
|
|
# */*/file.
|
|
|
|
#
|
|
|
|
OVERRIDE_DIRDEPTH?= 2
|
|
|
|
|
1997-08-20 12:21:05 +02:00
|
|
|
# The user can override the NO_PACKAGE by specifying this from
|
|
|
|
# the make command line
|
|
|
|
.if defined(FORCE_PACKAGE)
|
2001-07-19 00:43:32 +02:00
|
|
|
. undef NO_PACKAGE
|
1997-08-20 12:21:05 +02:00
|
|
|
.endif
|
|
|
|
|
2005-01-25 14:13:35 +01:00
|
|
|
# Handle alternatives
|
|
|
|
#
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "alternatives.mk"
|
2005-01-25 14:13:35 +01:00
|
|
|
|
2000-03-13 15:24:27 +01:00
|
|
|
# Define SMART_MESSAGES in /etc/mk.conf for messages giving the tree
|
2001-01-31 00:18:36 +01:00
|
|
|
# of dependencies for building, and the current target.
|
2005-11-18 15:40:21 +01:00
|
|
|
_PKGSRC_IN?= ===${SMART_MESSAGES:D> ${.TARGET} [${PKGNAME}${_PKGSRC_DEPS}] ===}
|
2000-03-13 15:19:15 +01:00
|
|
|
|
1997-08-20 12:21:05 +02:00
|
|
|
# Used to print all the '===>' style prompts - override this to turn them off.
|
|
|
|
ECHO_MSG?= ${ECHO}
|
2006-03-12 15:55:18 +01:00
|
|
|
PHASE_MSG?= ${ECHO_MSG} ${_PKGSRC_IN:Q}\>
|
|
|
|
STEP_MSG?= ${ECHO_MSG} "=>"
|
2007-01-11 13:11:03 +01:00
|
|
|
INFO_MSG?= ${ECHO_MSG} "INFO:"
|
2006-03-12 15:55:18 +01:00
|
|
|
WARNING_MSG?= ${ECHO_MSG} 1>&2 "WARNING:"
|
|
|
|
ERROR_MSG?= ${ECHO_MSG} 1>&2 "ERROR:"
|
2007-01-06 20:53:01 +01:00
|
|
|
FAIL_MSG?= ${FAIL} ${ERROR_MSG}
|
1997-08-20 12:21:05 +02:00
|
|
|
|
2006-06-07 19:00:03 +02:00
|
|
|
WARNING_CAT?= ${SED} -e "s|^|WARNING: |" 1>&2
|
|
|
|
ERROR_CAT?= ${SED} -e "s|^|ERROR: |" 1>&2
|
|
|
|
|
1998-02-02 09:10:41 +01:00
|
|
|
# How to do nothing. Override if you, for some strange reason, would rather
|
|
|
|
# do something.
|
|
|
|
DO_NADA?= ${TRUE}
|
|
|
|
|
2007-01-06 20:53:01 +01:00
|
|
|
# the FAIL command executes its arguments and then exits with a non-zero
|
|
|
|
# status.
|
|
|
|
FAIL?= ${SH} ${PKGSRCDIR}/mk/scripts/fail
|
|
|
|
|
2001-11-28 20:55:31 +01:00
|
|
|
#
|
2005-05-08 00:16:38 +02:00
|
|
|
# Config file related settings - see doc/pkgsrc.txt
|
2002-02-07 21:34:21 +01:00
|
|
|
#
|
|
|
|
PKG_SYSCONFVAR?= ${PKGBASE}
|
2001-11-28 20:55:31 +01:00
|
|
|
PKG_SYSCONFSUBDIR?= # empty
|
2004-03-29 08:49:04 +02:00
|
|
|
.if ${PKG_INSTALLATION_TYPE} == "overwrite"
|
2003-09-02 08:59:37 +02:00
|
|
|
PKG_SYSCONFDEPOTBASE= # empty
|
2003-09-05 13:34:25 +02:00
|
|
|
PKG_SYSCONFBASEDIR= ${PKG_SYSCONFBASE}
|
2004-03-29 08:49:04 +02:00
|
|
|
.else
|
|
|
|
. if !empty(PKG_SYSCONFBASE:M${PREFIX}) || \
|
|
|
|
!empty(PKG_SYSCONFBASE:M${PREFIX}/*)
|
2003-09-02 08:59:37 +02:00
|
|
|
PKG_SYSCONFDEPOTBASE= # empty
|
2003-09-05 13:34:25 +02:00
|
|
|
PKG_SYSCONFBASEDIR= ${PKG_SYSCONFBASE}
|
2001-11-28 20:55:31 +01:00
|
|
|
. else
|
2004-03-29 08:49:04 +02:00
|
|
|
PKG_SYSCONFDEPOTBASE= ${PKG_SYSCONFBASE}/${DEPOT_SUBDIR}
|
|
|
|
PKG_SYSCONFBASEDIR= ${PKG_SYSCONFDEPOTBASE}/${PKGNAME}
|
2001-11-28 20:55:31 +01:00
|
|
|
. endif
|
|
|
|
.endif
|
2004-03-29 08:49:04 +02:00
|
|
|
.if empty(PKG_SYSCONFSUBDIR)
|
|
|
|
DFLT_PKG_SYSCONFDIR:= ${PKG_SYSCONFBASEDIR}
|
|
|
|
.else
|
|
|
|
DFLT_PKG_SYSCONFDIR:= ${PKG_SYSCONFBASEDIR}/${PKG_SYSCONFSUBDIR}
|
|
|
|
.endif
|
|
|
|
PKG_SYSCONFDIR= ${DFLT_PKG_SYSCONFDIR}
|
|
|
|
.if defined(PKG_SYSCONFDIR.${PKG_SYSCONFVAR})
|
|
|
|
PKG_SYSCONFDIR= ${PKG_SYSCONFDIR.${PKG_SYSCONFVAR}}
|
|
|
|
PKG_SYSCONFBASEDIR= ${PKG_SYSCONFDIR.${PKG_SYSCONFVAR}}
|
|
|
|
PKG_SYSCONFDEPOTBASE= # empty
|
|
|
|
.endif
|
2006-11-05 16:15:24 +01:00
|
|
|
PKG_SYSCONFDIR_PERMS?= ${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 755
|
2001-11-28 20:55:31 +01:00
|
|
|
|
2005-02-11 17:36:49 +01:00
|
|
|
ALL_ENV+= PKG_SYSCONFDIR=${PKG_SYSCONFDIR:Q}
|
2006-07-16 01:58:52 +02:00
|
|
|
_BUILD_DEFS+= PKG_SYSCONFBASEDIR PKG_SYSCONFDIR
|
2001-11-28 20:55:31 +01:00
|
|
|
|
2005-04-30 06:35:54 +02:00
|
|
|
# These are all of the tools use by pkgsrc Makefiles. This should
|
|
|
|
# eventually be split up into lists of tools required by different
|
|
|
|
# phases of a pkgsrc build.
|
|
|
|
#
|
2005-07-15 20:27:48 +02:00
|
|
|
USE_TOOLS+= \
|
2005-05-16 06:48:05 +02:00
|
|
|
[ awk basename cat chgrp chmod chown cmp cp cut dirname echo \
|
|
|
|
egrep env false file find grep head hostname id install ln ls \
|
2008-05-25 23:42:20 +02:00
|
|
|
mkdir mv printf pwd rm rmdir sed sh sort \
|
2006-10-10 18:57:58 +02:00
|
|
|
tail test touch tr true wc xargs
|
2005-05-16 06:30:41 +02:00
|
|
|
|
2005-05-16 17:20:15 +02:00
|
|
|
# bsd.wrapper.mk
|
2005-07-15 20:27:48 +02:00
|
|
|
USE_TOOLS+= expr
|
2005-05-16 17:20:15 +02:00
|
|
|
|
2005-05-16 06:54:11 +02:00
|
|
|
# bsd.bulk-pkg.mk uses certain tools
|
2005-05-16 06:30:41 +02:00
|
|
|
.if defined(BATCH)
|
2005-07-15 20:27:48 +02:00
|
|
|
USE_TOOLS+= tee tsort
|
2005-05-16 06:30:41 +02:00
|
|
|
.endif
|
2005-05-16 02:11:50 +02:00
|
|
|
|
2007-07-23 17:23:46 +02:00
|
|
|
# INSTALL/DEINSTALL script framework
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "pkginstall/bsd.pkginstall.mk"
|
2007-07-23 17:23:46 +02:00
|
|
|
|
2006-08-04 22:52:27 +02:00
|
|
|
# Locking
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "internal/locking.mk"
|
2005-05-16 02:00:35 +02:00
|
|
|
|
2005-05-22 22:15:40 +02:00
|
|
|
# Tools
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "tools/bsd.tools.mk"
|
2004-04-27 21:23:34 +02:00
|
|
|
|
2006-07-06 18:58:17 +02:00
|
|
|
# Barrier
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "bsd.pkg.barrier.mk"
|
2006-07-06 18:58:17 +02:00
|
|
|
|
2005-05-29 19:12:15 +02:00
|
|
|
# Unprivileged builds
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "unprivileged.mk"
|
2005-05-29 19:12:15 +02:00
|
|
|
|
2005-05-14 08:04:44 +02:00
|
|
|
# If NO_BUILD is defined, default to not needing a compiler.
|
|
|
|
.if defined(NO_BUILD)
|
|
|
|
USE_LANGUAGES?= # empty
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# Get the proper dependencies and set the PATH to use the compiler
|
|
|
|
# named in PKGSRC_COMPILER.
|
|
|
|
#
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "compiler.mk"
|
2005-05-14 08:04:44 +02:00
|
|
|
|
2008-02-10 12:43:20 +01:00
|
|
|
#Fake up a home directory
|
|
|
|
WRAPPER_TARGETS+= fake-home
|
|
|
|
FAKEHOMEDIR= ${WRKDIR}/.home
|
|
|
|
ALL_ENV+= HOME=${FAKEHOMEDIR}
|
|
|
|
.PHONY: fake-home
|
|
|
|
fake-home: ${FAKEHOMEDIR}
|
|
|
|
${FAKEHOMEDIR}:
|
|
|
|
${RUN} ${MKDIR} ${.TARGET}
|
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "wrapper/bsd.wrapper.mk"
|
2002-08-22 10:21:26 +02:00
|
|
|
|
2006-05-06 05:28:44 +02:00
|
|
|
.if defined(ABI_DEPENDS) || defined(BUILD_ABI_DEPENDS)
|
2006-04-06 08:21:32 +02:00
|
|
|
. if !empty(USE_ABI_DEPENDS:M[yY][eE][sS])
|
|
|
|
DEPENDS+= ${ABI_DEPENDS}
|
2006-05-06 05:28:44 +02:00
|
|
|
BUILD_DEPENDS+= ${BUILD_ABI_DEPENDS}
|
2004-08-24 02:27:13 +02:00
|
|
|
. else
|
2006-07-16 01:58:52 +02:00
|
|
|
_BUILD_DEFS+= USE_ABI_DEPENDS
|
2004-08-24 02:27:13 +02:00
|
|
|
. endif
|
|
|
|
.endif
|
|
|
|
|
2005-01-24 20:32:33 +01:00
|
|
|
# Find out the PREFIX of dependencies where the PREFIX is needed at build time.
|
|
|
|
.if defined(EVAL_PREFIX)
|
2005-05-12 22:41:10 +02:00
|
|
|
FIND_PREFIX:= ${EVAL_PREFIX}
|
2007-10-13 13:04:15 +02:00
|
|
|
. include "find-prefix.mk"
|
2005-01-24 20:32:33 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(_PATH_ORIG)
|
|
|
|
_PATH_ORIG:= ${PATH}
|
|
|
|
MAKEFLAGS+= _PATH_ORIG=${_PATH_ORIG:Q}
|
2005-01-27 12:21:46 +01:00
|
|
|
.endif
|
2005-01-24 20:32:33 +01:00
|
|
|
|
2005-11-15 22:21:01 +01:00
|
|
|
.if !empty(PREPEND_PATH:M*)
|
2005-01-24 20:32:33 +01:00
|
|
|
# This is very Special. Because PREPEND_PATH is set with += in reverse order,
|
2005-11-15 22:21:01 +01:00
|
|
|
# this command reverses the order again (since bootstrap bmake doesn't
|
2005-01-24 20:32:33 +01:00
|
|
|
# yet support the :[-1..1] construct).
|
2005-11-15 22:21:01 +01:00
|
|
|
_PATH_CMD= \
|
|
|
|
path=${_PATH_ORIG:Q}; \
|
|
|
|
for i in ${PREPEND_PATH}; do path="$$i:$$path"; done; \
|
|
|
|
${ECHO} "$$path"
|
|
|
|
PATH= ${_PATH_CMD:sh} # DOES NOT use :=, to defer evaluation
|
2005-01-24 20:32:33 +01:00
|
|
|
.endif
|
2004-02-18 14:32:38 +01:00
|
|
|
|
1997-08-20 12:21:05 +02:00
|
|
|
################################################################
|
1999-08-10 12:48:23 +02:00
|
|
|
# Many ways to disable a package.
|
1997-08-20 12:21:05 +02:00
|
|
|
#
|
2000-09-07 04:29:40 +02:00
|
|
|
# Ignore packages that can't be resold if building for a CDROM.
|
2000-09-06 22:28:32 +02:00
|
|
|
#
|
2000-09-07 17:26:52 +02:00
|
|
|
# Don't build a package if it's restricted and we don't want to
|
|
|
|
# get into that.
|
|
|
|
#
|
2000-09-09 20:45:16 +02:00
|
|
|
# Don't build any package that utilizes strong cryptography, for
|
|
|
|
# when the law of the land forbids it.
|
|
|
|
#
|
2000-09-07 17:26:52 +02:00
|
|
|
# Don't attempt to build packages against X if we don't have X.
|
1997-08-20 12:21:05 +02:00
|
|
|
#
|
1999-08-10 12:48:23 +02:00
|
|
|
# Don't build a package if it's broken.
|
1997-08-20 12:21:05 +02:00
|
|
|
################################################################
|
2007-08-18 02:30:21 +02:00
|
|
|
.if ${X11_TYPE} == "xorg"
|
|
|
|
PKG_FAIL_REASON+= "Support for X11_TYPE=xorg was removed."
|
|
|
|
PKG_FAIL_REASON+= "Please switch to X11_TYPE=modular."
|
|
|
|
X11_TYPE:= native
|
|
|
|
X11BASE:= /usr
|
|
|
|
.endif
|
1997-08-20 12:21:05 +02:00
|
|
|
|
2002-12-27 07:53:42 +01:00
|
|
|
.if !defined(NO_SKIP)
|
2001-07-19 00:43:32 +02:00
|
|
|
. if (defined(NO_BIN_ON_CDROM) && defined(FOR_CDROM))
|
2002-12-07 03:37:56 +01:00
|
|
|
PKG_FAIL_REASON+= "${PKGNAME} may not be placed in binary form on a CDROM:" \
|
2000-08-19 17:32:15 +02:00
|
|
|
" "${NO_BIN_ON_CDROM:Q}
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif
|
|
|
|
. if (defined(NO_SRC_ON_CDROM) && defined(FOR_CDROM))
|
2002-12-07 03:37:56 +01:00
|
|
|
PKG_FAIL_REASON+= "${PKGNAME} may not be placed in source form on a CDROM:" \
|
2000-08-19 17:32:15 +02:00
|
|
|
" "${NO_SRC_ON_CDROM:Q}
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif
|
|
|
|
. if (defined(RESTRICTED) && defined(NO_RESTRICTED))
|
2002-12-07 03:37:56 +01:00
|
|
|
PKG_FAIL_REASON+= "${PKGNAME} is restricted:" \
|
2000-08-19 17:32:15 +02:00
|
|
|
" "${RESTRICTED:Q}
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif
|
|
|
|
. if !(${MKCRYPTO} == "YES" || ${MKCRYPTO} == yes)
|
2002-07-02 17:25:49 +02:00
|
|
|
. if defined(CRYPTO)
|
2002-12-07 03:37:56 +01:00
|
|
|
PKG_FAIL_REASON+= "${PKGNAME} may not be built, because it utilizes strong cryptography"
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif
|
2000-09-09 20:45:16 +02:00
|
|
|
. endif
|
2006-12-15 13:46:23 +01:00
|
|
|
. if defined(USE_X11) && (${X11_TYPE} == "native") && !exists(${X11BASE})
|
2002-12-07 03:37:56 +01:00
|
|
|
PKG_FAIL_REASON+= "${PKGNAME} uses X11, but ${X11BASE} not found"
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif
|
|
|
|
. if defined(BROKEN)
|
2002-12-07 03:37:56 +01:00
|
|
|
PKG_FAIL_REASON+= "${PKGNAME} is marked as broken:" ${BROKEN:Q}
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif
|
2000-08-19 17:32:15 +02:00
|
|
|
|
2001-07-19 00:43:32 +02:00
|
|
|
. if defined(LICENSE)
|
2005-11-18 18:07:13 +01:00
|
|
|
. if defined(ACCEPTABLE_LICENSES) && !empty(ACCEPTABLE_LICENSES:M${LICENSE})
|
1998-07-06 17:10:48 +02:00
|
|
|
_ACCEPTABLE= yes
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif # ACCEPTABLE_LICENSES
|
2005-05-14 04:03:00 +02:00
|
|
|
. if !defined(_ACCEPTABLE)
|
2007-08-10 15:09:52 +02:00
|
|
|
. if defined(MAKECONF)
|
|
|
|
_MAKECONF?= ${MAKECONF}
|
|
|
|
. elif ${OPSYS} == "NetBSD" && ${MAKE} != "${PREFIX}/bin/bmake"
|
|
|
|
_MAKECONF?= /etc/mk.conf
|
|
|
|
. else
|
|
|
|
_MAKECONF?= ${PREFIX}/etc/mk.conf
|
|
|
|
. endif
|
|
|
|
|
2002-12-07 03:37:56 +01:00
|
|
|
PKG_FAIL_REASON+= "${PKGNAME} has an unacceptable license: ${LICENSE}." \
|
2004-10-01 02:23:18 +02:00
|
|
|
" To view the license, enter \"${MAKE} show-license\"." \
|
2007-08-10 15:09:52 +02:00
|
|
|
" To indicate acceptance, add this line to ${_MAKECONF}:" \
|
2004-10-01 02:23:18 +02:00
|
|
|
" ACCEPTABLE_LICENSES+=${LICENSE}"
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif # _ACCEPTABLE
|
|
|
|
. endif # LICENSE
|
2000-08-19 17:32:15 +02:00
|
|
|
|
2000-05-31 00:36:53 +02:00
|
|
|
# Define __PLATFORM_OK only if the OS matches the pkg's allowed list.
|
2001-07-19 00:43:32 +02:00
|
|
|
. if defined(ONLY_FOR_PLATFORM) && !empty(ONLY_FOR_PLATFORM)
|
|
|
|
. for __tmp__ in ${ONLY_FOR_PLATFORM}
|
|
|
|
. if ${MACHINE_PLATFORM:M${__tmp__}} != ""
|
2000-05-31 00:36:53 +02:00
|
|
|
__PLATFORM_OK?= yes
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif # MACHINE_PLATFORM
|
|
|
|
. endfor # __tmp__
|
|
|
|
. else # !ONLY_FOR_PLATFORM
|
|
|
|
__PLATFORM_OK?= yes
|
|
|
|
. endif # ONLY_FOR_PLATFORM
|
|
|
|
. for __tmp__ in ${NOT_FOR_PLATFORM}
|
|
|
|
. if ${MACHINE_PLATFORM:M${__tmp__}} != ""
|
|
|
|
. undef __PLATFORM_OK
|
2000-08-19 17:32:15 +02:00
|
|
|
. endif # MACHINE_PLATFORM
|
|
|
|
. endfor # __tmp__
|
2001-07-19 00:43:32 +02:00
|
|
|
. if !defined(__PLATFORM_OK)
|
2006-11-19 10:32:29 +01:00
|
|
|
PKG_FAIL_REASON+= "${PKGNAME} is not available for ${MACHINE_PLATFORM}"
|
2001-07-19 00:43:32 +02:00
|
|
|
. endif # !__PLATFORM_OK
|
2005-12-01 01:17:05 +01:00
|
|
|
.endif
|
|
|
|
|
1998-10-20 18:01:03 +02:00
|
|
|
# Add these defs to the ones dumped into +BUILD_DEFS
|
2006-07-16 01:58:52 +02:00
|
|
|
_BUILD_DEFS+= PKGPATH
|
|
|
|
_BUILD_DEFS+= OPSYS OS_VERSION MACHINE_ARCH MACHINE_GNU_ARCH
|
2007-02-20 11:32:09 +01:00
|
|
|
_BUILD_DEFS+= ABI
|
2006-07-16 01:58:52 +02:00
|
|
|
_BUILD_DEFS+= CPPFLAGS CFLAGS FFLAGS LDFLAGS
|
|
|
|
_BUILD_DEFS+= OBJECT_FMT LICENSE RESTRICTED
|
|
|
|
_BUILD_DEFS+= NO_SRC_ON_FTP NO_SRC_ON_CDROM
|
|
|
|
_BUILD_DEFS+= NO_BIN_ON_FTP NO_BIN_ON_CDROM
|
1998-10-20 18:01:03 +02:00
|
|
|
|
2001-07-07 19:10:36 +02:00
|
|
|
.if defined(OSVERSION_SPECIFIC)
|
2006-07-16 01:58:52 +02:00
|
|
|
_BUILD_DEFS+= OSVERSION_SPECIFIC
|
2001-07-07 19:10:36 +02:00
|
|
|
.endif # OSVERSION_SPECIFIC
|
|
|
|
|
2003-07-24 00:02:48 +02:00
|
|
|
.PHONY: all
|
1997-08-20 12:21:05 +02:00
|
|
|
.if !target(all)
|
2004-03-22 05:07:15 +01:00
|
|
|
all: ${_PKGSRC_BUILD_TARGETS}
|
1997-08-20 12:21:05 +02:00
|
|
|
.endif
|
|
|
|
|
2006-06-08 18:21:51 +02:00
|
|
|
.PHONY: makedirs
|
|
|
|
makedirs: ${WRKDIR}
|
|
|
|
|
2002-02-25 05:43:55 +01:00
|
|
|
${WRKDIR}:
|
|
|
|
.if !defined(KEEP_WRKDIR)
|
2007-02-22 08:20:41 +01:00
|
|
|
. if ${WRKDIR_LOCKTYPE} != "none"
|
2007-01-03 00:34:40 +01:00
|
|
|
${RUN} ${TEST} -f ${_WRKDIR_LOCKFILE} || ${RM} -fr ${WRKDIR}
|
2002-02-25 05:43:55 +01:00
|
|
|
. endif
|
|
|
|
.endif
|
2007-01-03 00:34:40 +01:00
|
|
|
${RUN} ${MKDIR} ${WRKDIR}
|
2006-06-11 04:14:45 +02:00
|
|
|
|
|
|
|
# Create a symlink from ${WRKDIR} to the package directory if
|
|
|
|
# CREATE_WRKDIR_SYMLINK is "yes".
|
|
|
|
#
|
2007-07-16 22:51:07 +02:00
|
|
|
CREATE_WRKDIR_SYMLINK?= no
|
2006-06-11 04:14:45 +02:00
|
|
|
|
|
|
|
.if defined(WRKOBJDIR) && !empty(CREATE_WRKDIR_SYMLINK:M[Yy][Ee][Ss])
|
|
|
|
makedirs: ${.CURDIR}/${WRKDIR_BASENAME}
|
2007-01-03 00:34:40 +01:00
|
|
|
${.CURDIR}/${WRKDIR_BASENAME}:
|
2007-02-22 08:20:41 +01:00
|
|
|
. if ${WRKDIR_LOCKTYPE} != "none"
|
2007-01-03 00:34:40 +01:00
|
|
|
${RUN} ${TEST} -f ${_WRKDIR_LOCKFILE} || ${RM} -f ${.TARGET}
|
2002-02-25 05:43:55 +01:00
|
|
|
. endif
|
2007-01-03 00:34:40 +01:00
|
|
|
${RUN} \
|
2006-06-11 04:14:45 +02:00
|
|
|
if ${LN} -s ${WRKDIR} ${.TARGET} 2>/dev/null; then \
|
2006-08-04 08:27:27 +02:00
|
|
|
${ECHO_MSG} "${.TARGET:T} -> ${WRKDIR}"; \
|
2002-02-25 05:43:55 +01:00
|
|
|
fi
|
2006-06-11 04:14:45 +02:00
|
|
|
.endif
|
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "flavor/bsd.flavor.mk"
|
1997-08-20 12:21:05 +02:00
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "depends/bsd.depends.mk"
|
|
|
|
.include "check/bsd.check.mk"
|
|
|
|
.include "fetch/bsd.fetch.mk"
|
|
|
|
.include "checksum/bsd.checksum.mk"
|
|
|
|
.include "extract/bsd.extract.mk"
|
|
|
|
.include "patch/bsd.patch.mk"
|
|
|
|
.include "configure/bsd.configure.mk"
|
|
|
|
.include "build/bsd.build.mk"
|
|
|
|
.include "install/bsd.install.mk"
|
|
|
|
.include "package/bsd.package.mk"
|
1997-08-20 12:21:05 +02:00
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "bsd.pkg.clean.mk"
|
|
|
|
.include "bsd.pkg.update.mk"
|
1997-08-20 12:21:05 +02:00
|
|
|
|
First pass at implementing support for package system flavors other
than pkgsrc's current one. This is an important lead-up to any project
that redesigns the pkg_* tools in that it doesn't tie us to past design
(mis)choices. This commit mostly deals with rearranging code, although
there was a considerable amount of rewriting done in cases where I
thought the code was somewhat messy and was difficult to understand.
The design I chose for supporting multiple package system flavors is
that the various depends, install, package, etc. modules would define
default targets and variables that may be overridden in files from
pkgsrc/mk/flavor/${PKG_FLAVOR}. The default targets would do the
sensible thing of doing nothing, and pkgsrc infrastructure would rely
on the appropriate things to be defined in pkgsrc/mk/flavor to do the
real work. The pkgsrc/mk/flavor directory contains subdirectories
corresponding to each package system flavor that we support. Currently,
I only have "pkg" which represents the current pkgsrc-native package
flavor. I've separated out most of the code where we make assumptions
about the package system flavor, mostly either because we directly
use the pkg_* tools, or we make assumptions about the package meta-data
directory, or we directly manipulate the package meta-data files, and
placed it into pkgsrc/mk/flavor/pkg.
There are several new modules that have been refactored out of bsd.pkg.mk
as part of these changes: check, depends, install, package, and update.
Each of these modules has been slimmed down by rewriting them to avoid
some recursive make calls. I've also religiously documented which
targets are "public" and which are "private" so that users won't rely
on reaching into pkgsrc innards to call a private target.
The "depends" module is a complete overhaul of the way that we handle
dependencies. There is now a separate "depends" phase that occurs
before the "extract" phase where dependencies are installed. This
differs from the old way where dependencies were installed just before
extraction occurred. The reduce-depends.mk file is now replaced by
a script that is invoked only once during the depends phase and is
used to generate a cookie file that holds the full set of reduced
dependencies. It is now possible to type "make depends" in a package
directory and all missing dependencies will be installed.
Future work on this project include:
* Resolve the workflow design in anticipation of future work on
staged installations where "package" conceptually happens before
"install".
* Rewrite the buildlink3 framework to not assume the use of the
pkgsrc pkg_* tools.
* Rewrite the pkginstall framework to provide a standard pkg_*
tool to perform the actions, and allowing a purely declarative
file per package to describe what actions need to be taken at
install or deinstall time.
* Implement support for the SVR4 package flavor. This will be
proof that the appropriate abstractions are in place to allow
using a completely different set of package management tools.
2006-06-04 01:11:42 +02:00
|
|
|
# su-target is a macro target that does just-in-time su-to-root before
|
2006-06-04 02:39:05 +02:00
|
|
|
# reinvoking the make process as root. It acquires root privileges and
|
|
|
|
# invokes a new make process with the target named "su-${.TARGET}".
|
First pass at implementing support for package system flavors other
than pkgsrc's current one. This is an important lead-up to any project
that redesigns the pkg_* tools in that it doesn't tie us to past design
(mis)choices. This commit mostly deals with rearranging code, although
there was a considerable amount of rewriting done in cases where I
thought the code was somewhat messy and was difficult to understand.
The design I chose for supporting multiple package system flavors is
that the various depends, install, package, etc. modules would define
default targets and variables that may be overridden in files from
pkgsrc/mk/flavor/${PKG_FLAVOR}. The default targets would do the
sensible thing of doing nothing, and pkgsrc infrastructure would rely
on the appropriate things to be defined in pkgsrc/mk/flavor to do the
real work. The pkgsrc/mk/flavor directory contains subdirectories
corresponding to each package system flavor that we support. Currently,
I only have "pkg" which represents the current pkgsrc-native package
flavor. I've separated out most of the code where we make assumptions
about the package system flavor, mostly either because we directly
use the pkg_* tools, or we make assumptions about the package meta-data
directory, or we directly manipulate the package meta-data files, and
placed it into pkgsrc/mk/flavor/pkg.
There are several new modules that have been refactored out of bsd.pkg.mk
as part of these changes: check, depends, install, package, and update.
Each of these modules has been slimmed down by rewriting them to avoid
some recursive make calls. I've also religiously documented which
targets are "public" and which are "private" so that users won't rely
on reaching into pkgsrc innards to call a private target.
The "depends" module is a complete overhaul of the way that we handle
dependencies. There is now a separate "depends" phase that occurs
before the "extract" phase where dependencies are installed. This
differs from the old way where dependencies were installed just before
extraction occurred. The reduce-depends.mk file is now replaced by
a script that is invoked only once during the depends phase and is
used to generate a cookie file that holds the full set of reduced
dependencies. It is now possible to type "make depends" in a package
directory and all missing dependencies will be installed.
Future work on this project include:
* Resolve the workflow design in anticipation of future work on
staged installations where "package" conceptually happens before
"install".
* Rewrite the buildlink3 framework to not assume the use of the
pkgsrc pkg_* tools.
* Rewrite the pkginstall framework to provide a standard pkg_*
tool to perform the actions, and allowing a purely declarative
file per package to describe what actions need to be taken at
install or deinstall time.
* Implement support for the SVR4 package flavor. This will be
proof that the appropriate abstractions are in place to allow
using a completely different set of package management tools.
2006-06-04 01:11:42 +02:00
|
|
|
#
|
2007-09-27 13:19:52 +02:00
|
|
|
# MAKEFLAGS.su-${.TARGET}
|
|
|
|
# The additional flags that are passed to the make process.
|
2007-10-09 21:19:08 +02:00
|
|
|
#
|
2007-01-02 22:04:52 +01:00
|
|
|
|
2007-09-27 13:19:52 +02:00
|
|
|
# XXX: Shouldn't the $${PATH} be ${PATH} here? This may be related to
|
|
|
|
# PR 34470.
|
2006-06-12 18:30:03 +02:00
|
|
|
_ROOT_CMD= cd ${.CURDIR} && \
|
2006-07-26 21:29:14 +02:00
|
|
|
${SETENV} ${PKGSRC_MAKE_ENV} \
|
|
|
|
PATH="$${PATH}:"${SU_CMD_PATH_APPEND:Q} \
|
2008-05-21 21:53:59 +02:00
|
|
|
${MAKE} ${MAKEFLAGS} _PKGSRC_BARRIER=yes \
|
2006-06-12 18:30:03 +02:00
|
|
|
PKG_DEBUG_LEVEL=${PKG_DEBUG_LEVEL:Q} \
|
2007-02-09 02:57:17 +01:00
|
|
|
su-${.TARGET} ${MAKEFLAGS.su-${.TARGET}}
|
2006-06-12 18:30:03 +02:00
|
|
|
|
First pass at implementing support for package system flavors other
than pkgsrc's current one. This is an important lead-up to any project
that redesigns the pkg_* tools in that it doesn't tie us to past design
(mis)choices. This commit mostly deals with rearranging code, although
there was a considerable amount of rewriting done in cases where I
thought the code was somewhat messy and was difficult to understand.
The design I chose for supporting multiple package system flavors is
that the various depends, install, package, etc. modules would define
default targets and variables that may be overridden in files from
pkgsrc/mk/flavor/${PKG_FLAVOR}. The default targets would do the
sensible thing of doing nothing, and pkgsrc infrastructure would rely
on the appropriate things to be defined in pkgsrc/mk/flavor to do the
real work. The pkgsrc/mk/flavor directory contains subdirectories
corresponding to each package system flavor that we support. Currently,
I only have "pkg" which represents the current pkgsrc-native package
flavor. I've separated out most of the code where we make assumptions
about the package system flavor, mostly either because we directly
use the pkg_* tools, or we make assumptions about the package meta-data
directory, or we directly manipulate the package meta-data files, and
placed it into pkgsrc/mk/flavor/pkg.
There are several new modules that have been refactored out of bsd.pkg.mk
as part of these changes: check, depends, install, package, and update.
Each of these modules has been slimmed down by rewriting them to avoid
some recursive make calls. I've also religiously documented which
targets are "public" and which are "private" so that users won't rely
on reaching into pkgsrc innards to call a private target.
The "depends" module is a complete overhaul of the way that we handle
dependencies. There is now a separate "depends" phase that occurs
before the "extract" phase where dependencies are installed. This
differs from the old way where dependencies were installed just before
extraction occurred. The reduce-depends.mk file is now replaced by
a script that is invoked only once during the depends phase and is
used to generate a cookie file that holds the full set of reduced
dependencies. It is now possible to type "make depends" in a package
directory and all missing dependencies will be installed.
Future work on this project include:
* Resolve the workflow design in anticipation of future work on
staged installations where "package" conceptually happens before
"install".
* Rewrite the buildlink3 framework to not assume the use of the
pkgsrc pkg_* tools.
* Rewrite the pkginstall framework to provide a standard pkg_*
tool to perform the actions, and allowing a purely declarative
file per package to describe what actions need to be taken at
install or deinstall time.
* Implement support for the SVR4 package flavor. This will be
proof that the appropriate abstractions are in place to allow
using a completely different set of package management tools.
2006-06-04 01:11:42 +02:00
|
|
|
.PHONY: su-target
|
|
|
|
su-target: .USE
|
2007-01-03 00:34:40 +01:00
|
|
|
${RUN} \
|
2006-06-04 02:39:05 +02:00
|
|
|
case ${PRE_CMD.su-${.TARGET}:Q}"" in \
|
|
|
|
"") ;; \
|
|
|
|
*) ${PRE_CMD.su-${.TARGET}} ;; \
|
|
|
|
esac; \
|
2006-10-09 12:30:27 +02:00
|
|
|
if ${TEST} `${ID} -u` = `${ID} -u ${_SU_ROOT_USER}`; then \
|
2006-06-12 18:30:03 +02:00
|
|
|
${_ROOT_CMD}; \
|
First pass at implementing support for package system flavors other
than pkgsrc's current one. This is an important lead-up to any project
that redesigns the pkg_* tools in that it doesn't tie us to past design
(mis)choices. This commit mostly deals with rearranging code, although
there was a considerable amount of rewriting done in cases where I
thought the code was somewhat messy and was difficult to understand.
The design I chose for supporting multiple package system flavors is
that the various depends, install, package, etc. modules would define
default targets and variables that may be overridden in files from
pkgsrc/mk/flavor/${PKG_FLAVOR}. The default targets would do the
sensible thing of doing nothing, and pkgsrc infrastructure would rely
on the appropriate things to be defined in pkgsrc/mk/flavor to do the
real work. The pkgsrc/mk/flavor directory contains subdirectories
corresponding to each package system flavor that we support. Currently,
I only have "pkg" which represents the current pkgsrc-native package
flavor. I've separated out most of the code where we make assumptions
about the package system flavor, mostly either because we directly
use the pkg_* tools, or we make assumptions about the package meta-data
directory, or we directly manipulate the package meta-data files, and
placed it into pkgsrc/mk/flavor/pkg.
There are several new modules that have been refactored out of bsd.pkg.mk
as part of these changes: check, depends, install, package, and update.
Each of these modules has been slimmed down by rewriting them to avoid
some recursive make calls. I've also religiously documented which
targets are "public" and which are "private" so that users won't rely
on reaching into pkgsrc innards to call a private target.
The "depends" module is a complete overhaul of the way that we handle
dependencies. There is now a separate "depends" phase that occurs
before the "extract" phase where dependencies are installed. This
differs from the old way where dependencies were installed just before
extraction occurred. The reduce-depends.mk file is now replaced by
a script that is invoked only once during the depends phase and is
used to generate a cookie file that holds the full set of reduced
dependencies. It is now possible to type "make depends" in a package
directory and all missing dependencies will be installed.
Future work on this project include:
* Resolve the workflow design in anticipation of future work on
staged installations where "package" conceptually happens before
"install".
* Rewrite the buildlink3 framework to not assume the use of the
pkgsrc pkg_* tools.
* Rewrite the pkginstall framework to provide a standard pkg_*
tool to perform the actions, and allowing a purely declarative
file per package to describe what actions need to be taken at
install or deinstall time.
* Implement support for the SVR4 package flavor. This will be
proof that the appropriate abstractions are in place to allow
using a completely different set of package management tools.
2006-06-04 01:11:42 +02:00
|
|
|
else \
|
|
|
|
case ${PRE_ROOT_CMD:Q}"" in \
|
|
|
|
${TRUE:Q}"") ;; \
|
2006-06-06 00:49:44 +02:00
|
|
|
*) ${WARNING_MSG} "Running: "${PRE_ROOT_CMD:Q} ;; \
|
First pass at implementing support for package system flavors other
than pkgsrc's current one. This is an important lead-up to any project
that redesigns the pkg_* tools in that it doesn't tie us to past design
(mis)choices. This commit mostly deals with rearranging code, although
there was a considerable amount of rewriting done in cases where I
thought the code was somewhat messy and was difficult to understand.
The design I chose for supporting multiple package system flavors is
that the various depends, install, package, etc. modules would define
default targets and variables that may be overridden in files from
pkgsrc/mk/flavor/${PKG_FLAVOR}. The default targets would do the
sensible thing of doing nothing, and pkgsrc infrastructure would rely
on the appropriate things to be defined in pkgsrc/mk/flavor to do the
real work. The pkgsrc/mk/flavor directory contains subdirectories
corresponding to each package system flavor that we support. Currently,
I only have "pkg" which represents the current pkgsrc-native package
flavor. I've separated out most of the code where we make assumptions
about the package system flavor, mostly either because we directly
use the pkg_* tools, or we make assumptions about the package meta-data
directory, or we directly manipulate the package meta-data files, and
placed it into pkgsrc/mk/flavor/pkg.
There are several new modules that have been refactored out of bsd.pkg.mk
as part of these changes: check, depends, install, package, and update.
Each of these modules has been slimmed down by rewriting them to avoid
some recursive make calls. I've also religiously documented which
targets are "public" and which are "private" so that users won't rely
on reaching into pkgsrc innards to call a private target.
The "depends" module is a complete overhaul of the way that we handle
dependencies. There is now a separate "depends" phase that occurs
before the "extract" phase where dependencies are installed. This
differs from the old way where dependencies were installed just before
extraction occurred. The reduce-depends.mk file is now replaced by
a script that is invoked only once during the depends phase and is
used to generate a cookie file that holds the full set of reduced
dependencies. It is now possible to type "make depends" in a package
directory and all missing dependencies will be installed.
Future work on this project include:
* Resolve the workflow design in anticipation of future work on
staged installations where "package" conceptually happens before
"install".
* Rewrite the buildlink3 framework to not assume the use of the
pkgsrc pkg_* tools.
* Rewrite the pkginstall framework to provide a standard pkg_*
tool to perform the actions, and allowing a purely declarative
file per package to describe what actions need to be taken at
install or deinstall time.
* Implement support for the SVR4 package flavor. This will be
proof that the appropriate abstractions are in place to allow
using a completely different set of package management tools.
2006-06-04 01:11:42 +02:00
|
|
|
esac; \
|
|
|
|
${PRE_ROOT_CMD}; \
|
2006-10-09 12:30:27 +02:00
|
|
|
${STEP_MSG} "Becoming \`\`${_SU_ROOT_USER}'' to make su-${.TARGET} (`${ECHO} ${SU_CMD} | ${AWK} '{ print $$1 }'`)"; \
|
2006-06-12 18:30:03 +02:00
|
|
|
${SU_CMD} ${_ROOT_CMD:Q}; \
|
2006-10-09 12:30:27 +02:00
|
|
|
${STEP_MSG} "Dropping \`\`${_SU_ROOT_USER}'' privileges."; \
|
First pass at implementing support for package system flavors other
than pkgsrc's current one. This is an important lead-up to any project
that redesigns the pkg_* tools in that it doesn't tie us to past design
(mis)choices. This commit mostly deals with rearranging code, although
there was a considerable amount of rewriting done in cases where I
thought the code was somewhat messy and was difficult to understand.
The design I chose for supporting multiple package system flavors is
that the various depends, install, package, etc. modules would define
default targets and variables that may be overridden in files from
pkgsrc/mk/flavor/${PKG_FLAVOR}. The default targets would do the
sensible thing of doing nothing, and pkgsrc infrastructure would rely
on the appropriate things to be defined in pkgsrc/mk/flavor to do the
real work. The pkgsrc/mk/flavor directory contains subdirectories
corresponding to each package system flavor that we support. Currently,
I only have "pkg" which represents the current pkgsrc-native package
flavor. I've separated out most of the code where we make assumptions
about the package system flavor, mostly either because we directly
use the pkg_* tools, or we make assumptions about the package meta-data
directory, or we directly manipulate the package meta-data files, and
placed it into pkgsrc/mk/flavor/pkg.
There are several new modules that have been refactored out of bsd.pkg.mk
as part of these changes: check, depends, install, package, and update.
Each of these modules has been slimmed down by rewriting them to avoid
some recursive make calls. I've also religiously documented which
targets are "public" and which are "private" so that users won't rely
on reaching into pkgsrc innards to call a private target.
The "depends" module is a complete overhaul of the way that we handle
dependencies. There is now a separate "depends" phase that occurs
before the "extract" phase where dependencies are installed. This
differs from the old way where dependencies were installed just before
extraction occurred. The reduce-depends.mk file is now replaced by
a script that is invoked only once during the depends phase and is
used to generate a cookie file that holds the full set of reduced
dependencies. It is now possible to type "make depends" in a package
directory and all missing dependencies will be installed.
Future work on this project include:
* Resolve the workflow design in anticipation of future work on
staged installations where "package" conceptually happens before
"install".
* Rewrite the buildlink3 framework to not assume the use of the
pkgsrc pkg_* tools.
* Rewrite the pkginstall framework to provide a standard pkg_*
tool to perform the actions, and allowing a purely declarative
file per package to describe what actions need to be taken at
install or deinstall time.
* Implement support for the SVR4 package flavor. This will be
proof that the appropriate abstractions are in place to allow
using a completely different set of package management tools.
2006-06-04 01:11:42 +02:00
|
|
|
fi
|
Add two new EXPERIMENTAL targets:
replace - this target updates a package in place, fixing up references
to and from other packages to the updated package.
undo-replace - undoes all the work of the previous replace operation.
For this target to work, the ${WRKDIR} must be preserved.
The replace target first makes a binary package of the existing
installed package, then a copy of the +REQUIRED_BY file is taken, if
it exists, and then the existing package is deleted. The new package
is installed, and the preserved +REQUIRED_BY file is copied back into
place, using its contents to modify the +CONTENTS files of all the
packages which require it. The undo-replace shares code with the
replace target, and does the same operation, but in reverse.
Warnings are displayed when either of these targets is used, since
they are experimental targets right now.
2002-03-04 12:56:54 +01:00
|
|
|
|
1997-08-20 12:21:05 +02:00
|
|
|
################################################################
|
|
|
|
# Some more targets supplied for users' convenience
|
|
|
|
################################################################
|
|
|
|
|
2000-12-30 12:19:04 +01:00
|
|
|
# Run pkglint:
|
2003-07-24 00:02:48 +02:00
|
|
|
.PHONY: lint
|
2000-12-30 12:19:04 +01:00
|
|
|
lint:
|
2007-01-03 00:34:40 +01:00
|
|
|
${RUN} ${LOCALBASE}/bin/pkglint
|
2001-07-10 13:51:57 +02:00
|
|
|
|
2003-09-02 08:59:37 +02:00
|
|
|
# List of flags to pass to pkg_add(1) for bin-install:
|
|
|
|
|
2001-05-20 03:58:19 +02:00
|
|
|
BIN_INSTALL_FLAGS?= # -v
|
2003-09-02 08:59:37 +02:00
|
|
|
.if ${PKG_INSTALLATION_TYPE} == "pkgviews"
|
2003-09-08 03:06:01 +02:00
|
|
|
PKG_ARGS_ADD= -W ${LOCALBASE} -w ${DEFAULT_VIEW}
|
2003-09-02 08:59:37 +02:00
|
|
|
.endif
|
|
|
|
_BIN_INSTALL_FLAGS= ${BIN_INSTALL_FLAGS}
|
2005-12-31 08:53:11 +01:00
|
|
|
.if defined(_AUTOMATIC) && !empty(_AUTOMATIC:MYES)
|
|
|
|
_BIN_INSTALL_FLAGS+= -A
|
2005-11-05 14:31:43 +01:00
|
|
|
.endif
|
2003-09-02 08:59:37 +02:00
|
|
|
_BIN_INSTALL_FLAGS+= ${PKG_ARGS_ADD}
|
2001-05-20 03:58:19 +02:00
|
|
|
|
2006-01-03 18:26:56 +01:00
|
|
|
_SHORT_UNAME_R= ${:!${UNAME} -r!:C@\.([0-9]*)[_.].*@.\1@} # n.n[_.]anything => n.n
|
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "install/bin-install.mk"
|
2003-10-18 14:29:26 +02:00
|
|
|
|
2003-07-24 00:02:48 +02:00
|
|
|
.PHONY: show-pkgtools-version
|
1999-03-08 18:26:54 +01:00
|
|
|
.if !target(show-pkgtools-version)
|
|
|
|
show-pkgtools-version:
|
2000-01-07 13:24:14 +01:00
|
|
|
@${ECHO} ${PKGTOOLS_VERSION}
|
1999-08-31 23:45:45 +02:00
|
|
|
.endif
|
1998-11-09 15:41:30 +01:00
|
|
|
|
1999-09-28 12:03:16 +02:00
|
|
|
# convenience target, to display make variables from command line
|
|
|
|
# i.e. "make show-var VARNAME=var", will print var's value
|
2007-12-13 12:57:34 +01:00
|
|
|
#
|
|
|
|
# See also:
|
|
|
|
# show-vars, show-subdir-var
|
|
|
|
#
|
2003-07-24 00:02:48 +02:00
|
|
|
.PHONY: show-var
|
1999-09-28 12:03:16 +02:00
|
|
|
show-var:
|
2001-04-17 18:56:21 +02:00
|
|
|
@${ECHO} ${${VARNAME}:Q}
|
1999-09-28 12:03:16 +02:00
|
|
|
|
2001-10-26 23:42:44 +02:00
|
|
|
# enhanced version of target above, to display multiple variables
|
2003-07-24 00:02:48 +02:00
|
|
|
.PHONY: show-vars
|
2001-10-26 23:42:44 +02:00
|
|
|
show-vars:
|
|
|
|
.for VARNAME in ${VARNAMES}
|
|
|
|
@${ECHO} ${${VARNAME}:Q}
|
|
|
|
.endfor
|
|
|
|
|
2005-10-16 19:44:45 +02:00
|
|
|
# displays multiple variables as shell expressions
|
|
|
|
# VARS is space separated list of VARNAME:shellvarname
|
|
|
|
.PHONY: show-vars-eval
|
|
|
|
show-vars-eval:
|
|
|
|
.for var in ${VARS}
|
|
|
|
@${ECHO} ${var:C/^.*://}="${${var:C/:.*$//}:Q}"
|
|
|
|
.endfor
|
|
|
|
|
2005-09-28 10:24:52 +02:00
|
|
|
LICENSE_FILE?= ${PKGSRCDIR}/licenses/${LICENSE}
|
|
|
|
|
2001-01-05 18:37:12 +01:00
|
|
|
.if !target(show-license)
|
2007-01-03 00:34:40 +01:00
|
|
|
show-license show-licence: .PHONY
|
2005-09-28 10:24:52 +02:00
|
|
|
@license=${LICENSE:Q}; \
|
|
|
|
license_file=${LICENSE_FILE:Q}; \
|
|
|
|
pager=${PAGER:Q}; \
|
|
|
|
case "$$pager" in "") pager=${CAT:Q};; esac; \
|
|
|
|
case "$$license" in "") exit 0;; esac; \
|
|
|
|
if ${TEST} -f "$$license_file"; then \
|
|
|
|
$$pager "$$license_file"; \
|
|
|
|
else \
|
|
|
|
${ECHO} "Generic $$license information not available"; \
|
|
|
|
${ECHO} "See the package description (pkg_info -d ${PKGNAME}) for more information."; \
|
2001-01-05 18:37:12 +01:00
|
|
|
fi
|
|
|
|
.endif
|
1999-11-29 20:48:15 +01:00
|
|
|
|
2005-05-08 15:52:25 +02:00
|
|
|
# This target is defined in bsd.options.mk for packages that use
|
|
|
|
# the options framework.
|
2005-05-31 14:10:07 +02:00
|
|
|
.if !target(show-options)
|
|
|
|
.PHONY: show-options
|
|
|
|
show-options:
|
2005-05-08 15:52:25 +02:00
|
|
|
@${ECHO} This package does not use the options framework.
|
|
|
|
.endif
|
|
|
|
|
1999-08-10 12:48:23 +02:00
|
|
|
# Depend is generally meaningless for arbitrary packages, but if someone wants
|
1997-08-20 12:21:05 +02:00
|
|
|
# one they can override this. This is just to catch people who've gotten into
|
1998-04-19 14:48:07 +02:00
|
|
|
# the habit of typing `${MAKE} depend all install' as a matter of course.
|
1997-08-20 12:21:05 +02:00
|
|
|
#
|
2003-07-24 00:02:48 +02:00
|
|
|
.PHONY: depend
|
1997-08-20 12:21:05 +02:00
|
|
|
.if !target(depend)
|
|
|
|
depend:
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# Same goes for tags
|
2003-07-24 00:02:48 +02:00
|
|
|
.PHONY: tags
|
1997-08-20 12:21:05 +02:00
|
|
|
.if !target(tags)
|
|
|
|
tags:
|
|
|
|
.endif
|
1997-09-28 02:44:15 +02:00
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "plist/bsd.plist.mk"
|
2006-01-13 00:43:56 +01:00
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "bsd.utils.mk"
|
2006-01-18 01:10:07 +01:00
|
|
|
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "subst.mk"
|
2003-08-27 13:29:56 +02:00
|
|
|
|
2000-07-28 03:16:27 +02:00
|
|
|
#
|
|
|
|
# For bulk build targets (bulk-install, bulk-package), the
|
2000-08-01 04:16:58 +02:00
|
|
|
# BATCH variable must be set in /etc/mk.conf:
|
2000-07-28 03:16:27 +02:00
|
|
|
#
|
|
|
|
.if defined(BATCH)
|
2007-10-13 13:04:15 +02:00
|
|
|
. include "bulk/bsd.bulk-pkg.mk"
|
2000-07-28 03:16:27 +02:00
|
|
|
.endif
|
2005-01-10 19:34:48 +01:00
|
|
|
|
2006-07-06 23:07:33 +02:00
|
|
|
# README generation code.
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "bsd.pkg.readme.mk"
|
2006-07-06 23:07:33 +02:00
|
|
|
|
2005-01-10 19:34:48 +01:00
|
|
|
# Create a PKG_ERROR_HANDLER shell command for each class listed in
|
|
|
|
# PKG_ERROR_CLASSES. The error handler is meant to be invoked within
|
|
|
|
# a make target.
|
|
|
|
#
|
|
|
|
.for _class_ in ${PKG_ERROR_CLASSES}
|
|
|
|
PKG_ERROR_HANDLER.${_class_}?= { \
|
|
|
|
ec=$$?; \
|
|
|
|
for str in ${PKG_ERROR_MSG.${_class_}}; do \
|
2006-06-06 00:49:44 +02:00
|
|
|
${PHASE_MSG} "$$str"; \
|
2005-01-10 19:34:48 +01:00
|
|
|
done; \
|
|
|
|
exit $$ec; \
|
|
|
|
}
|
|
|
|
.endfor
|
Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file that
caches variable definitions that were computed by make. These variables
are specified by listing them in MAKE_VARS, e.g.,
.if !defined(FOO)
FOO!= very_time_consuming_command
.endif
MAKE_VARS+= FOO
bsd.pkg.mk will include only the one generated during the most recent
phase. A particular phase's makevars.mk file consists of variable
definitions that are a superset of all of the ones produced in previous
phases of the build.
The caching is useful because bsd.pkg.mk invokes make recursively,
which in the example above has the potential to run the very time-consuming
command each time unless we cause FOO to be defined for the sub-make
processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't
consistently applied to every invocation of make, and also because
MAKE_FLAGS can overflow the maximum length of a make variable very
quickly if we add many values to it.
One important and desirable property of variables cached via MAKE_VARS
is that they only apply to the current package, and not to any
dependencies whose builds may have been triggered by the current
package.
The makevars.mk files are generated by new targets fetch-vars,
extract-vars, patch-vars, etc., and these targets are built during
the corresponding real-* target to ensure that they are being invoked
with PKG_PHASE set to the proper value.
Also, remove the variables cache file that bsd.wrapper.mk was generating
since the new makevars.mk files provide the same functionality at a
higher level. Change all WRAPPER_VARS definitions that were used by
the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-09 07:06:55 +02:00
|
|
|
|
2005-05-12 00:08:18 +02:00
|
|
|
# Cache variables listed in MAKEVARS in a phase-specific "makevars.mk"
|
Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file that
caches variable definitions that were computed by make. These variables
are specified by listing them in MAKE_VARS, e.g.,
.if !defined(FOO)
FOO!= very_time_consuming_command
.endif
MAKE_VARS+= FOO
bsd.pkg.mk will include only the one generated during the most recent
phase. A particular phase's makevars.mk file consists of variable
definitions that are a superset of all of the ones produced in previous
phases of the build.
The caching is useful because bsd.pkg.mk invokes make recursively,
which in the example above has the potential to run the very time-consuming
command each time unless we cause FOO to be defined for the sub-make
processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't
consistently applied to every invocation of make, and also because
MAKE_FLAGS can overflow the maximum length of a make variable very
quickly if we add many values to it.
One important and desirable property of variables cached via MAKE_VARS
is that they only apply to the current package, and not to any
dependencies whose builds may have been triggered by the current
package.
The makevars.mk files are generated by new targets fetch-vars,
extract-vars, patch-vars, etc., and these targets are built during
the corresponding real-* target to ensure that they are being invoked
with PKG_PHASE set to the proper value.
Also, remove the variables cache file that bsd.wrapper.mk was generating
since the new makevars.mk files provide the same functionality at a
higher level. Change all WRAPPER_VARS definitions that were used by
the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-09 07:06:55 +02:00
|
|
|
# file. These variables are effectively passed to sub-make processes
|
|
|
|
# that are invoked on the same Makefile.
|
|
|
|
#
|
2006-07-11 00:59:26 +02:00
|
|
|
.for _phase_ in ${_ALL_PHASES}
|
2005-05-12 00:08:18 +02:00
|
|
|
${_MAKEVARS_MK.${_phase_}}: ${WRKDIR}
|
2008-02-07 22:36:13 +01:00
|
|
|
${RUN}${RM} -f ${.TARGET}.tmp
|
2006-06-06 05:05:48 +02:00
|
|
|
. for _var_ in ${MAKEVARS:O:u}
|
|
|
|
. if defined(${_var_})
|
2008-02-07 22:36:13 +01:00
|
|
|
${RUN} \
|
Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file that
caches variable definitions that were computed by make. These variables
are specified by listing them in MAKE_VARS, e.g.,
.if !defined(FOO)
FOO!= very_time_consuming_command
.endif
MAKE_VARS+= FOO
bsd.pkg.mk will include only the one generated during the most recent
phase. A particular phase's makevars.mk file consists of variable
definitions that are a superset of all of the ones produced in previous
phases of the build.
The caching is useful because bsd.pkg.mk invokes make recursively,
which in the example above has the potential to run the very time-consuming
command each time unless we cause FOO to be defined for the sub-make
processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't
consistently applied to every invocation of make, and also because
MAKE_FLAGS can overflow the maximum length of a make variable very
quickly if we add many values to it.
One important and desirable property of variables cached via MAKE_VARS
is that they only apply to the current package, and not to any
dependencies whose builds may have been triggered by the current
package.
The makevars.mk files are generated by new targets fetch-vars,
extract-vars, patch-vars, etc., and these targets are built during
the corresponding real-* target to ensure that they are being invoked
with PKG_PHASE set to the proper value.
Also, remove the variables cache file that bsd.wrapper.mk was generating
since the new makevars.mk files provide the same functionality at a
higher level. Change all WRAPPER_VARS definitions that were used by
the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-09 07:06:55 +02:00
|
|
|
${ECHO} ${_var_}"= "${${_var_}:Q} >> ${.TARGET}.tmp
|
2006-06-06 05:05:48 +02:00
|
|
|
. endif
|
|
|
|
. endfor
|
2008-02-07 22:36:13 +01:00
|
|
|
${RUN} \
|
Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file that
caches variable definitions that were computed by make. These variables
are specified by listing them in MAKE_VARS, e.g.,
.if !defined(FOO)
FOO!= very_time_consuming_command
.endif
MAKE_VARS+= FOO
bsd.pkg.mk will include only the one generated during the most recent
phase. A particular phase's makevars.mk file consists of variable
definitions that are a superset of all of the ones produced in previous
phases of the build.
The caching is useful because bsd.pkg.mk invokes make recursively,
which in the example above has the potential to run the very time-consuming
command each time unless we cause FOO to be defined for the sub-make
processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't
consistently applied to every invocation of make, and also because
MAKE_FLAGS can overflow the maximum length of a make variable very
quickly if we add many values to it.
One important and desirable property of variables cached via MAKE_VARS
is that they only apply to the current package, and not to any
dependencies whose builds may have been triggered by the current
package.
The makevars.mk files are generated by new targets fetch-vars,
extract-vars, patch-vars, etc., and these targets are built during
the corresponding real-* target to ensure that they are being invoked
with PKG_PHASE set to the proper value.
Also, remove the variables cache file that bsd.wrapper.mk was generating
since the new makevars.mk files provide the same functionality at a
higher level. Change all WRAPPER_VARS definitions that were used by
the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-09 07:06:55 +02:00
|
|
|
if ${TEST} -f ${.TARGET}.tmp; then \
|
2005-05-12 00:08:18 +02:00
|
|
|
( ${ECHO} ".if !defined(_MAKEVARS_MK)"; \
|
|
|
|
${ECHO} "_MAKEVARS_MK= defined"; \
|
Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file that
caches variable definitions that were computed by make. These variables
are specified by listing them in MAKE_VARS, e.g.,
.if !defined(FOO)
FOO!= very_time_consuming_command
.endif
MAKE_VARS+= FOO
bsd.pkg.mk will include only the one generated during the most recent
phase. A particular phase's makevars.mk file consists of variable
definitions that are a superset of all of the ones produced in previous
phases of the build.
The caching is useful because bsd.pkg.mk invokes make recursively,
which in the example above has the potential to run the very time-consuming
command each time unless we cause FOO to be defined for the sub-make
processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't
consistently applied to every invocation of make, and also because
MAKE_FLAGS can overflow the maximum length of a make variable very
quickly if we add many values to it.
One important and desirable property of variables cached via MAKE_VARS
is that they only apply to the current package, and not to any
dependencies whose builds may have been triggered by the current
package.
The makevars.mk files are generated by new targets fetch-vars,
extract-vars, patch-vars, etc., and these targets are built during
the corresponding real-* target to ensure that they are being invoked
with PKG_PHASE set to the proper value.
Also, remove the variables cache file that bsd.wrapper.mk was generating
since the new makevars.mk files provide the same functionality at a
higher level. Change all WRAPPER_VARS definitions that were used by
the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-09 07:06:55 +02:00
|
|
|
${ECHO} ""; \
|
|
|
|
${CAT} ${.TARGET}.tmp; \
|
|
|
|
${ECHO} ""; \
|
2005-05-12 00:08:18 +02:00
|
|
|
${ECHO} ".endif # _MAKEVARS_MK"; \
|
Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file that
caches variable definitions that were computed by make. These variables
are specified by listing them in MAKE_VARS, e.g.,
.if !defined(FOO)
FOO!= very_time_consuming_command
.endif
MAKE_VARS+= FOO
bsd.pkg.mk will include only the one generated during the most recent
phase. A particular phase's makevars.mk file consists of variable
definitions that are a superset of all of the ones produced in previous
phases of the build.
The caching is useful because bsd.pkg.mk invokes make recursively,
which in the example above has the potential to run the very time-consuming
command each time unless we cause FOO to be defined for the sub-make
processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't
consistently applied to every invocation of make, and also because
MAKE_FLAGS can overflow the maximum length of a make variable very
quickly if we add many values to it.
One important and desirable property of variables cached via MAKE_VARS
is that they only apply to the current package, and not to any
dependencies whose builds may have been triggered by the current
package.
The makevars.mk files are generated by new targets fetch-vars,
extract-vars, patch-vars, etc., and these targets are built during
the corresponding real-* target to ensure that they are being invoked
with PKG_PHASE set to the proper value.
Also, remove the variables cache file that bsd.wrapper.mk was generating
since the new makevars.mk files provide the same functionality at a
higher level. Change all WRAPPER_VARS definitions that were used by
the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-09 07:06:55 +02:00
|
|
|
) > ${.TARGET}; \
|
|
|
|
${RM} -f ${.TARGET}.tmp; \
|
|
|
|
fi
|
2008-02-07 22:36:13 +01:00
|
|
|
${RUN}${TOUCH} ${TOUCH_FLAGS} ${.TARGET}
|
Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file that
caches variable definitions that were computed by make. These variables
are specified by listing them in MAKE_VARS, e.g.,
.if !defined(FOO)
FOO!= very_time_consuming_command
.endif
MAKE_VARS+= FOO
bsd.pkg.mk will include only the one generated during the most recent
phase. A particular phase's makevars.mk file consists of variable
definitions that are a superset of all of the ones produced in previous
phases of the build.
The caching is useful because bsd.pkg.mk invokes make recursively,
which in the example above has the potential to run the very time-consuming
command each time unless we cause FOO to be defined for the sub-make
processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't
consistently applied to every invocation of make, and also because
MAKE_FLAGS can overflow the maximum length of a make variable very
quickly if we add many values to it.
One important and desirable property of variables cached via MAKE_VARS
is that they only apply to the current package, and not to any
dependencies whose builds may have been triggered by the current
package.
The makevars.mk files are generated by new targets fetch-vars,
extract-vars, patch-vars, etc., and these targets are built during
the corresponding real-* target to ensure that they are being invoked
with PKG_PHASE set to the proper value.
Also, remove the variables cache file that bsd.wrapper.mk was generating
since the new makevars.mk files provide the same functionality at a
higher level. Change all WRAPPER_VARS definitions that were used by
the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-09 07:06:55 +02:00
|
|
|
.endfor
|
2005-05-18 04:52:38 +02:00
|
|
|
|
2007-09-07 17:51:53 +02:00
|
|
|
.if make(pbulk-index) || make(pbulk-index-item) || make(pbulk-save-wrkdir)
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "pbulk/pbulk-index.mk"
|
2007-05-10 01:33:51 +02:00
|
|
|
.endif
|
|
|
|
|
2007-01-02 22:29:07 +01:00
|
|
|
.if defined(PKG_DEVELOPER)
|
2007-10-13 13:04:15 +02:00
|
|
|
. include "misc/developer.mk"
|
2005-06-09 00:44:08 +02:00
|
|
|
.endif
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "misc/show.mk"
|
2007-08-13 07:24:26 +02:00
|
|
|
.if make(debug)
|
2007-10-13 13:04:15 +02:00
|
|
|
. include "bsd.pkg.debug.mk"
|
2006-07-20 19:16:43 +02:00
|
|
|
.endif
|
2007-10-13 13:04:15 +02:00
|
|
|
.include "misc/warnings.mk"
|
|
|
|
.include "misc/can-be-built-here.mk"
|