mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
27 lines
556 B
Makefile
27 lines
556 B
Makefile
# Created by: Anton Voronin <anton@urc.ac.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= matrix
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= math devel
|
|
MASTER_SITES= http://www.chelcom.ru/~anton/projects/files/
|
|
DISTNAME= matrix-${PORTVERSION}
|
|
|
|
MAINTAINER= anton@chelcom.ru
|
|
COMMENT= C++ library to manipulate matrices and vectors
|
|
|
|
WRKSRC= ${WRKDIR}/matrix
|
|
|
|
USES= zip
|
|
USE_LDCONFIG= yes
|
|
PLIST_SUB= LIBVERSION=1
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
BROKEN= Does not build on amd64 (shared libraries must be compiled with -fPIC)
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|