2f53857f29
only emit a message and don't actually fetch anything. This allows us to make the output of "fetch-list" for these packages consistent with other packages. While we're in here, integrate DYNAMIC_MASTER_SITES with the ${ORDERED_SITES} macro. The only functional change here is that ${MASTER_SITE_OVERRIDE} is now respected. Still to do -- something appropriate for "fetch-list" for these packages, like sourcing "getsites.sh" into the generated script. (Well, "package", but there are two others that do something similar in their "Makefile".) Also eliminate the misbegotten _FETCH_ALLFILES macro -- now that only "fetch" uses it, move it's functionality directly under "do-fetch".
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2002/03/04 19:41:06 fredb Exp $
|
|
#
|
|
|
|
DISTNAME= simian_12_98
|
|
PKGNAME= simian-2.1
|
|
CATEGORIES= cad
|
|
MASTER_SITES= http://weewave.mer.utexas.edu/MED_files/CODE_RQST/
|
|
|
|
MAINTAINER= dmcmahill@netbsd.org
|
|
HOMEPAGE= http://weewave.mer.utexas.edu/MED_files/MED_research/Intrcncts/SIMIAN_stuff/simian_links.html
|
|
COMMENT= 2-dimensional interconnect and transmission line simulator
|
|
|
|
LICENSE= no-redistribution
|
|
RESTRICTED= "Personal use only"
|
|
NO_SRC_ON_CDROM= ${RESTRICTED}
|
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
NO_SRC_ON_FTP= ${RESTRICTED}
|
|
NO_BIN_ON_FTP= ${RESTRICTED}
|
|
|
|
WRKSRC= ${WRKDIR}/Simian/src
|
|
ALL_TARGET= simian
|
|
|
|
_FETCH_MESSAGE= \
|
|
${ECHO} '======================================================='; \
|
|
${ECHO} ' To build this package, please request a password on'; \
|
|
${ECHO} ' ${HOMEPAGE},'; \
|
|
${ECHO} ' with which to fetch "${DISTNAME}${EXTRACT_SUFX}" manually.'; \
|
|
${ECHO} '======================================================='
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/simian ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/simian
|
|
${INSTALL_DATA} ${WRKSRC}/../examples/* ${PREFIX}/share/examples/simian
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|