c739cf896c
- change MASTER_SITES - bump ok ajacoutot@
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.7 2009/06/08 21:46:58 benoit Exp $
|
|
|
|
COMMENT = generates lists of words given certain information
|
|
|
|
DISTNAME = WordGenerator-1.9
|
|
PKGNAME = ${DISTNAME}p0
|
|
CATEGORIES = misc education
|
|
|
|
MAINTAINER = Benoit Lecocq <benoit@openbsd.org>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://www.arcane-labs.net/download/OpenBSD/
|
|
|
|
MODULES = x11/tk
|
|
|
|
RUN_DEPENDS = :tcllib->=1.8:devel/tcllib \
|
|
::x11/iwidgets
|
|
|
|
NO_BUILD = Yes
|
|
NO_REGRESS = Yes
|
|
|
|
PKG_ARCH = *
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/WordGenerator.tcl
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/WordGenerator.tcl ${PREFIX}/bin/WordGenerator
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/wordgenerator
|
|
${INSTALL_DATA} ${WRKSRC}/SampleConfiguration \
|
|
${PREFIX}/share/examples/wordgenerator
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/wordgenerator
|
|
${INSTALL_DATA} ${WRKSRC}/README_CONFIGURATION \
|
|
${PREFIX}/share/doc/wordgenerator
|
|
|
|
.include <bsd.port.mk>
|