mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
5b58e2bcf9
molecular structure files in different formats and generates Postscript output for 2D display. The Postscript file can then be used e.g. for creating a bitmap file, using a Postscript interpreter like Ghostscript. WWW: http://merian.pch.univie.ac.at/~nhaider/cheminf/mol2ps.html PR: ports/138673 Feature safe: yes Submitted by: Fernan Aguero <fernan at iib.unsam.edu.ar>
32 lines
780 B
Makefile
32 lines
780 B
Makefile
# New ports collection makefile for: mol2ps
|
|
# Date created: 23 Feb 2009
|
|
# Whom: Fernan Aguero <fernan@iib.unsam.edu.ar>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mol2ps
|
|
PORTVERSION= 0.1e
|
|
CATEGORIES= science
|
|
MASTER_SITES= http://merian.pch.univie.ac.at/pch/download/chemistry/${PORTNAME}/
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX= .pas
|
|
|
|
MAINTAINER= fernan@iib.unsam.edu.ar
|
|
COMMENT= Read molecular structure files and generate Postscript output
|
|
|
|
USE_FPC= yes
|
|
|
|
do-extract:
|
|
@${RM} -rf ${WRKDIR}
|
|
@${MKDIR} ${WRKDIR}
|
|
${CP} ${DISTDIR}/${DISTFILES} ${WRKDIR}/
|
|
do-build:
|
|
cd ${WRKDIR}; ${LOCALBASE}/bin/fpc ${DISTFILES} -S2 -O3 -Op3
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${FILESDIR}/color.conf ${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|