1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/science/mol2ps/Makefile
Jose Alonso Cardenas Marquez 2dfe4c2cb5 - Fix typo
2014-03-26 04:18:14 +00:00

40 lines
946 B
Makefile

# Created by: Fernan Aguero <fernan@iib.unsam.edu.ar>
# $FreeBSD$
PORTNAME= mol2ps
PORTVERSION= 0.4a
PORTREVISION= 1
CATEGORIES= science
MASTER_SITES= http://merian.pch.univie.ac.at/pch/download/chemistry/${PORTNAME}/
DISTNAME= ${PORTNAME}
EXTRACT_SUFX= .pas
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Read molecular structure files and generate Postscript output
LICENSE= GPLv2 # (or later)
NO_WRKSUBDIR= yes
EXTRACT_CMD= ${CP}
EXTRACT_BEFORE_ARGS= #
EXTRACT_AFTER_ARGS= ${WRKDIR}
USE_FPC= yes
PLIST_FILES= bin/${PORTNAME} bin/mol2svg %%DATADIR%%/color.conf
PLIST_DIRS= %%DATADIR%%
NO_STAGE= yes
do-build:
(cd ${WRKSRC} && ${LOCALBASE}/bin/fpc ${EXTRACT_ONLY} -S2 -O3)
do-install:
(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} ${PREFIX}/bin)
(cd ${PREFIX}/bin && ${LN} ${PORTNAME} mol2svg)
@${MKDIR} ${DATADIR}
(cd ${FILESDIR} && ${INSTALL_DATA} color.conf ${DATADIR})
.include <bsd.port.mk>