blob: 5a327613556e7b6780f808e2da6617b7568efff5 (
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
|
# New ports collection makefile for: evas-engine-sdl
# Date created: 15 September 2007
# Whom: Stanislav Sedov <stas@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= engine-sdl
DISTVERSION= 1.0.1
CATEGORIES= graphics enlightenment
MASTER_SITES= http://download.enlightenment.org/releases/ \
http://files.roorback.net/e17/2011-05-25/base/
PKGNAMEPREFIX= evas-
DISTNAME= evas-${DISTVERSION}
MAINTAINER= stas@FreeBSD.org
COMMENT= A hardware accelerated canvas API (SDL engine)
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2
LICENSE= BSD
DIST_SUBDIR= e17
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
USE_GNOME= gnomehack pkgconfig gnometarget
USE_EFL= evas librt_hack libtool_hack
USE_SDL= sdl
BUILD_WRKSRC= ${WRKSRC}/src/modules/engines/software_sdl
INSTALL_WRKSRC= ${BUILD_WRKSRC}
.include "../evas-core/Makefile.inc"
CONFIGURE_ARGS+= --enable-software-sdl
post-patch:
@${REINPLACE_CMD} -E \
-e 's,\$$\(top_builddir\)/src/lib/\.libs,${LOCALBASE}/lib,' \
-e 's,\$$\(top_builddir\)/src/lib/libevas\.la,-levas,' \
${BUILD_WRKSRC}/Makefile.in
post-install:
${INSTALL_DATA} ${WRKSRC}/evas-software-sdl.pc \
${PREFIX}/libdata/pkgconfig/
.include <bsd.port.mk>
|