All of lore.kernel.org
 help / color / mirror / Atom feed
From: Koen Kooi <k.kooi@student.utwente.nl>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [PATCH] Put common information in separate file and require it in the recipe.
Date: Sat, 09 Jan 2010 16:35:43 +0100	[thread overview]
Message-ID: <hia7oe$i01$1@ger.gmane.org> (raw)
In-Reply-To: <1263047335.14620.17.camel@mattotaupa.wohnung.familie-menzel.net>

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi,

Your commit message "Put common information in separate file and require
it   in the recipe." doesn't really tell us what it is about, could you
make it look more like the ones we use in OE? e.g:

vdr: put common information in separate file and require it in the recipe.

regards,

Koen


On 09-01-10 15:28, Paul Menzel wrote:
> Dear OE developers,
> 
> 
> could this please be checked in. I build tested it and it saw no
> differences.
> 
> The patch is also attached.
> 
> 
> Thanks,
> 
> Paul
> 
> ---
> This hopefully lessens the effort to add new versions.
> 
> Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
> ---
>  recipes/vdr/files/linkerflags.patch      |  186 ------------------------------
>  recipes/vdr/vdr-1.7.10/linkerflags.patch |  186 ++++++++++++++++++++++++++++++
>  recipes/vdr/vdr.inc                      |    8 ++
>  recipes/vdr/vdr_1.7.10.bb                |   13 +--
>  4 files changed, 197 insertions(+), 196 deletions(-)
>  delete mode 100644 recipes/vdr/files/linkerflags.patch
>  create mode 100644 recipes/vdr/vdr-1.7.10/linkerflags.patch
>  create mode 100644 recipes/vdr/vdr.inc
> 
> diff --git a/recipes/vdr/files/linkerflags.patch b/recipes/vdr/files/linkerflags.patch
> deleted file mode 100644
> index 63c4477..0000000
> --- a/recipes/vdr/files/linkerflags.patch
> +++ /dev/null
> @@ -1,186 +0,0 @@
> -Index: vdr-1.7.10/Makefile
> -===================================================================
> ---- vdr-1.7.10.orig/Makefile	2010-01-07 22:01:54.000000000 +0100
> -+++ vdr-1.7.10/Makefile	2010-01-07 22:02:32.167165564 +0100
> -@@ -20,7 +20,7 @@
> - MANDIR   = $(PREFIX)/share/man
> - BINDIR   = $(PREFIX)/bin
> - LOCDIR   = ./locale
> --LIBS     = -ljpeg -lpthread -ldl -lcap -lrt -lfreetype -lfontconfig
> -+LIBS     = -ljpeg -lpthread -ldl -lcap -lrt -lfreetype -lfontconfig ${LDFLAGS}
> - INCLUDES = ${CFLAGS}
> - 
> - PLUGINDIR= ./PLUGINS
> -Index: vdr-1.7.10/PLUGINS/src/hello/Makefile
> -===================================================================
> ---- vdr-1.7.10.orig/PLUGINS/src/hello/Makefile	2010-01-07 22:01:07.000000000 +0100
> -+++ vdr-1.7.10/PLUGINS/src/hello/Makefile	2010-01-07 22:02:02.240496954 +0100
> -@@ -19,6 +19,7 @@
> - 
> - CXX      ?= g++
> - CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> -+LIBS     ?= ${LDFLAGS}
> - 
> - ### The directory environment:
> - 
> -@@ -95,7 +96,7 @@
> - ### Targets:
> - 
> - libvdr-$(PLUGIN).so: $(OBJS)
> --	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> -+	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> - 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> - 
> - dist: clean
> -Index: vdr-1.7.10/PLUGINS/src/osddemo/Makefile
> -===================================================================
> ---- vdr-1.7.10.orig/PLUGINS/src/osddemo/Makefile	2010-01-07 22:01:07.000000000 +0100
> -+++ vdr-1.7.10/PLUGINS/src/osddemo/Makefile	2010-01-07 22:02:02.240496954 +0100
> -@@ -17,6 +17,7 @@
> - 
> - CXX      ?= g++
> - CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> -+LIBS     ?= ${LDFLAGS}
> - 
> - ### The directory environment:
> - 
> -@@ -68,7 +69,7 @@
> - ### Targets:
> - 
> - libvdr-$(PLUGIN).so: $(OBJS)
> --	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> -+	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> - 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> - 
> - dist: clean
> -Index: vdr-1.7.10/PLUGINS/src/pictures/Makefile
> -===================================================================
> ---- vdr-1.7.10.orig/PLUGINS/src/pictures/Makefile	2010-01-07 22:01:07.000000000 +0100
> -+++ vdr-1.7.10/PLUGINS/src/pictures/Makefile	2010-01-07 22:02:02.240496954 +0100
> -@@ -19,6 +19,7 @@
> - 
> - CXX      ?= g++
> - CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> -+LIBS     ?= ${LDFLAGS}
> - 
> - ### The directory environment:
> - 
> -@@ -95,7 +96,7 @@
> - ### Targets:
> - 
> - libvdr-$(PLUGIN).so: $(OBJS)
> --	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> -+	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> - 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> - 
> - dist: clean
> -Index: vdr-1.7.10/PLUGINS/src/servicedemo/Makefile
> -===================================================================
> ---- vdr-1.7.10.orig/PLUGINS/src/servicedemo/Makefile	2010-01-07 22:01:07.000000000 +0100
> -+++ vdr-1.7.10/PLUGINS/src/servicedemo/Makefile	2010-01-07 22:02:02.240496954 +0100
> -@@ -19,6 +19,7 @@
> - 
> - CXX      ?= g++
> - CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> -+LIBS     ?= ${LDFLAGS}
> - 
> - ### The directory environment:
> - 
> -@@ -70,11 +71,11 @@
> - ### Targets:
> - 
> - libvdr-$(PLUGIN1).so: $(PLUGIN1).o
> --	$(CXX) $(CXXFLAGS) -shared $(PLUGIN1).o -o $@
> -+	$(CXX) $(CXXFLAGS) -shared $(PLUGIN1).o -o $@ $(LIBS)
> - 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> - 
> - libvdr-$(PLUGIN2).so: $(PLUGIN2).o
> --	$(CXX) $(CXXFLAGS) -shared $(PLUGIN2).o -o $@
> -+	$(CXX) $(CXXFLAGS) -shared $(PLUGIN2).o -o $@ $(LIBS)
> - 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> - 
> - dist: clean
> -Index: vdr-1.7.10/PLUGINS/src/skincurses/Makefile
> -===================================================================
> ---- vdr-1.7.10.orig/PLUGINS/src/skincurses/Makefile	2010-01-07 22:01:07.000000000 +0100
> -+++ vdr-1.7.10/PLUGINS/src/skincurses/Makefile	2010-01-07 22:02:02.240496954 +0100
> -@@ -19,6 +19,7 @@
> - 
> - CXX      ?= g++
> - CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> -+LIBS     ?= ${LDFLAGS}
> - 
> - ### The directory environment:
> - 
> -@@ -95,7 +96,7 @@
> - ### Targets:
> - 
> - libvdr-$(PLUGIN).so: $(OBJS)
> --	$(CXX) $(CXXFLAGS) -shared $(OBJS) -lncursesw -o $@
> -+	$(CXX) $(CXXFLAGS) -shared $(OBJS) -lncursesw -o $@ $(LIBS)
> - 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> - 
> - dist: clean
> -Index: vdr-1.7.10/PLUGINS/src/sky/Makefile
> -===================================================================
> ---- vdr-1.7.10.orig/PLUGINS/src/sky/Makefile	2010-01-07 22:01:07.000000000 +0100
> -+++ vdr-1.7.10/PLUGINS/src/sky/Makefile	2010-01-07 22:02:02.240496954 +0100
> -@@ -17,6 +17,7 @@
> - 
> - CXX      ?= g++
> - CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> -+LIBS     ?= ${LDFLAGS}
> - 
> - ### The directory environment:
> - 
> -@@ -68,7 +69,7 @@
> - ### Targets:
> - 
> - libvdr-$(PLUGIN).so: $(OBJS)
> --	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> -+	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> - 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> - 
> - dist: clean
> -Index: vdr-1.7.10/PLUGINS/src/status/Makefile
> -===================================================================
> ---- vdr-1.7.10.orig/PLUGINS/src/status/Makefile	2010-01-07 22:01:07.000000000 +0100
> -+++ vdr-1.7.10/PLUGINS/src/status/Makefile	2010-01-07 22:02:02.240496954 +0100
> -@@ -17,6 +17,7 @@
> - 
> - CXX      ?= g++
> - CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> -+LIBS     ?= ${LDFLAGS}
> - 
> - ### The directory environment:
> - 
> -@@ -68,7 +69,7 @@
> - ### Targets:
> - 
> - libvdr-$(PLUGIN).so: $(OBJS)
> --	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> -+	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> - 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> - 
> - dist: clean
> -Index: vdr-1.7.10/PLUGINS/src/svdrpdemo/Makefile
> -===================================================================
> ---- vdr-1.7.10.orig/PLUGINS/src/svdrpdemo/Makefile	2010-01-07 22:01:07.000000000 +0100
> -+++ vdr-1.7.10/PLUGINS/src/svdrpdemo/Makefile	2010-01-07 22:02:02.240496954 +0100
> -@@ -17,6 +17,7 @@
> - 
> - CXX      ?= g++
> - CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> -+LIBS     ?= ${LDFLAGS}
> - 
> - ### The directory environment:
> - 
> -@@ -68,7 +69,7 @@
> - ### Targets:
> - 
> - libvdr-$(PLUGIN).so: $(OBJS)
> --	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> -+	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> - 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> - 
> - dist: clean
> diff --git a/recipes/vdr/vdr-1.7.10/linkerflags.patch b/recipes/vdr/vdr-1.7.10/linkerflags.patch
> new file mode 100644
> index 0000000..63c4477
> --- /dev/null
> +++ b/recipes/vdr/vdr-1.7.10/linkerflags.patch
> @@ -0,0 +1,186 @@
> +Index: vdr-1.7.10/Makefile
> +===================================================================
> +--- vdr-1.7.10.orig/Makefile	2010-01-07 22:01:54.000000000 +0100
> ++++ vdr-1.7.10/Makefile	2010-01-07 22:02:32.167165564 +0100
> +@@ -20,7 +20,7 @@
> + MANDIR   = $(PREFIX)/share/man
> + BINDIR   = $(PREFIX)/bin
> + LOCDIR   = ./locale
> +-LIBS     = -ljpeg -lpthread -ldl -lcap -lrt -lfreetype -lfontconfig
> ++LIBS     = -ljpeg -lpthread -ldl -lcap -lrt -lfreetype -lfontconfig ${LDFLAGS}
> + INCLUDES = ${CFLAGS}
> + 
> + PLUGINDIR= ./PLUGINS
> +Index: vdr-1.7.10/PLUGINS/src/hello/Makefile
> +===================================================================
> +--- vdr-1.7.10.orig/PLUGINS/src/hello/Makefile	2010-01-07 22:01:07.000000000 +0100
> ++++ vdr-1.7.10/PLUGINS/src/hello/Makefile	2010-01-07 22:02:02.240496954 +0100
> +@@ -19,6 +19,7 @@
> + 
> + CXX      ?= g++
> + CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> ++LIBS     ?= ${LDFLAGS}
> + 
> + ### The directory environment:
> + 
> +@@ -95,7 +96,7 @@
> + ### Targets:
> + 
> + libvdr-$(PLUGIN).so: $(OBJS)
> +-	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> ++	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> + 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> + 
> + dist: clean
> +Index: vdr-1.7.10/PLUGINS/src/osddemo/Makefile
> +===================================================================
> +--- vdr-1.7.10.orig/PLUGINS/src/osddemo/Makefile	2010-01-07 22:01:07.000000000 +0100
> ++++ vdr-1.7.10/PLUGINS/src/osddemo/Makefile	2010-01-07 22:02:02.240496954 +0100
> +@@ -17,6 +17,7 @@
> + 
> + CXX      ?= g++
> + CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> ++LIBS     ?= ${LDFLAGS}
> + 
> + ### The directory environment:
> + 
> +@@ -68,7 +69,7 @@
> + ### Targets:
> + 
> + libvdr-$(PLUGIN).so: $(OBJS)
> +-	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> ++	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> + 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> + 
> + dist: clean
> +Index: vdr-1.7.10/PLUGINS/src/pictures/Makefile
> +===================================================================
> +--- vdr-1.7.10.orig/PLUGINS/src/pictures/Makefile	2010-01-07 22:01:07.000000000 +0100
> ++++ vdr-1.7.10/PLUGINS/src/pictures/Makefile	2010-01-07 22:02:02.240496954 +0100
> +@@ -19,6 +19,7 @@
> + 
> + CXX      ?= g++
> + CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> ++LIBS     ?= ${LDFLAGS}
> + 
> + ### The directory environment:
> + 
> +@@ -95,7 +96,7 @@
> + ### Targets:
> + 
> + libvdr-$(PLUGIN).so: $(OBJS)
> +-	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> ++	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> + 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> + 
> + dist: clean
> +Index: vdr-1.7.10/PLUGINS/src/servicedemo/Makefile
> +===================================================================
> +--- vdr-1.7.10.orig/PLUGINS/src/servicedemo/Makefile	2010-01-07 22:01:07.000000000 +0100
> ++++ vdr-1.7.10/PLUGINS/src/servicedemo/Makefile	2010-01-07 22:02:02.240496954 +0100
> +@@ -19,6 +19,7 @@
> + 
> + CXX      ?= g++
> + CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> ++LIBS     ?= ${LDFLAGS}
> + 
> + ### The directory environment:
> + 
> +@@ -70,11 +71,11 @@
> + ### Targets:
> + 
> + libvdr-$(PLUGIN1).so: $(PLUGIN1).o
> +-	$(CXX) $(CXXFLAGS) -shared $(PLUGIN1).o -o $@
> ++	$(CXX) $(CXXFLAGS) -shared $(PLUGIN1).o -o $@ $(LIBS)
> + 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> + 
> + libvdr-$(PLUGIN2).so: $(PLUGIN2).o
> +-	$(CXX) $(CXXFLAGS) -shared $(PLUGIN2).o -o $@
> ++	$(CXX) $(CXXFLAGS) -shared $(PLUGIN2).o -o $@ $(LIBS)
> + 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> + 
> + dist: clean
> +Index: vdr-1.7.10/PLUGINS/src/skincurses/Makefile
> +===================================================================
> +--- vdr-1.7.10.orig/PLUGINS/src/skincurses/Makefile	2010-01-07 22:01:07.000000000 +0100
> ++++ vdr-1.7.10/PLUGINS/src/skincurses/Makefile	2010-01-07 22:02:02.240496954 +0100
> +@@ -19,6 +19,7 @@
> + 
> + CXX      ?= g++
> + CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> ++LIBS     ?= ${LDFLAGS}
> + 
> + ### The directory environment:
> + 
> +@@ -95,7 +96,7 @@
> + ### Targets:
> + 
> + libvdr-$(PLUGIN).so: $(OBJS)
> +-	$(CXX) $(CXXFLAGS) -shared $(OBJS) -lncursesw -o $@
> ++	$(CXX) $(CXXFLAGS) -shared $(OBJS) -lncursesw -o $@ $(LIBS)
> + 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> + 
> + dist: clean
> +Index: vdr-1.7.10/PLUGINS/src/sky/Makefile
> +===================================================================
> +--- vdr-1.7.10.orig/PLUGINS/src/sky/Makefile	2010-01-07 22:01:07.000000000 +0100
> ++++ vdr-1.7.10/PLUGINS/src/sky/Makefile	2010-01-07 22:02:02.240496954 +0100
> +@@ -17,6 +17,7 @@
> + 
> + CXX      ?= g++
> + CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> ++LIBS     ?= ${LDFLAGS}
> + 
> + ### The directory environment:
> + 
> +@@ -68,7 +69,7 @@
> + ### Targets:
> + 
> + libvdr-$(PLUGIN).so: $(OBJS)
> +-	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> ++	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> + 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> + 
> + dist: clean
> +Index: vdr-1.7.10/PLUGINS/src/status/Makefile
> +===================================================================
> +--- vdr-1.7.10.orig/PLUGINS/src/status/Makefile	2010-01-07 22:01:07.000000000 +0100
> ++++ vdr-1.7.10/PLUGINS/src/status/Makefile	2010-01-07 22:02:02.240496954 +0100
> +@@ -17,6 +17,7 @@
> + 
> + CXX      ?= g++
> + CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> ++LIBS     ?= ${LDFLAGS}
> + 
> + ### The directory environment:
> + 
> +@@ -68,7 +69,7 @@
> + ### Targets:
> + 
> + libvdr-$(PLUGIN).so: $(OBJS)
> +-	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> ++	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> + 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> + 
> + dist: clean
> +Index: vdr-1.7.10/PLUGINS/src/svdrpdemo/Makefile
> +===================================================================
> +--- vdr-1.7.10.orig/PLUGINS/src/svdrpdemo/Makefile	2010-01-07 22:01:07.000000000 +0100
> ++++ vdr-1.7.10/PLUGINS/src/svdrpdemo/Makefile	2010-01-07 22:02:02.240496954 +0100
> +@@ -17,6 +17,7 @@
> + 
> + CXX      ?= g++
> + CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
> ++LIBS     ?= ${LDFLAGS}
> + 
> + ### The directory environment:
> + 
> +@@ -68,7 +69,7 @@
> + ### Targets:
> + 
> + libvdr-$(PLUGIN).so: $(OBJS)
> +-	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
> ++	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ $(LIBS)
> + 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
> + 
> + dist: clean
> diff --git a/recipes/vdr/vdr.inc b/recipes/vdr/vdr.inc
> new file mode 100644
> index 0000000..2e8cf40
> --- /dev/null
> +++ b/recipes/vdr/vdr.inc
> @@ -0,0 +1,8 @@
> +DESCRIPTION = "Video Disk Recorder (VDR) is a digital sat-receiver program using Linux and DVB technologies. It allows one to record MPEG2 streams, as well as output the stream to TV. It is also possible to watch DVDs (hardware accelerated) with some comfort and use an IR remote control."
> +AUTHOR = "Klaus Schmidinger"
> +LICENSE = "GPLv2"
> +HOMEPAGE = "http://www.tvdr.de"
> +
> +DEPENDS = "fontconfig freetype gettext libcap jpeg virtual/libintl"
> +
> +SRC_URI = "ftp://ftp.tvdr.de/vdr/Developer/${P}.tar.bz2"
> diff --git a/recipes/vdr/vdr_1.7.10.bb b/recipes/vdr/vdr_1.7.10.bb
> index a8fa82c..69ca012 100644
> --- a/recipes/vdr/vdr_1.7.10.bb
> +++ b/recipes/vdr/vdr_1.7.10.bb
> @@ -1,13 +1,7 @@
> -DESCRIPTION = "Video Disk Recorder (VDR) is a digital sat-receiver program using Linux and DVB technologies. It allows one to record MPEG2 streams, as well as output the stream to TV. It is also possible to watch DVDs (hardware accelerated) with some comfort and use an IR remote control."
> -AUTHOR = "Klaus Schmidinger"
> -LICENSE = "GPLv2"
> -HOMEPAGE = "http://www.tvdr.de"
> +require vdr.inc
>  PR = "r2"
>  
> -DEPENDS = "fontconfig freetype gettext libcap jpeg virtual/libintl"
> -
> -SRC_URI = "ftp://ftp.tvdr.de/vdr/Developer/${P}.tar.bz2 \
> -           file://fixpaths.patch;patch=1 \
> +SRC_URI += " file://fixpaths.patch;patch=1 \
>             file://cplusplus.patch;patch=1 \
>             file://disable_plugin.patch;patch=1 \
>             file://linkerflags.patch;patch=1 \
> @@ -27,7 +21,7 @@ do_install () {
>                   'VIDEODIR=/var/lib/vdr/video' \
>                   'PLUGINLIBDIR=${PLUGINDIR}' \
>                   'LOCDIR=${datadir}/locale' \
> -                 install 
> +                 install
>  }
>  
>  PACKAGES_DYNAMIC += "vdr-plugin-*"
> @@ -39,4 +33,3 @@ python populate_packages_prepend () {
>  
>  FILES_${PN} = "${bindir}/* /var/lib/vdr/conf/* ${sysconfdir}/*"
>  FILES_${PN}-dbg += "${PLUGINDIR}/.debug/*"
> -
> 
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFLSKJOMkyGM64RGpERAh6rAJ9frGALta8N8FfVcElufMSkPsvofQCfUqXC
0VC8XBqjjXXxXj9sDjik/+8=
=M9AN
-----END PGP SIGNATURE-----




  reply	other threads:[~2010-01-09 15:38 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-09 14:28 [PATCH] Put common information in separate file and require it in the recipe Paul Menzel
2010-01-09 15:35 ` Koen Kooi [this message]
2010-01-09 17:55   ` [PATCH] vdr: " Paul Menzel
2010-01-09 18:27     ` Rolf Leggewie
2010-01-19  9:57     ` Paul Menzel
2010-01-24 10:45       ` Holger Hans Peter Freyther
2010-01-24 13:30         ` Paul Menzel
2010-01-24 14:52           ` Holger Hans Peter Freyther

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='hia7oe$i01$1@ger.gmane.org' \
    --to=k.kooi@student.utwente.nl \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.