mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
6ca338fac7
with ffmpeg on processors that do not support SSE instructions. OFF by default for package building, ON with autodetect for ports to keep with POLA. [1][2] - Bump PORTREVISION on all opencv ports PR: 199715 [1], 200234 [2] Submitted by: Randy Westlund <rwestlun@gmail.com> [1], sasamotikomi@gmail.com [2]
25 lines
497 B
Makefile
25 lines
497 B
Makefile
# Created by: Martin Matuska <mm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTREVISION= 3
|
|
CATEGORIES= graphics python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
COMMENT= OpenCV Python library
|
|
|
|
OCV_SLAVE= python
|
|
OCV_PYTHON= yes
|
|
MASTERDIR= ${.CURDIR:H}/opencv
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
.if defined(PYTHON_REL) && ${PYTHON_REL} >= 3200
|
|
PLIST_SUB+= PYTHON3="" \
|
|
PYTHON2="@comment " \
|
|
PYTHON_SUFFIX="${PYTHON_SUFFIX}"
|
|
.else
|
|
PLIST_SUB+= PYTHON3="@comment " \
|
|
PYTHON2=""
|
|
.endif
|
|
|
|
.include "${MASTERDIR}/Makefile"
|