green-pdf-viewer: init at nightly-2014-04-22
Green pdf viewer uses SDL and libpoppler to render pdf.
This commit is contained in:
parent
ea8fb0aee5
commit
e19c5ce2e7
37
pkgs/applications/misc/green-pdfviewer/default.nix
Normal file
37
pkgs/applications/misc/green-pdfviewer/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, poppler, pkgconfig, gdk_pixbuf, SDL, gtk }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "green-pdfviewer-${version}";
|
||||||
|
version = "nightly-2014-04-22";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "schandinat";
|
||||||
|
repo = "green";
|
||||||
|
rev = "0b516aec17915d9742d8e505d2ed383a3bdcea61";
|
||||||
|
sha256 = "0d0lv33flhgsxhc77kfp2avdz5gvml04r8l1j95yjz2rr096lzlj";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ poppler pkgconfig gdk_pixbuf SDL gtk ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
./gdk-libs.patch
|
||||||
|
];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
make PREFIX=$out
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin $out/share/man1
|
||||||
|
make install PREFIX=$out MANDIR=$out/share
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/schandinat/green/;
|
||||||
|
description = "Viewer for PDF files, uses SDL and libpoppler";
|
||||||
|
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.vrthra ];
|
||||||
|
};
|
||||||
|
}
|
55
pkgs/applications/misc/green-pdfviewer/gdk-libs.patch
Normal file
55
pkgs/applications/misc/green-pdfviewer/gdk-libs.patch
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
Common subdirectories: green.old/debian and green.new/debian
|
||||||
|
diff -u green.old/green.h green.new/green.h
|
||||||
|
--- green.old/green.h 2016-06-12 18:11:56.779434416 -0700
|
||||||
|
+++ green.new/green.h 2016-06-12 18:14:38.830557379 -0700
|
||||||
|
@@ -19,7 +19,14 @@
|
||||||
|
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
-#include "glib/poppler.h"
|
||||||
|
+#include "poppler.h"
|
||||||
|
+#include "gdk-pixbuf/gdk-pixbuf.h"
|
||||||
|
+#include "gdk-pixbuf/gdk-pixbuf-core.h"
|
||||||
|
+#include "gdk-pixbuf/gdk-pixbuf-features.h"
|
||||||
|
+#include "gdk-pixbuf/gdk-pixbuf-enum-types.h"
|
||||||
|
+
|
||||||
|
+ #define GREEN_FULLSCREEN 0x0001
|
||||||
|
+
|
||||||
|
|
||||||
|
|
||||||
|
#define GREEN_FULLSCREEN 0x0001
|
||||||
|
diff -u green.old/Makefile green.new/Makefile
|
||||||
|
--- green.old/Makefile 2016-06-12 18:11:56.779434416 -0700
|
||||||
|
+++ green.new/Makefile 2016-06-12 18:13:09.591974048 -0700
|
||||||
|
@@ -17,6 +17,12 @@
|
||||||
|
SDL_CFLAGS := $$(sdl-config --cflags)
|
||||||
|
SDL_LIBS := $$(sdl-config --libs)
|
||||||
|
|
||||||
|
+GDKPIXBUF_CFLAGS := $$(pkg-config gdk-pixbuf-2.0 --cflags)
|
||||||
|
+GDKPIXBUF_LIBS := $$(pkg-config gdk-pixbuf-2.0 --libs)
|
||||||
|
+
|
||||||
|
+GTK_CFLAGS := $$(pkg-config gtk+-2.0 --cflags)
|
||||||
|
+GTK_LIBS := $$(pkg-config gtk+-2.0 --libs)
|
||||||
|
+
|
||||||
|
|
||||||
|
all: green
|
||||||
|
|
||||||
|
@@ -28,13 +34,14 @@
|
||||||
|
$(INSTALL) green.1 $(MANDIR)/man1/
|
||||||
|
|
||||||
|
green: main.o green.o sdl.o
|
||||||
|
- $(CC) $^ $(POPPLER_LIBS) $(SDL_LIBS) -o $@
|
||||||
|
+ $(CC) $^ $(POPPLER_LIBS) $(SDL_LIBS) $(GDKPIXBUF_LIBS) $(GTK_LIBS) -o $@
|
||||||
|
|
||||||
|
main.o: main.c green.h
|
||||||
|
- $(CC) $(CONFIG) $(CFLAGS) -c $< $(POPPLER_CFLAGS) -o $@
|
||||||
|
+ $(CC) $(CONFIG) $(CFLAGS) $(GDKPIXBUF_CFLAGS) -c $< $(POPPLER_CFLAGS) -o $@
|
||||||
|
|
||||||
|
green.o: green.c green.h
|
||||||
|
- $(CC) $(CFLAGS) -c $< $(POPPLER_CFLAGS) -o $@
|
||||||
|
+ $(CC) $(CFLAGS) -c $< $(POPPLER_CFLAGS) $(GDKPIXBUF_CFLAGS) -o $@
|
||||||
|
|
||||||
|
sdl.o: sdl.c green.h
|
||||||
|
- $(CC) $(CFLAGS) -c $< $(POPPLER_CFLAGS) $(SDL_CFLAGS) -o $@
|
||||||
|
+ $(CC) $(CFLAGS) -c $< $(POPPLER_CFLAGS) $(SDL_CFLAGS) $(GDKPIXBUF_CFLAGS) $(GTK_CFLAGS) -o $@
|
||||||
|
+
|
@ -475,6 +475,10 @@ in
|
|||||||
|
|
||||||
grc = callPackage ../tools/misc/grc { };
|
grc = callPackage ../tools/misc/grc { };
|
||||||
|
|
||||||
|
green-pdfviewer = callPackage ../applications/misc/green-pdfviewer {
|
||||||
|
SDL = SDL_sixel;
|
||||||
|
};
|
||||||
|
|
||||||
lastpass-cli = callPackage ../tools/security/lastpass-cli { };
|
lastpass-cli = callPackage ../tools/security/lastpass-cli { };
|
||||||
|
|
||||||
pass = callPackage ../tools/security/pass { };
|
pass = callPackage ../tools/security/pass { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user