[arch-commits] Commit in agg/repos (14 files)

Andrea Scarpino andrea at nymeria.archlinux.org
Fri Mar 14 08:12:44 UTC 2014


    Date: Friday, March 14, 2014 @ 09:12:44
  Author: andrea
Revision: 107181

archrelease: copy trunk to community-i686, community-x86_64

Added:
  agg/repos/community-i686/PKGBUILD
    (from rev 107180, agg/trunk/PKGBUILD)
  agg/repos/community-i686/agg-2.4-depends.patch
    (from rev 107180, agg/trunk/agg-2.4-depends.patch)
  agg/repos/community-i686/agg-2.5-pkgconfig.patch
    (from rev 107180, agg/trunk/agg-2.5-pkgconfig.patch)
  agg/repos/community-i686/autotools.patch
    (from rev 107180, agg/trunk/autotools.patch)
  agg/repos/community-x86_64/PKGBUILD
    (from rev 107180, agg/trunk/PKGBUILD)
  agg/repos/community-x86_64/agg-2.4-depends.patch
    (from rev 107180, agg/trunk/agg-2.4-depends.patch)
  agg/repos/community-x86_64/agg-2.5-pkgconfig.patch
    (from rev 107180, agg/trunk/agg-2.5-pkgconfig.patch)
  agg/repos/community-x86_64/autotools.patch
    (from rev 107180, agg/trunk/autotools.patch)
Deleted:
  agg/repos/community-i686/PKGBUILD
  agg/repos/community-i686/agg-2.4-depends.patch
  agg/repos/community-i686/agg-2.5-pkgconfig.patch
  agg/repos/community-x86_64/PKGBUILD
  agg/repos/community-x86_64/agg-2.4-depends.patch
  agg/repos/community-x86_64/agg-2.5-pkgconfig.patch

------------------------------------------+
 /PKGBUILD                                |   82 ++++++++++++++++++++++++
 /agg-2.4-depends.patch                   |   96 +++++++++++++++++++++++++++++
 /agg-2.5-pkgconfig.patch                 |   20 ++++++
 community-i686/PKGBUILD                  |   34 ----------
 community-i686/agg-2.4-depends.patch     |   48 --------------
 community-i686/agg-2.5-pkgconfig.patch   |   10 ---
 community-i686/autotools.patch           |   11 +++
 community-x86_64/PKGBUILD                |   34 ----------
 community-x86_64/agg-2.4-depends.patch   |   48 --------------
 community-x86_64/agg-2.5-pkgconfig.patch |   10 ---
 community-x86_64/autotools.patch         |   11 +++
 11 files changed, 220 insertions(+), 184 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-03-14 08:12:33 UTC (rev 107180)
