mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 22:53:51 +02:00
libreoffice: rebuild against libpoppler 22.06.0
This commit is contained in:
parent
f4a7872834
commit
e70c92c99a
3 changed files with 100 additions and 1 deletions
28
srcpkgs/libreoffice/patches/poppler-22.03.0.patch
Normal file
28
srcpkgs/libreoffice/patches/poppler-22.03.0.patch
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
diff --git a/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
|
||||||
|
index ad6320139..e5f6d9c68 100644
|
||||||
|
--- a/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
|
||||||
|
+++ b/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
|
||||||
|
@@ -138,6 +138,15 @@ int main(int argc, char **argv)
|
||||||
|
_setmode( _fileno( g_binary_out ), _O_BINARY );
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+#if POPPLER_CHECK_VERSION(22, 3, 0)
|
||||||
|
+ PDFDoc aDoc( std::make_unique<GooString>(pFileName),
|
||||||
|
+ GooString(pOwnerPasswordStr),
|
||||||
|
+ GooString(pUserPasswordStr) );
|
||||||
|
+
|
||||||
|
+ PDFDoc aErrDoc( std::make_unique<GooString>(pErrFileName),
|
||||||
|
+ GooString(pOwnerPasswordStr),
|
||||||
|
+ GooString(pUserPasswordStr) );
|
||||||
|
+#else
|
||||||
|
PDFDoc aDoc( pFileName,
|
||||||
|
pOwnerPasswordStr,
|
||||||
|
pUserPasswordStr );
|
||||||
|
@@ -145,6 +154,7 @@ int main(int argc, char **argv)
|
||||||
|
PDFDoc aErrDoc( pErrFileName,
|
||||||
|
pOwnerPasswordStr,
|
||||||
|
pUserPasswordStr );
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
// Check various permissions for aDoc.
|
||||||
|
PDFDoc &rDoc = aDoc.isOk()? aDoc: aErrDoc;
|
71
srcpkgs/libreoffice/patches/poppler-22.04.0.patch
Normal file
71
srcpkgs/libreoffice/patches/poppler-22.04.0.patch
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
# Patch from FreeBSD (https://cgit.freebsd.org/ports/commit/?id=d9b5ef800dbd)
|
||||||
|
|
||||||
|
--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
|
||||||
|
+++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
|
||||||
|
@@ -474,11 +474,17 @@ int PDFOutDev::parseFont( long long nNewId, GfxFont* g
|
||||||
|
{
|
||||||
|
// TODO(P3): Unfortunately, need to read stream twice, since
|
||||||
|
// we must write byte count to stdout before
|
||||||
|
+#if !POPPLER_CHECK_VERSION(22, 3, 0)
|
||||||
|
char* pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef(), &nSize );
|
||||||
|
+#else
|
||||||
|
+ std::optional<std::vector<unsigned char>> pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef() );
|
||||||
|
+#endif
|
||||||
|
if( pBuf )
|
||||||
|
{
|
||||||
|
aNewFont.isEmbedded = true;
|
||||||
|
+#if !POPPLER_CHECK_VERSION(22, 3, 0)
|
||||||
|
gfree(pBuf);
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -492,21 +498,32 @@ void PDFOutDev::writeFontFile( GfxFont* gfxFont ) cons
|
||||||
|
return;
|
||||||
|
|
||||||
|
int nSize = 0;
|
||||||
|
- char* pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef(), &nSize );
|
||||||
|
+#if !POPPLER_CHECK_VERSION(22, 3, 0)
|
||||||
|
+ char* pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef(), &nSize );
|
||||||
|
+#else
|
||||||
|
+ std::optional<std::vector<unsigned char>> pBuf = gfxFont->readEmbFontFile( m_pDoc->getXRef() );
|
||||||
|
+#endif
|
||||||
|
if( !pBuf )
|
||||||
|
return;
|
||||||
|
|
||||||
|
// ---sync point--- see SYNC STREAMS above
|
||||||
|
fflush(stdout);
|
||||||
|
-
|
||||||
|
+#if !POPPLER_CHECK_VERSION(22, 3, 0)
|
||||||
|
if( fwrite(pBuf, sizeof(char), nSize, g_binary_out) != static_cast<size_t>(nSize) )
|
||||||
|
+#else
|
||||||
|
+ if( fwrite(reinterpret_cast<char*>(pBuf.value().data()), sizeof(char), nSize, g_binary_out) != static_cast<size_t>(nSize) )
|
||||||
|
+#endif
|
||||||
|
{
|
||||||
|
- gfree(pBuf);
|
||||||
|
+#if !POPPLER_CHECK_VERSION(22, 3, 0)
|
||||||
|
+ gfree(pBuf);
|
||||||
|
+#endif
|
||||||
|
exit(1); // error
|
||||||
|
}
|
||||||
|
// ---sync point--- see SYNC STREAMS above
|
||||||
|
fflush(g_binary_out);
|
||||||
|
- gfree(pBuf);
|
||||||
|
+#if !POPPLER_CHECK_VERSION(22, 3, 0)
|
||||||
|
+ gfree(pBuf);
|
||||||
|
+#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#if POPPLER_CHECK_VERSION(0, 83, 0)
|
||||||
|
@@ -759,7 +776,11 @@ void PDFOutDev::updateFont(GfxState *state)
|
||||||
|
{
|
||||||
|
assert(state);
|
||||||
|
|
||||||
|
+#if !POPPLER_CHECK_VERSION(22, 3, 0)
|
||||||
|
GfxFont *gfxFont = state->getFont();
|
||||||
|
+#else
|
||||||
|
+ GfxFont *gfxFont = state->getFont().get();
|
||||||
|
+#endif
|
||||||
|
if( !gfxFont )
|
||||||
|
return;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'libreoffice'
|
# Template file for 'libreoffice'
|
||||||
pkgname=libreoffice
|
pkgname=libreoffice
|
||||||
version=7.3.3.2
|
version=7.3.3.2
|
||||||
revision=2
|
revision=3
|
||||||
build_style=meta
|
build_style=meta
|
||||||
make_build_target="build-nocheck"
|
make_build_target="build-nocheck"
|
||||||
nocross="Several dependencies are nocross=yes"
|
nocross="Several dependencies are nocross=yes"
|
||||||
|
|
Loading…
Add table
Reference in a new issue