initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

51
epdfview/PKGBUILD Normal file
View File

@@ -0,0 +1,51 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=epdfview
pkgver=0.1.8
pkgrel=11
pkgdesc='Lightweight PDF document viewer'
url='http://freecode.com/projects/epdfview'
arch=('i686' 'x86_64')
license=('GPL-1')
depends=('poppler-glib' 'desktop-file-utils' 'hicolor-icon-theme' 'gtk2')
makedepends=('pkgconfig')
source=(ftp://ftp.slackware.com/.1/blfs/conglomeration/epdfview/$pkgname-$pkgver.tar.bz2
epdfview-0.1.8-swap-the-blue-and-red-channel.patch
epdfview-0.1.8-glib2-headers.patch
epdfview-0.1.8-modern-cups.patch
epdfview-0.1.8-pictures.patch)
sha512sums=('e81ca39158ed77040a00b69cdbbea4726a1bbf4885a096aaa3dfc4c64d0cbcadabdc69c559bb14d23c2bf7fc8244799176d2c2d5689ab670c13237edc10e8e40'
'2cebfe5697347762c34a9fa51bc9688c6a534a70a7990c2496ec63a10ac862095170da91eed450c8c68d3b4a6fbc17666f7a10a9cf3f2348dfe5f3b6e4e7ae9c'
'7047e09ad47ad8ce09df0869b7881cffd85900599acbec7d1ffea24e5efcfbc4cffd2084f0af981956b9681419ca81408a40a6aeae6edaa9f2b0637a47741359'
'5774b4b18dae74e16bc52bf51e9e08fdd9292a9a4208d9d8e6baf49e0844535c3794370d407177d4bf3390e6a1d9a5b62118e5d9ca1c346d6d0629dff272fc52'
'741cc74fc58b3871fc24461de3174f3369a47071bca47d6240772fe73d9f8a53de1b6876e07d574074fd610cf21f54499f676297b2588ca9a01d3bf4f7f1c58c')
prepare() {
cd $pkgname-$pkgver
sed -i 's/icon_epdfview-48/epdfview/' data/epdfview.desktop
# Use xdg-open as default browser.
sed -r '/DEFAULT_EXTERNAL_BROWSER_COMMAND_LINE/s/firefox[^ ]*/xdg-open/' -i src/Config.cxx
patch -p1 -i ../epdfview-0.1.8-swap-the-blue-and-red-channel.patch
patch -p1 -i ../epdfview-0.1.8-glib2-headers.patch # FS#30116
patch -p1 -i ../epdfview-0.1.8-modern-cups.patch # FS#32511
patch -p1 -i ../epdfview-0.1.8-pictures.patch # FS#44936
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
for size in 24 32 48; do
install -Dm644 data/icon_$pkgname-$size.png \
"$pkgdir"/usr/share/icons/hicolor/${size}x${size}/apps/$pkgname.png
done
install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname COPYING
}

View File

@@ -0,0 +1,12 @@
diff --git a/src/gtk/StockIcons.h b/src/gtk/StockIcons.h
index c142a7a..58fcf2e 100644
--- a/src/gtk/StockIcons.h
+++ b/src/gtk/StockIcons.h
@@ -18,7 +18,7 @@
#if !defined (__STOCK_ICONS_H__)
#define __STOCK_ICONS_H__
-#include <glib/gmacros.h>
+#include <glib.h>
G_BEGIN_DECLS

View File

