blob: 3b3a2b6a38dea9066252fd7b41ac83c60a549bcd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# 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
USE_ZIP= yes
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>
|