pkgsrc/emulators/freebsd_lib/Makefile
agc a16fc84f19 Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:
WRKSRC= ${WRKDIR}

This is much cleaner, much more indicative of what happens, and removes
another of the negative definitions (NO_.* = value).
2001-09-09 20:36:07 +00:00

28 lines
777 B
Makefile

# $NetBSD: Makefile,v 1.11 2001/09/09 20:36:22 agc Exp $
#
DISTNAME= freebsd_lib-2.2.7
CATEGORIES= emulators
MASTER_SITES= http://www.flame.org/NetBSD/
MAINTAINER= packages@netbsd.org
COMMENT= libraries necessary for FreeBSD compatibility, including XFree86
ONLY_FOR_PLATFORM= NetBSD-*-i386
NO_BUILD= yes
WRKSRC= ${WRKDIR}
do-install:
@${INSTALL_DATA_DIR} ${PREFIX}/emul/freebsd
@(cd ${WRKSRC} && ${FIND} usr -type d -print) | \
(cd ${PREFIX}/emul/freebsd && ${XARGS} ${INSTALL_DATA_DIR})
@cd ${WRKSRC} && for file in `${FIND} usr -name '*.*' -print`; do \
${INSTALL_DATA} $$file ${PREFIX}/emul/freebsd/$$file; \
done
@${SETENV} PKG_PREFIX="${PREFIX}" ${SH} ${INSTALL_FILE} - POST-INSTALL
show-shlib-type:
@${ECHO} a.out
.include "../../mk/bsd.pkg.mk"