Unlike 6.1.5, it actually builds on netbsd-6, but unfortunately not on OpenIndiana 151a7. There's reams of changes in ChangeLog.
53 lines
1.7 KiB
Makefile
53 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2013/08/30 14:56:45 hfath Exp $
|
|
#
|
|
|
|
DISTNAME= ${PKGNAME}-rc1
|
|
PKGNAME= am-utils-6.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.am-utils.org/pub/am-utils/ \
|
|
ftp://ftp.cs.umn.edu/pub/am-utils \
|
|
ftp://ftp.cise.ufl.edu/pub/mirrors/am-utils \
|
|
ftp://ftp.fu-berlin.de/unix/network/am-utils \
|
|
ftp://ftp.tu-darmstadt.de/pub/networking/filesystems/am-utils/ \
|
|
ftp://ftp.sunet.se/pub/unix/admin/am-utils \
|
|
ftp://sunsite.org.uk/package/am-utils \
|
|
ftp://ftp.u-aizu.ac.jp/pub/net/amd/am-utils \
|
|
ftp://core.ring.gr.jp/pub/net/am-utils/ \
|
|
ftp://ftp.ring.gr.jp/pub/net/am-utils/
|
|
|
|
MAINTAINER= cheusov@NetBSD.org
|
|
HOMEPAGE= http://www.am-utils.org/
|
|
COMMENT= Berkeley automounter suite of utilities
|
|
LICENSE= original-bsd
|
|
|
|
USE_TOOLS+= yacc lex perl:run
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
|
|
INFO_FILES= yes
|
|
|
|
CONFIGURE_ARGS+= --without-ldap
|
|
CONFIGURE_ARGS+= --without-hesiod
|
|
CONFIGURE_ARGS+= --without-ndbm
|
|
|
|
RCD_SCRIPTS= amd-pkgsrc
|
|
|
|
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
|
|
|
|
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 "../../mk/bsd.pkg.mk"
|