diff options
author | Zac Medico <zmedico@gentoo.org> | 2015-09-13 15:29:32 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2015-09-13 16:39:52 -0700 |
commit | 9cc46cc38b8b31bbf05e3517602292b2592cabf3 (patch) | |
tree | 0c47af8952201a71ab909a48c7e7984880f34c4f /app-text/podofo | |
parent | dev-util/qbs: version bump (diff) | |
download | gentoo-9cc46cc38b8b31bbf05e3517602292b2592cabf3.tar.gz gentoo-9cc46cc38b8b31bbf05e3517602292b2592cabf3.tar.bz2 gentoo-9cc46cc38b8b31bbf05e3517602292b2592cabf3.zip |
app-text/podofo: fix 0.9.3 tests for bug 556962
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-text/podofo')
-rw-r--r-- | app-text/podofo/podofo-0.9.3.ebuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app-text/podofo/podofo-0.9.3.ebuild b/app-text/podofo/podofo-0.9.3.ebuild index 767b20921ca6..8d0b76fe4496 100644 --- a/app-text/podofo/podofo-0.9.3.ebuild +++ b/app-text/podofo/podofo-0.9.3.ebuild @@ -33,6 +33,10 @@ DOCS="AUTHORS ChangeLog TODO" src_prepare() { local x sed_args + # bug 556962 + sed -i -e 's|Decrypt( pEncryptedBuffer, nOutputLen, pDecryptedBuffer, m_lLen );|Decrypt( pEncryptedBuffer, (pdf_long)nOutputLen, pDecryptedBuffer, (pdf_long\&)m_lLen );|' \ + test/unit/EncryptTest.cpp || die + sed -i \ -e "s:LIBDIRNAME \"lib\":LIBDIRNAME \"$(get_libdir)\":" \ -e "s:LIBIDN_FOUND:HAVE_LIBIDN:g" \ |