+++ community-i686/PKGBUILD	2014-03-14 08:12:44 UTC (rev 107181)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Conder <jonno dot conder at gmail dot com>
-
-pkgname=agg
-pkgver=2.5
-pkgrel=4
-pkgdesc="A High Quality Rendering Engine for C++"
-arch=('i686' 'x86_64')
-url="http://www.antigrain.com/"
-license=('GPL')
-depends=('gcc-libs' 'sdl' 'freetype2')
-provides=('antigrain')
-replaces=('antigrain')
-options=('!makeflags')
-source=("http://www.antigrain.com/${pkgname}-${pkgver}.tar.gz"
-        agg-2.4-depends.patch
-        agg-2.5-pkgconfig.patch)
-md5sums=('0229a488bc47be10a2fee6cf0b2febd6'
-         '22f8e48c137d25038181c86d5e40b110'
-         '43a19a7b1564c591e56c8d09a0fd8da5')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/agg-2.4-depends.patch"
-  patch -Np1 -i "${srcdir}/agg-2.5-pkgconfig.patch"
-  sh ./autogen.sh
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: agg/repos/community-i686/PKGBUILD (from rev 107180, agg/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-03-14 08:12:44 UTC (rev 107181)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jonathan Conder <jonno dot conder at gmail dot com>
+
+pkgname=agg
+pkgver=2.5
+pkgrel=5
+pkgdesc="A High Quality Rendering Engine for C++"
+arch=('i686' 'x86_64')
+url="http://www.antigrain.com/"
+license=('GPL')
+depends=('gcc-libs' 'sdl' 'freetype2')
+provides=('antigrain')
+replaces=('antigrain')
+options=('!makeflags')
+source=("http://www.antigrain.com/${pkgname}-${pkgver}.tar.gz"
+        agg-2.4-depends.patch
+        agg-2.5-pkgconfig.patch
+        autotools.patch)
+md5sums=('0229a488bc47be10a2fee6cf0b2febd6'
+         '22f8e48c137d25038181c86d5e40b110'
+         '43a19a7b1564c591e56c8d09a0fd8da5'
+         'e042231955a8daee5f3cdfa4ee4e866a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}/agg-2.4-depends.patch"
+  patch -p1 -i "${srcdir}/agg-2.5-pkgconfig.patch"
+  patch -p0 -i "${srcdir}/autotools.patch"
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  sh ./autogen.sh
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/agg-2.4-depends.patch
===================================================================
--- community-i686/agg-2.4-depends.patch	2014-03-14 08:12:33 UTC (rev 107180)
+++ community-i686/agg-2.4-depends.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -1,48 +0,0 @@
---- agg-2.4.orig/font_freetype/Makefile.am	2005-10-18 11:45:40.000000000 +0100
-+++ agg-2.4/font_freetype/Makefile.am	2006-07-10 15:11:55.000000000 +0100
-@@ -4,8 +4,9 @@
- agginclude_HEADERS = agg_font_freetype.h
- lib_LTLIBRARIES = libaggfontfreetype.la
- 
--libaggfontfreetype_la_LDFLAGS = -version-info @AGG_LIB_VERSION@ @FREETYPE_LIBS@ 
-+libaggfontfreetype_la_LDFLAGS = -version-info @AGG_LIB_VERSION@
- libaggfontfreetype_la_SOURCES = agg_font_freetype.cpp
- libaggfontfreetype_la_CXXFLAGS = -I$(top_srcdir)/include @FREETYPE_CFLAGS@ 
-+libaggfontfreetype_la_LIBADD = ../src/libagg.la @FREETYPE_LIBS@
- endif
- 
---- agg-2.4.orig/src/platform/sdl/Makefile.am	2005-10-17 23:49:35.000000000 +0100
-+++ agg-2.4/src/platform/sdl/Makefile.am	2006-07-10 15:11:55.000000000 +0100
-@@ -5,6 +5,6 @@
- libaggplatformsdl_la_LDFLAGS = -version-info @AGG_LIB_VERSION@
- libaggplatformsdl_la_SOURCES = agg_platform_support.cpp
- libaggplatformsdl_la_CXXFLAGS = -I$(top_srcdir)/include @SDL_CFLAGS@
--libaggplatformsdl_la_LIBADD = @SDL_LIBS@
-+libaggplatformsdl_la_LIBADD = ../../libagg.la @SDL_LIBS@
- endif
- 
---- agg-2.5.orig/configure.in	2006-10-09 05:06:36.000000000 +0100
-+++ agg-2.5/configure.in	2007-01-07 14:07:39.000000000 +0000
-@@ -122,7 +122,8 @@
- fi
- AM_CONDITIONAL(ENABLE_X11,[test x$no_x = x -a xno != x$enable_platform -a x$win32_host != xyes])
- AC_SUBST(x_includes)
--AC_SUBST(x_libraries)
-+test -n "$x_libraries" && X_LDFLAGS="-L$x_libraries"
-+AC_SUBST(X_LDFLAGS)
- dnl ###############################################
- 
- dnl Settung up library version
---- agg-2.5.orig/src/platform/X11/Makefile.am	2006-12-11 00:59:45.000000000 +0000
-+++ agg-2.5/src/platform/X11/Makefile.am	2007-01-07 14:07:39.000000000 +0000
-@@ -1,8 +1,8 @@
- if ENABLE_X11
- lib_LTLIBRARIES = libaggplatformX11.la
- 
--libaggplatformX11_la_LDFLAGS = -version-info @AGG_LIB_VERSION@  -L at x_libraries@
-+libaggplatformX11_la_LDFLAGS = -version-info @AGG_LIB_VERSION@ @X_LDFLAGS@
- libaggplatformX11_la_SOURCES = agg_platform_support.cpp
- libaggplatformX11_la_CXXFLAGS =  -I$(top_srcdir)/include -I at x_includes@
--libaggplatformX11_la_LIBADD = -lX11
-+libaggplatformX11_la_LIBADD = ../../libagg.la -lX11
- endif

Copied: agg/repos/community-i686/agg-2.4-depends.patch (from rev 107180, agg/trunk/agg-2.4-depends.patch)
===================================================================
--- community-i686/agg-2.4-depends.patch	                        (rev 0)
+++ community-i686/agg-2.4-depends.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -0,0 +1,48 @@
+--- agg-2.4.orig/font_freetype/Makefile.am	2005-10-18 11:45:40.000000000 +0100
++++ agg-2.4/font_freetype/Makefile.am	2006-07-10 15:11:55.000000000 +0100
+@@ -4,8 +4,9 @@
+ agginclude_HEADERS = agg_font_freetype.h
+ lib_LTLIBRARIES = libaggfontfreetype.la
+ 
+-libaggfontfreetype_la_LDFLAGS = -version-info @AGG_LIB_VERSION@ @FREETYPE_LIBS@ 
++libaggfontfreetype_la_LDFLAGS = -version-info @AGG_LIB_VERSION@
+ libaggfontfreetype_la_SOURCES = agg_font_freetype.cpp
+ libaggfontfreetype_la_CXXFLAGS = -I$(top_srcdir)/include @FREETYPE_CFLAGS@ 
++libaggfontfreetype_la_LIBADD = ../src/libagg.la @FREETYPE_LIBS@
+ endif
+ 
+--- agg-2.4.orig/src/platform/sdl/Makefile.am	2005-10-17 23:49:35.000000000 +0100
++++ agg-2.4/src/platform/sdl/Makefile.am	2006-07-10 15:11:55.000000000 +0100
+@@ -5,6 +5,6 @@
+ libaggplatformsdl_la_LDFLAGS = -version-info @AGG_LIB_VERSION@
+ libaggplatformsdl_la_SOURCES = agg_platform_support.cpp
+ libaggplatformsdl_la_CXXFLAGS = -I$(top_srcdir)/include @SDL_CFLAGS@
+-libaggplatformsdl_la_LIBADD = @SDL_LIBS@
++libaggplatformsdl_la_LIBADD = ../../libagg.la @SDL_LIBS@
+ endif
+ 
+--- agg-2.5.orig/configure.in	2006-10-09 05:06:36.000000000 +0100
++++ agg-2.5/configure.in	2007-01-07 14:07:39.000000000 +0000
+@@ -122,7 +122,8 @@
+ fi
+ AM_CONDITIONAL(ENABLE_X11,[test x$no_x = x -a xno != x$enable_platform -a x$win32_host != xyes])
+ AC_SUBST(x_includes)
+-AC_SUBST(x_libraries)
++test -n "$x_libraries" && X_LDFLAGS="-L$x_libraries"
++AC_SUBST(X_LDFLAGS)
+ dnl ###############################################
+ 
+ dnl Settung up library version
+--- agg-2.5.orig/src/platform/X11/Makefile.am	2006-12-11 00:59:45.000000000 +0000
++++ agg-2.5/src/platform/X11/Makefile.am	2007-01-07 14:07:39.000000000 +0000
+@@ -1,8 +1,8 @@
+ if ENABLE_X11
+ lib_LTLIBRARIES = libaggplatformX11.la
+ 
+-libaggplatformX11_la_LDFLAGS = -version-info @AGG_LIB_VERSION@  -L at x_libraries@
++libaggplatformX11_la_LDFLAGS = -version-info @AGG_LIB_VERSION@ @X_LDFLAGS@
+ libaggplatformX11_la_SOURCES = agg_platform_support.cpp
+ libaggplatformX11_la_CXXFLAGS =  -I$(top_srcdir)/include -I at x_includes@
+-libaggplatformX11_la_LIBADD = -lX11
++libaggplatformX11_la_LIBADD = ../../libagg.la -lX11
+ endif

Deleted: community-i686/agg-2.5-pkgconfig.patch
===================================================================
--- community-i686/agg-2.5-pkgconfig.patch	2014-03-14 08:12:33 UTC (rev 107180)
+++ community-i686/agg-2.5-pkgconfig.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -1,10 +0,0 @@
---- agg-2.5/libagg.pc.in.orig	2007-01-07 13:58:28.000000000 +0000
-+++ agg-2.5/libagg.pc.in	2007-01-07 14:02:40.000000000 +0000
-@@ -6,5 +6,6 @@
- Name: libagg
- Description: Anti Grain Geometry - A High Quality Rendering Engine for C++
- Version: @VERSION@
--Libs: -L${libdir} -Wl,-rpath,${exec_prefix}/lib -lagg
-+Requires.private: freetype2
-+Libs: -L${libdir} -lagg
- Cflags: -I${includedir}

Copied: agg/repos/community-i686/agg-2.5-pkgconfig.patch (from rev 107180, agg/trunk/agg-2.5-pkgconfig.patch)
===================================================================
--- community-i686/agg-2.5-pkgconfig.patch	                        (rev 0)
+++ community-i686/agg-2.5-pkgconfig.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -0,0 +1,10 @@
+--- agg-2.5/libagg.pc.in.orig	2007-01-07 13:58:28.000000000 +0000
++++ agg-2.5/libagg.pc.in	2007-01-07 14:02:40.000000000 +0000
+@@ -6,5 +6,6 @@
+ Name: libagg
+ Description: Anti Grain Geometry - A High Quality Rendering Engine for C++
+ Version: @VERSION@
+-Libs: -L${libdir} -Wl,-rpath,${exec_prefix}/lib -lagg
++Requires.private: freetype2
++Libs: -L${libdir} -lagg
+ Cflags: -I${includedir}

Copied: agg/repos/community-i686/autotools.patch (from rev 107180, agg/trunk/autotools.patch)
===================================================================
--- community-i686/autotools.patch	                        (rev 0)
+++ community-i686/autotools.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -0,0 +1,11 @@
+--- configure.in~	2013-02-22 09:30:00.000000000 -0600
++++ configure.in	2013-02-22 09:30:49.030777571 -0600
+@@ -8,7 +8,7 @@
+ AC_PROG_CC
+ AC_PROG_CXX
+ AC_ISC_POSIX
+-AM_C_PROTOTYPES
++#AM_C_PROTOTYPES
+ if test "x$U" != "x"; then
+   AC_MSG_ERROR(Compiler not ANSI compliant)
+ fi

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-03-14 08:12:33 UTC (rev 107180)
+++ community-x86_64/PKGBUILD	2014-03-14 08:12:44 UTC (rev 107181)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Conder <jonno dot conder at gmail dot com>
-
-pkgname=agg
-pkgver=2.5
-pkgrel=4
-pkgdesc="A High Quality Rendering Engine for C++"
-arch=('i686' 'x86_64')
-url="http://www.antigrain.com/"
-license=('GPL')
-depends=('gcc-libs' 'sdl' 'freetype2')
-provides=('antigrain')
-replaces=('antigrain')
-options=('!makeflags')
-source=("http://www.antigrain.com/${pkgname}-${pkgver}.tar.gz"
-        agg-2.4-depends.patch
-        agg-2.5-pkgconfig.patch)
-md5sums=('0229a488bc47be10a2fee6cf0b2febd6'
-         '22f8e48c137d25038181c86d5e40b110'
-         '43a19a7b1564c591e56c8d09a0fd8da5')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/agg-2.4-depends.patch"
-  patch -Np1 -i "${srcdir}/agg-2.5-pkgconfig.patch"
-  sh ./autogen.sh
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: agg/repos/community-x86_64/PKGBUILD (from rev 107180, agg/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-03-14 08:12:44 UTC (rev 107181)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jonathan Conder <jonno dot conder at gmail dot com>
+
+pkgname=agg
+pkgver=2.5
+pkgrel=5
+pkgdesc="A High Quality Rendering Engine for C++"
+arch=('i686' 'x86_64')
+url="http://www.antigrain.com/"
+license=('GPL')
+depends=('gcc-libs' 'sdl' 'freetype2')
+provides=('antigrain')
+replaces=('antigrain')
+options=('!makeflags')
+source=("http://www.antigrain.com/${pkgname}-${pkgver}.tar.gz"
+        agg-2.4-depends.patch
+        agg-2.5-pkgconfig.patch
+        autotools.patch)
+md5sums=('0229a488bc47be10a2fee6cf0b2febd6'
+         '22f8e48c137d25038181c86d5e40b110'
+         '43a19a7b1564c591e56c8d09a0fd8da5'
+         'e042231955a8daee5f3cdfa4ee4e866a')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i "${srcdir}/agg-2.4-depends.patch"
+  patch -p1 -i "${srcdir}/agg-2.5-pkgconfig.patch"
+  patch -p0 -i "${srcdir}/autotools.patch"
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  sh ./autogen.sh
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/agg-2.4-depends.patch
===================================================================
--- community-x86_64/agg-2.4-depends.patch	2014-03-14 08:12:33 UTC (rev 107180)
+++ community-x86_64/agg-2.4-depends.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -1,48 +0,0 @@
---- agg-2.4.orig/font_freetype/Makefile.am	2005-10-18 11:45:40.000000000 +0100
-+++ agg-2.4/font_freetype/Makefile.am	2006-07-10 15:11:55.000000000 +0100
-@@ -4,8 +4,9 @@
- agginclude_HEADERS = agg_font_freetype.h
- lib_LTLIBRARIES = libaggfontfreetype.la
- 
--libaggfontfreetype_la_LDFLAGS = -version-info @AGG_LIB_VERSION@ @FREETYPE_LIBS@ 
-+libaggfontfreetype_la_LDFLAGS = -version-info @AGG_LIB_VERSION@
- libaggfontfreetype_la_SOURCES = agg_font_freetype.cpp
- libaggfontfreetype_la_CXXFLAGS = -I$(top_srcdir)/include @FREETYPE_CFLAGS@ 
-+libaggfontfreetype_la_LIBADD = ../src/libagg.la @FREETYPE_LIBS@
- endif
- 
---- agg-2.4.orig/src/platform/sdl/Makefile.am	2005-10-17 23:49:35.000000000 +0100
-+++ agg-2.4/src/platform/sdl/Makefile.am	2006-07-10 15:11:55.000000000 +0100
-@@ -5,6 +5,6 @@
- libaggplatformsdl_la_LDFLAGS = -version-info @AGG_LIB_VERSION@
- libaggplatformsdl_la_SOURCES = agg_platform_support.cpp
- libaggplatformsdl_la_CXXFLAGS = -I$(top_srcdir)/include @SDL_CFLAGS@
--libaggplatformsdl_la_LIBADD = @SDL_LIBS@
-+libaggplatformsdl_la_LIBADD = ../../libagg.la @SDL_LIBS@
- endif
- 
---- agg-2.5.orig/configure.in	2006-10-09 05:06:36.000000000 +0100
-+++ agg-2.5/configure.in	2007-01-07 14:07:39.000000000 +0000
-@@ -122,7 +122,8 @@
- fi
- AM_CONDITIONAL(ENABLE_X11,[test x$no_x = x -a xno != x$enable_platform -a x$win32_host != xyes])
- AC_SUBST(x_includes)
--AC_SUBST(x_libraries)
-+test -n "$x_libraries" && X_LDFLAGS="-L$x_libraries"
-+AC_SUBST(X_LDFLAGS)
- dnl ###############################################
- 
- dnl Settung up library version
---- agg-2.5.orig/src/platform/X11/Makefile.am	2006-12-11 00:59:45.000000000 +0000
-+++ agg-2.5/src/platform/X11/Makefile.am	2007-01-07 14:07:39.000000000 +0000
-@@ -1,8 +1,8 @@
- if ENABLE_X11
- lib_LTLIBRARIES = libaggplatformX11.la
- 
--libaggplatformX11_la_LDFLAGS = -version-info @AGG_LIB_VERSION@  -L at x_libraries@
-+libaggplatformX11_la_LDFLAGS = -version-info @AGG_LIB_VERSION@ @X_LDFLAGS@
- libaggplatformX11_la_SOURCES = agg_platform_support.cpp
- libaggplatformX11_la_CXXFLAGS =  -I$(top_srcdir)/include -I at x_includes@
--libaggplatformX11_la_LIBADD = -lX11
-+libaggplatformX11_la_LIBADD = ../../libagg.la -lX11
- endif

Copied: agg/repos/community-x86_64/agg-2.4-depends.patch (from rev 107180, agg/trunk/agg-2.4-depends.patch)
===================================================================
--- community-x86_64/agg-2.4-depends.patch	                        (rev 0)
+++ community-x86_64/agg-2.4-depends.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -0,0 +1,48 @@
+--- agg-2.4.orig/font_freetype/Makefile.am	2005-10-18 11:45:40.000000000 +0100
++++ agg-2.4/font_freetype/Makefile.am	2006-07-10 15:11:55.000000000 +0100
+@@ -4,8 +4,9 @@
+ agginclude_HEADERS = agg_font_freetype.h
+ lib_LTLIBRARIES = libaggfontfreetype.la
+ 
+-libaggfontfreetype_la_LDFLAGS = -version-info @AGG_LIB_VERSION@ @FREETYPE_LIBS@ 
++libaggfontfreetype_la_LDFLAGS = -version-info @AGG_LIB_VERSION@
+ libaggfontfreetype_la_SOURCES = agg_font_freetype.cpp
+ libaggfontfreetype_la_CXXFLAGS = -I$(top_srcdir)/include @FREETYPE_CFLAGS@ 
++libaggfontfreetype_la_LIBADD = ../src/libagg.la @FREETYPE_LIBS@
+ endif
+ 
+--- agg-2.4.orig/src/platform/sdl/Makefile.am	2005-10-17 23:49:35.000000000 +0100
++++ agg-2.4/src/platform/sdl/Makefile.am	2006-07-10 15:11:55.000000000 +0100
+@@ -5,6 +5,6 @@
+ libaggplatformsdl_la_LDFLAGS = -version-info @AGG_LIB_VERSION@
+ libaggplatformsdl_la_SOURCES = agg_platform_support.cpp
+ libaggplatformsdl_la_CXXFLAGS = -I$(top_srcdir)/include @SDL_CFLAGS@
+-libaggplatformsdl_la_LIBADD = @SDL_LIBS@
++libaggplatformsdl_la_LIBADD = ../../libagg.la @SDL_LIBS@
+ endif
+ 
+--- agg-2.5.orig/configure.in	2006-10-09 05:06:36.000000000 +0100
++++ agg-2.5/configure.in	2007-01-07 14:07:39.000000000 +0000
+@@ -122,7 +122,8 @@
+ fi
+ AM_CONDITIONAL(ENABLE_X11,[test x$no_x = x -a xno != x$enable_platform -a x$win32_host != xyes])
+ AC_SUBST(x_includes)
+-AC_SUBST(x_libraries)
++test -n "$x_libraries" && X_LDFLAGS="-L$x_libraries"
++AC_SUBST(X_LDFLAGS)
+ dnl ###############################################
+ 
+ dnl Settung up library version
+--- agg-2.5.orig/src/platform/X11/Makefile.am	2006-12-11 00:59:45.000000000 +0000
++++ agg-2.5/src/platform/X11/Makefile.am	2007-01-07 14:07:39.000000000 +0000
+@@ -1,8 +1,8 @@
+ if ENABLE_X11
+ lib_LTLIBRARIES = libaggplatformX11.la
+ 
+-libaggplatformX11_la_LDFLAGS = -version-info @AGG_LIB_VERSION@  -L at x_libraries@
++libaggplatformX11_la_LDFLAGS = -version-info @AGG_LIB_VERSION@ @X_LDFLAGS@
+ libaggplatformX11_la_SOURCES = agg_platform_support.cpp
+ libaggplatformX11_la_CXXFLAGS =  -I$(top_srcdir)/include -I at x_includes@
+-libaggplatformX11_la_LIBADD = -lX11
++libaggplatformX11_la_LIBADD = ../../libagg.la -lX11
+ endif

Deleted: community-x86_64/agg-2.5-pkgconfig.patch
===================================================================
--- community-x86_64/agg-2.5-pkgconfig.patch	2014-03-14 08:12:33 UTC (rev 107180)
+++ community-x86_64/agg-2.5-pkgconfig.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -1,10 +0,0 @@
---- agg-2.5/libagg.pc.in.orig	2007-01-07 13:58:28.000000000 +0000
-+++ agg-2.5/libagg.pc.in	2007-01-07 14:02:40.000000000 +0000
-@@ -6,5 +6,6 @@
- Name: libagg
- Description: Anti Grain Geometry - A High Quality Rendering Engine for C++
- Version: @VERSION@
--Libs: -L${libdir} -Wl,-rpath,${exec_prefix}/lib -lagg
-+Requires.private: freetype2
-+Libs: -L${libdir} -lagg
- Cflags: -I${includedir}

Copied: agg/repos/community-x86_64/agg-2.5-pkgconfig.patch (from rev 107180, agg/trunk/agg-2.5-pkgconfig.patch)
===================================================================
--- community-x86_64/agg-2.5-pkgconfig.patch	                        (rev 0)
+++ community-x86_64/agg-2.5-pkgconfig.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -0,0 +1,10 @@
+--- agg-2.5/libagg.pc.in.orig	2007-01-07 13:58:28.000000000 +0000
++++ agg-2.5/libagg.pc.in	2007-01-07 14:02:40.000000000 +0000
+@@ -6,5 +6,6 @@
+ Name: libagg
+ Description: Anti Grain Geometry - A High Quality Rendering Engine for C++
+ Version: @VERSION@
+-Libs: -L${libdir} -Wl,-rpath,${exec_prefix}/lib -lagg
++Requires.private: freetype2
++Libs: -L${libdir} -lagg
+ Cflags: -I${includedir}

Copied: agg/repos/community-x86_64/autotools.patch (from rev 107180, agg/trunk/autotools.patch)
===================================================================
--- community-x86_64/autotools.patch	                        (rev 0)
+++ community-x86_64/autotools.patch	2014-03-14 08:12:44 UTC (rev 107181)
@@ -0,0 +1,11 @@
+--- configure.in~	2013-02-22 09:30:00.000000000 -0600
++++ configure.in	2013-02-22 09:30:49.030777571 -0600
+@@ -8,7 +8,7 @@
+ AC_PROG_CC
+ AC_PROG_CXX
+ AC_ISC_POSIX
+-AM_C_PROTOTYPES
++#AM_C_PROTOTYPES
+ if test "x$U" != "x"; then
+   AC_MSG_ERROR(Compiler not ANSI compliant)
+ fi




More information about the arch-commits mailing list