agg: add antigrain 2.5, closes #1464
authorBignaux Ronan <ronan@aimao.org>
Thu, 28 Jun 2007 09:44:36 +0000 (09:44 +0000)
committerKoen Kooi <koen@openembedded.org>
Thu, 28 Jun 2007 09:44:36 +0000 (09:44 +0000)
packages/agg/.mtn2git_empty [new file with mode: 0644]
packages/agg/agg_2.5.bb [new file with mode: 0644]

diff --git a/packages/agg/.mtn2git_empty b/packages/agg/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/agg/agg_2.5.bb b/packages/agg/agg_2.5.bb
new file mode 100644 (file)
index 0000000..ad37094
--- /dev/null
@@ -0,0 +1,40 @@
+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
+
+EXTRA_OECONF = "--with-sdl-exec-prefix=${STAGING_DIR}/${BUILD_SYS}"
+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() {
+        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 -m 0644 $f ${STAGING_INCDIR}/agg2/$f
+        done
+}
+
+
+