Listing 1 /usr/pkgsrc/local/mk/my.mk.conf
# Global settings for all pkgsrc build hosts
# From bootstrapping process; other settings should be pulled in here, too
FETCH_CMD= ${PREFIX}/bin/ftp
# Create temporary work directories according to the given architecture
OBJMACHINE= YES
# Separate work-directories will be created here.
# Useful to keep platform dependent build-files from the NFS share.
WRKOBJDIR= /usr/pkgobj
# Location where all binary packages are stored. We don't want to share
# these, either.
PACKAGES= /usr/pkgs/${MACHINE_ARCH}
# Directory hierarchy for any patches you might want to apply locally.
# You probably want to export this, too, so let's keep it under ${LOCALBASE}
LOCALPATCHES= ${LOCALBASE}/local
# If distribution files are not found on the specified site, pkgsrc tries to
# download them from NetBSD's ftp site. Add your local mirror here to
# increase download speed significantly.
MASTER_SITE_BACKUP= ftp://your.netbsd.mirror/pub/NetBSD/packages/distfiles/
# Add your closest free software mirrors here, if possible.
# See /usr/pkgsrc/mk/bsd.pkg.mk for other sites.
MASTER_SITE_GNU= ftp://your.gnu.mirror/pub/gnu/
MASTER_SITE_PERL_CPAN= ftp://your.cpan.mirror/pub/CPAN/modules/by-module/
MASTER_SITE_TEX_CTAN= ftp://your.ctan.mirror/pub/TeX/CTAN/
MASTER_SITE_GNOME= ftp://your.gnome.mirror/pub/GNOME/
MASTER_SITE_SOURCEFORGE= http://closest.dl.sourceforge.net/sourceforge/
# Some packages have specific license terms that you may or may not wish to
# agree to. List the acceptable licenses here. Most commonly this will
# include ``fee-based-commercial-use'' (for openssl) and ``shareware'' (xv,
# for example). This list may grow as you install packages.
ACCEPTABLE_LICENCES= <list of acceptable licenses>
# Uncomment this if you are creating your own packages. It will add some
# additional debugging information.
#PKG_DEVELOPER= 1
# Uncomment this if you are creating your own packages and are experiencing
# problems. Caution: output will get very verbose.
#PKG_DEBUG_LEVEL= 2
|