blob: a8ee2f988f7b90a84c2d03572f95ef21efe32ad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.4 2001/02/16 13:41:27 wiz Exp $
DISTNAME= chemtool-1.3
CATEGORIES= biology
MASTER_SITES= http://www.uni-ulm.de/~s_tvolk/chemtool/src/
MAINTAINER= jtb@netbsd.org
HOMEPAGE= http://www.uni-ulm.de/~s_tvolk/chemtool.html
COMMENT= Program for drawing organic molecules
DEPENDS+= gtk+>=1.0.0:../../x11/gtk
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/chemtool
@for f in ${WRKSRC}/examples/*; do \
i="${INSTALL_DATA} $$f ${PREFIX}/share/examples/chemtool/"; \
${ECHO} $$i; $$i; \
done
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/chemtool
@for f in README TODO; do \
i="${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/doc/chemtool/"; \
${ECHO} $$i; $$i; \
done
.include "../../mk/bsd.pkg.mk"
|