diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2009-10-22 15:47:00 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2009-10-22 15:47:00 +0000 |
commit | e4c874f238a1ac46cda0b32b200184837cd44c20 (patch) | |
tree | 90d20b6e7e4927d29894d7efd288f2be32b8ae25 /media-plugins/vdr-graphtft | |
parent | don't install the vdpau headers since libvdpau provides those now (diff) | |
download | gentoo-2-e4c874f238a1ac46cda0b32b200184837cd44c20.tar.gz gentoo-2-e4c874f238a1ac46cda0b32b200184837cd44c20.tar.bz2 gentoo-2-e4c874f238a1ac46cda0b32b200184837cd44c20.zip |
added fix for graphtft-fe makefile
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'media-plugins/vdr-graphtft')
-rw-r--r-- | media-plugins/vdr-graphtft/ChangeLog | 6 | ||||
-rw-r--r-- | media-plugins/vdr-graphtft/files/vdr-graphtft-0.3.2.24_makefile.diff | 15 |
2 files changed, 20 insertions, 1 deletions
diff --git a/media-plugins/vdr-graphtft/ChangeLog b/media-plugins/vdr-graphtft/ChangeLog index 0147bf62af3c..2a928eb75edc 100644 --- a/media-plugins/vdr-graphtft/ChangeLog +++ b/media-plugins/vdr-graphtft/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-plugins/vdr-graphtft # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-graphtft/ChangeLog,v 1.19 2009/10/22 15:05:04 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-graphtft/ChangeLog,v 1.20 2009/10/22 15:46:59 hd_brummy Exp $ + + 22 Oct 2009; Joerg Bornkessel <hd_brummy@gentoo.org> + files/vdr-graphtft-0.3.2.24_makefile.diff: + added fix for graphtft-fe makefile 22 Oct 2009; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-graphtft-0.2.2-r1.ebuild, vdr-graphtft-0.3.2.24.ebuild: diff --git a/media-plugins/vdr-graphtft/files/vdr-graphtft-0.3.2.24_makefile.diff b/media-plugins/vdr-graphtft/files/vdr-graphtft-0.3.2.24_makefile.diff index 1c13c3e5cb6b..5e9c3e885f30 100644 --- a/media-plugins/vdr-graphtft/files/vdr-graphtft-0.3.2.24_makefile.diff +++ b/media-plugins/vdr-graphtft/files/vdr-graphtft-0.3.2.24_makefile.diff @@ -37,3 +37,18 @@ diff -Naur graphtft-24.orig/Makefile graphtft-24/Makefile DEFINES += -DHAVE_DFB endif +diff -Naur graphtft-24.orig/graphtft-fe/Makefile graphtft-24/graphtft-fe/Makefile +--- graphtft-24.orig/graphtft-fe/Makefile 2009-10-22 17:39:55.000000000 +0200 ++++ graphtft-24/graphtft-fe/Makefile 2009-10-22 17:41:29.000000000 +0200 +@@ -1,9 +1,9 @@ + + CXX = g++ + CXXFLAGS = -pipe -ggdb -O2 -Wall -W -D_REENTRANT -fPIC +-INCPATH = -I. `Magick++-config --cppflags` ++INCPATH = -I. $(shell Magick++-config --cppflags) + LFLAGS = -Wl,--no-undefined +-LIBS = -lpthread `imlib2-config --libs` `Magick++-config --libs` ++LIBS = -lpthread $(shell imlib2-config --libs) $(shell Magick++-config --libs) + AR = ar + + TARGET = graphtft-fe |