a4bc16d30c
redefines about which buildlink.mk files would care is BUILDLINK_X11_DIR, which points to the location of the X11R6 hierarchy used during building. If x11.buildlink.mk isn't included, then BUILDLINK_X11_DIR defaults to ${X11BASE} (set in bsd.pkg.mk), so its value is always safe to use. Remove the ifdefs surrounding the use of BUILDLINK_X11_DIR in tk/buildlink.mk and revert changes to move x11.buildlink.mk before the other buildlink.mk files.
31 lines
875 B
Makefile
31 lines
875 B
Makefile
# $NetBSD: Makefile,v 1.27 2001/10/24 22:10:44 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= snd
|
|
PKGNAME= snd-19980212
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
|
|
MAINTAINER= hubertf@netbsd.org
|
|
HOMEPAGE= http://ccrma-www.stanford.edu/CCRMA/Software/snd/snd.html
|
|
COMMENT= X based sound editor
|
|
|
|
NO_SRC_ON_FTP= Already on MASTER_SITE_LOCAL
|
|
|
|
USE_BUILDLINK_ONLY= YES
|
|
WRKSRC= ${WRKDIR}
|
|
MAKEFILE= makefile.netbsd
|
|
ALL_TARGET= snd
|
|
HTMLDIR= ${PREFIX}/share/doc/html/snd
|
|
USE_X11BASE= YES
|
|
|
|
do-install:
|
|
cd ${WRKSRC} ; ${INSTALL_PROGRAM} snd ${PREFIX}/bin
|
|
cd ${WRKSRC} ; ${INSTALL_DATA} Snd.ad ${PREFIX}/lib/X11/app-defaults/Snd
|
|
${INSTALL_DATA_DIR} ${HTMLDIR}
|
|
cd ${WRKSRC} ; ${INSTALL_DATA} *.gif *.html *.txt README.Snd ${HTMLDIR}
|
|
|
|
.include "../../graphics/xpm/buildlink.mk"
|
|
.include "../../mk/motif.buildlink.mk"
|
|
.include "../../mk/x11.buildlink.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|