mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
0025f82662
back sometime. Hat: portmgr
37 lines
843 B
Makefile
37 lines
843 B
Makefile
# New ports collection makefile for: aamath
|
|
# Date created: 2005-06-23
|
|
# Whom: Vsevolod Stakhov <vsevolod@highsecure.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= aamath
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= math textproc
|
|
MASTER_SITES= http://fuse.superglue.se/aamath/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Aamath is a tool for rendering mathematical expressions to ascii art
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PLIST_FILES+= bin/${PORTNAME}
|
|
MAN1= aamath.1
|
|
|
|
MAKE_ENV+= LDFLAGS="${LDFLAGS}"
|
|
LDFLAGS= -lreadline
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS= ${LOCALBASE}/lib/libreadline.so
|
|
.endif
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/aamath ${PREFIX}/bin
|
|
@${INSTALL_DATA} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1
|
|
.include <bsd.port.post.mk>
|