aboutsummaryrefslogtreecommitdiffstats
path: root/packages/agg/agg_2.5.bb
blob: a3cf4b95574906d43c5e87f8cf1c8875be71883f (plain)
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
DESCRIPTION = "Anti Grain Geometry - A High Quality Rendering Engine for C++"
AUTHOR = "mcseem@antigrain.com"
HOMEPAGE = "http://www.antigrain.com"
SECTION = "libs"
LICENSE = "AGG License"
DEPENDS = "virtual/libx11 virtual/libsdl freetype"

PR = "r0"

SRC_URI = "http://www.antigrain.com/${P}.tar.gz"
S = "${WORKDIR}/${P}"

inherit autotools pkgconfig

export SDL_CONFIG=${STAGING_BINDIR_CROSS}/sdl-config

CFLAGS += " -I{$STAGING_INCDIR} "

PACKAGES =+ "${PN}-sdl ${PN}-x11"

FILES_${PN}-sdl = "${libdir}/libaggplatformsdl.so.*"
FILES_${PN}-x11 += "${libdir}/libaggplatformX11.so.*"
FILES_${PN} = "${libdir}/libagg.so.* \
               ${libdir}/libaggfontfreetype.so.*"

LEAD_SONAME = "libagg.so"

do_stage() {
    oe_libinstall -a -so libagg ${STAGING_LIBDIR}
    oe_libinstall -a -so libaggfontfreetype ${STAGING_LIBDIR}
    oe_libinstall -a -so libaggplatformX11 ${STAGING_LIBDIR}
    oe_libinstall -a -so libaggplatformsdl ${STAGING_LIBDIR}
    install -m 0644 libagg.m4 ${STAGING_DATADIR}/aclocal/
    install -d ${STAGING_INCDIR}/agg2
    cd include
    headers=`find . -name "*.h"`
    for f in $headers
    do
            install -D -m 0644 $f ${STAGING_INCDIR}/agg2/$f
    done
}