pkgsrc-wip/am-utils-git/Makefile
Hauke Fath bb23e69acc Import am-utils-6.2nb20130830 as wip/am-utils-git.
An automounter maintains a cache of mounted file systems. File systems
are mounted on demand when they are first referenced, and unmounted
after a period of inactivity. This helps to centralize all file system
access, provide a uniform site-wide namespace, and minimize downtimes
for clients.  The Berkeley Automounter, Amd, may be used as a
replacement for Sun's automounter.

This package builds a development version from the tip of the git
source repository.
2013-08-30 15:03:43 +00:00

51 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.1 2013/08/30 15:03:43 hfath Exp $
#
DISTNAME= am-utils-6.2
CATEGORIES= sysutils
#MASTER_SITES= ftp://ftp.am-utils.org/pub/am-utils/
MAINTAINER= hauke@NetBSD.org
HOMEPAGE= http://www.am-utils.org/
COMMENT= Berkeley automounter suite of utilities
LICENSE= original-bsd
GIT_REPOSITORIES= am-utils
GIT_REPO.am-utils= git://git.fsl.cs.sunysb.edu/am-utils-6.2.git
GIT_MODULE.am-utils= am-utils-6.2
USE_TOOLS+= yacc lex perl:run automake gettext-m4
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
INFO_FILES= yes
CONFIGURE_ARGS+= --without-ldap
CONFIGURE_ARGS+= --without-hesiod
CONFIGURE_ARGS+= --without-ndbm
RCD_SCRIPTS= amd
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
PKGDOCDIR= ${PREFIX}/share/doc/${PKGBASE}
INSTALLATION_DIRS+= ${EGDIR} ${PKGDOCDIR} etc/amd
EXTRA_DOC_FILES= COPYING FAQ ChangeLog BUGS AUTHORS \
README.attrcache README.autofs README.ldap \
README.osx README.y2k NEWS README INSTALL
EXAMPLE_CONF_FILES= amd.conf lostaltmail.conf
pre-configure:
( cd ${WRKSRC} && ${SH} bootstrap )
post-install:
.for i in ${EXTRA_DOC_FILES}
${INSTALL_DATA} ${WRKSRC}/${i} ${DESTDIR}${PKGDOCDIR}
.endfor
.for i in ${EXAMPLE_CONF_FILES}
${INSTALL_DATA} ${WRKSRC}/scripts/${i}-sample ${DESTDIR}${EGDIR}/${i}
.endfor
.include "../../wip/mk/git-package.mk"
.include "../../mk/bsd.pkg.mk"