diff options
author | Juergen Lock <nox@FreeBSD.org> | 2011-03-26 19:13:50 +0000 |
---|---|---|
committer | Juergen Lock <nox@FreeBSD.org> | 2011-03-26 19:13:50 +0000 |
commit | 0f8592a752db2bbc69de164655d2e424f89e9504 (patch) | |
tree | e7b1c67b8a8e1e4843448b489e02302140c1ad9a /multimedia/vdr/files/patch-z-Makefile | |
parent | Tntnet is a modular, multithreaded, high performance webapplicationserver (diff) |
Preliminary port of the vdr development branch, use at your own risk! :)
See vdr/webcamd dvb thread(s) on the freebsd-multimedia list for FreeBSD
notes, some links are here:
http://people.freebsd.org/~nox/dvb/
and see these links for general vdr info:
http://www.linuxtv.org/vdrwiki/index.php/Main_Page
http://www.vdr-portal.de/
WWW: http://www.tvdr.de/
Diffstat (limited to 'multimedia/vdr/files/patch-z-Makefile')
-rw-r--r-- | multimedia/vdr/files/patch-z-Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/multimedia/vdr/files/patch-z-Makefile b/multimedia/vdr/files/patch-z-Makefile new file mode 100644 index 000000000000..60b41fde1ed6 --- /dev/null +++ b/multimedia/vdr/files/patch-z-Makefile @@ -0,0 +1,49 @@ +Index: Makefile +@@ -25,6 +25,7 @@ PREFIX ?= /usr/local + MANDIR = $(PREFIX)/share/man + BINDIR = $(PREFIX)/bin + LOCDIR = ./locale ++INCDIR = $(PREFIX)/include + ifdef FREEBSD + INCLUDES = -I/usr/local/include/freetype2 + LIBDIRS = -L/usr/local/lib +@@ -177,7 +178,7 @@ clean-plugins: + + # Install the files: + +-install: install-bin install-conf install-doc install-plugins install-i18n ++install: install-bin install-doc install-plugins install-header + + # VDR binary: + +@@ -192,7 +193,6 @@ endif + # Configuration files: + + install-conf: +- @mkdir -p $(DESTDIR)$(VIDEODIR) + @if [ ! -d $(DESTDIR)$(CONFDIR) ]; then\ + mkdir -p $(DESTDIR)$(CONFDIR);\ + cp *.conf $(DESTDIR)$(CONFDIR);\ +@@ -208,7 +208,7 @@ install-doc: + + # Plugins: + +-install-plugins: plugins ++install-plugins: #plugins + @mkdir -p $(DESTDIR)$(PLUGINLIBDIR) + ifdef FREEBSD + @cp -f $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) $(DESTDIR)$(PLUGINLIBDIR) +@@ -216,6 +216,13 @@ else + @cp --remove-destination $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) $(DESTDIR)$(PLUGINLIBDIR) + endif + ++# Header files: ++ ++install-header: ++ @mkdir -p $(DESTDIR)$(INCDIR)/vdr $(DESTDIR)$(INCDIR)/vdr/libsi ++ @cp *.h Make.config Make.global $(DESTDIR)$(INCDIR)/vdr ++ @cp libsi/*.h $(DESTDIR)$(INCDIR)/vdr/libsi ++ + # Source documentation: + + srcdoc: |