@@ -0,0 +1,73 @@
diff -Naur epdfview-0.1.8.orig/src/PrintPter.cxx epdfview-0.1.8/src/PrintPter.cxx
--- epdfview-0.1.8.orig/src/PrintPter.cxx 2011-05-28 11:25:01.000000000 +0100
+++ epdfview-0.1.8/src/PrintPter.cxx 2012-08-22 20:11:46.362436859 +0100
@@ -22,6 +22,40 @@
#include <locale.h>
#include "epdfview.h"
+#if (CUPS_VERSION_MAJOR > 1) || (CUPS_VERSION_MINOR > 5)
+#define HAVE_CUPS_1_6 1
+#endif
+
+#ifndef HAVE_CUPS_1_6
+inline int ippGetInteger (ipp_attribute_t *attr, int element)
+{
+ return (attr->values[element].integer);
+}
+
+inline const char * ippGetString (ipp_attribute_t *attr,
+ int element,
+ const char **language /*UNUSED*/)
+{
+ return (attr->values[element].string.text);
+}
+
+inline int ippSetOperation (ipp_t *ipp, ipp_op_t op)
+{
+ if (!ipp)
+ return (0);
+ ipp->request.op.operation_id = op;
+ return (1);
+}
+
+inline int ippSetRequestId (ipp_t *ipp, int request_id)
+{
+ if (!ipp)
+ return (0);
+ ipp->request.any.request_id = request_id;
+ return (1);
+}
+#endif
+
using namespace ePDFView;
// Structures
@@ -380,8 +414,8 @@
ipp_t *request = ippNew ();
- request->request.op.operation_id = IPP_GET_PRINTER_ATTRIBUTES;
- request->request.op.request_id = 1;
+ ippSetOperation(request, IPP_GET_PRINTER_ATTRIBUTES);
+ ippSetRequestId(request, 1);
ippAddString (request, IPP_TAG_OPERATION, IPP_TAG_CHARSET,
"attributes-charset", NULL, "utf-8");
@@ -403,7 +437,7 @@
ippFindAttribute (answer, "printer-state", IPP_TAG_ZERO);
if ( NULL != state )
{
- switch (state->values[0].integer)
+ switch (ippGetInteger (state, 0))
{
case IPP_PRINTER_IDLE:
attributes->state = g_strdup (_("Idle"));
@@ -425,7 +459,7 @@
ippFindAttribute (answer, "printer-location", IPP_TAG_ZERO);
if ( NULL != location )
{
- attributes->location = g_strdup (location->values[0].string.text);
+ attributes->location = g_strdup (ippGetString (location, 0, NULL));
}
ippDelete (answer);

View File

@@ -0,0 +1,13 @@
diff --git a/src/PDFDocument.cxx b/src/PDFDocument.cxx
index df5d75f..782f806 100644
--- a/src/PDFDocument.cxx
+++ b/src/PDFDocument.cxx
@@ -616,7 +616,7 @@ PDFDocument::renderPage (gint pageNum)
#if defined (HAVE_POPPLER_0_17_0)
cairo_surface_t *surface = cairo_image_surface_create_for_data (
renderedPage->getData (),
- CAIRO_FORMAT_RGB24, width, height,
+ CAIRO_FORMAT_ARGB32, width, height,
renderedPage->getRowStride ());
cairo_t *context = cairo_create (surface);
cairo_save(context);

View File

@@ -0,0 +1,59 @@
From d30496f52b85f82947bd07b9bd60f8482843ece8 Mon Sep 17 00:00:00 2001
From: jordi <jordi@cb4bfb15-1111-0410-82e2-95233c8f1c7e>
Date: Tue, 5 Jul 2011 09:23:38 +0000
Subject: [PATCH 1/2] When using Poppler 0.17.0, I needed to swap the blue and
red channels, otherwise the colors (other than black
and white) looked wierd.
git-svn-id: svn://svn.emma-soft.com/epdfview/trunk@367 cb4bfb15-1111-0410-82e2-95233c8f1c7e
---
src/PDFDocument.cxx | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/src/PDFDocument.cxx b/src/PDFDocument.cxx
index df5d75f..63b3513 100644
--- a/src/PDFDocument.cxx
+++ b/src/PDFDocument.cxx
@@ -20,6 +20,7 @@
#include <time.h>
#include <poppler.h>
#include <unistd.h>
+#include <algorithm>
#include "epdfview.h"
using namespace ePDFView;
@@ -33,6 +34,24 @@ static PageLayout convertPageLayout (gint pageLayout);
static PageMode convertPageMode (gint pageMode);
static gchar *getAbsoluteFileName (const gchar *fileName);
+namespace
+{
+ void
+ convert_bgra_to_rgba (guint8 *data, int width, int height)
+ {
+ using std::swap;
+
+ for (int y = 0; y < height; y++)
+ {
+ for (int x = 0; x < width; x++)
+ {
+ swap(data[0], data[2]);
+ data += 4;
+ }
+ }
+ }
+}
+
///
/// @brief Constructs a new PDFDocument object.
///
@@ -650,6 +669,7 @@ PDFDocument::renderPage (gint pageNum)
poppler_page_render (page, context);
cairo_destroy(context);
cairo_surface_destroy (surface);
+ convert_bgra_to_rgba(renderedPage->getData (), width, height);
#else // !HAVE_POPPLER_0_17_0
// Create the pixbuf from the data and render to it.
GdkPixbuf *pixbuf = gdk_pixbuf_new_from_data (renderedPage->getData (),
--
1.7.7