mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
28 lines
611 B
Makefile
28 lines
611 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= spar
|
|
PORTVERSION= 0.5.10
|
|
PORTREVISION= 3
|
|
CATEGORIES= math devel
|
|
MASTER_SITES= SF/${PORTNAME}/Spar/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Modular math parser
|
|
|
|
USES= libtool ncurses readline
|
|
GNU_CONFIGURE= yes
|
|
USE_CSTD= gnu89
|
|
USE_LDCONFIG= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s,-ldl,,g" \
|
|
${WRKSRC}/lib/Makefile.in ${WRKSRC}/lib/module/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|-lcurses|-lncurses|' ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/spar/*.so
|
|
|
|
.include <bsd.port.mk>
|