blob: 3d7772350cbc1eae92511dd28977898c5b2a34d1 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# New ports collection makefile for: frei0r-plugins
# Date created: 29 June 2011
# Whom: Alberto Villa <avilla@FreeBSD.org>
#
# $FreeBSD$
#
PORTREVISION= 0
PKGNAMESUFFIX= -plugins
MASTER_SITES= # empty
DISTFILES= # empty
EXTRACT_ONLY= # empty
COMMENT= Frei0r meta-port
RUN_DEPENDS= ${LOCALBASE}/include/frei0r.h:${PORTSDIR}/graphics/frei0r
MASTERDIR= ${.CURDIR}/../frei0r
NO_BUILD= yes
PLIST= ${WRKDIR}/PLIST
BUILDING_FREI0R_METAPORT= yes
OPTIONS= GAVL "Install gavl plugins" on \
OPENCV "Install OpenCV plugins" on
.include "${MASTERDIR}/Makefile"
.include <bsd.port.options.mk>
.if !defined(WITHOUT_GAVL)
RUN_DEPENDS+= ${LOCALBASE}/lib/frei0r-1/rgbparade.so:${PORTSDIR}/graphics/frei0r-plugins-gavl
.endif
.if !defined(WITHOUT_OPENCV)
RUN_DEPENDS+= ${LOCALBASE}/lib/frei0r-1/facedetect.so:${PORTSDIR}/graphics/frei0r-plugins-opencv
.endif
do-install:
@${DO_NADA}
.include <bsd.port.mk>
|