blob: f4b523a1e09fc4773c8e1c655d193aa296cb77a4 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Created by: Mikael Urankar <mikael.urankar@gmail.com>
# $FreeBSD$
PORTNAME= raspberrypi-userland
PORTVERSION= 20160306
CATEGORIES= misc
MAINTAINER= mikael.urankar@gmail.com
COMMENT= Various libraries for the Raspberry Pi
LICENSE= BSD3CLAUSE
ONLY_FOR_ARCHS= armv6
CONFLICTS_INSTALL= libglesv2 libEGL
USE_GITHUB= yes
GH_ACCOUNT= gonzoua
GH_PROJECT= userland
GH_TAGNAME= c702cd3
USE_LDCONFIG= yes
USES= cmake:outsource
CMAKE_ARGS+= -DVMCS_INSTALL_PREFIX=${PREFIX} \
-DCMAKE_TOOLCHAIN_FILE=${WRKSRC}/makefiles/cmake/toolchains/arm-freebsd.cmake
OPTIONS_DEFINE= EXAMPLES DEBUG
OPTIONS_DEFAULT= EXAMPLES
EXAMPLES_DESC= Install test applications source code (hello_pi)
EXAMPLES_LIB_DEPENDS= libfreetype.so:print/freetype2
DEBUG_CFLAGS_OFF= -DNDEBUG
post-patch:
@${REINPLACE_CMD} -e "s|/opt/vc|${PREFIX}|g" \
${WRKSRC}/makefiles/cmake/vmcs.cmake \
${WRKSRC}/host_applications/linux/apps/hello_pi/Makefile.include
@${REINPLACE_CMD} -e "s|CMAKE_C_COMPILER cc|CMAKE_C_COMPILER ${CC}|g" \
-e "s|CMAKE_CXX_COMPILER c++|CMAKE_C_COMPILER ${CXX}|g" \
-e "s|CMAKE_ASM_COMPILER as|CMAKE_C_COMPILER ${CC}|g" \
${WRKSRC}/makefiles/cmake/toolchains/arm-freebsd.cmake
# patches for hello_pi example
@${REINPLACE_CMD} -e "s|make|gmake|g" \
${WRKSRC}/host_applications/linux/apps/hello_pi/rebuild.sh
@${REINPLACE_CMD} -e "s|gcc|cc|g" \
${WRKSRC}/host_applications/linux/apps/hello_pi/hello_fft/makefile
@${REINPLACE_CMD} -e "s|linux|sys|g" \
${WRKSRC}/host_applications/linux/apps/hello_pi/hello_fft/mailbox.h
@${REINPLACE_CMD} -e "s|LOCALBASE|${LOCALBASE}|g" \
${WRKSRC}/host_applications/linux/apps/hello_pi/Makefile.include
.for file in hello_fft/gpu_fft.txt hello_teapot/triangle.c hello_teapot/video.c hello_videocube/video.c
@${REINPLACE_CMD} -e "s|/opt/vc/src|${EXAMPLESDIR}|g" \
${WRKSRC}/host_applications/linux/apps/hello_pi/${file}
.endfor
post-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
@(cd ${WRKSRC}/host_applications/linux/apps/hello_pi && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/hello_pi)
.include <bsd.port.mk>
|