diff options
author | Jouni Kosonen <jouni.kosonen@tukesoft.com> | 2019-11-14 04:41:11 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-11-30 09:48:55 +0200 |
commit | eeb6c074063a27a661e8cd619516ab6a7160df3e (patch) | |
tree | 44b89748e5996c98d60ab6c645569291e0a8f03b /app-text/llpp/llpp-30_p20190316.ebuild | |
parent | dev-python/pgspecial: bump to version 1.11.7. (diff) | |
download | gentoo-eeb6c074063a27a661e8cd619516ab6a7160df3e.tar.gz gentoo-eeb6c074063a27a661e8cd619516ab6a7160df3e.tar.bz2 gentoo-eeb6c074063a27a661e8cd619516ab6a7160df3e.zip |
app-text/llpp: snapshot version 30<v<31
llpp v30 doesn't build against >=mupdf-1.15 and v31 against ocaml<4.08
Closes: https://bugs.gentoo.org/685784
Closes: https://bugs.gentoo.org/699388
Signed-off-by: Jouni Kosonen <jouni.kosonen@tukesoft.com>
Closes: https://github.com/gentoo/gentoo/pull/13640
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-text/llpp/llpp-30_p20190316.ebuild')
-rw-r--r-- | app-text/llpp/llpp-30_p20190316.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/app-text/llpp/llpp-30_p20190316.ebuild b/app-text/llpp/llpp-30_p20190316.ebuild new file mode 100644 index 000000000000..019afdb0c6c4 --- /dev/null +++ b/app-text/llpp/llpp-30_p20190316.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs xdg-utils + +DESCRIPTION="Graphical PDF viewer which aims to superficially resemble less(1)" +HOMEPAGE="https://github.com/moosotc/llpp" +MY_COMMIT="1f3ae0843d5877a0e599d8411d433bd9b0078157" +SRC_URI="https://github.com/moosotc/llpp/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="+ocamlopt static-libs" + +RDEPEND=">=app-text/mupdf-1.15.0:0=[static-libs=] + media-libs/openjpeg:2[static-libs=] + media-libs/fontconfig:1.0[static-libs=] + media-libs/freetype:2[static-libs=] + media-libs/jbig2dec:=[static-libs=] + sys-libs/zlib[static-libs=] + virtual/jpeg:0[static-libs=] + x11-libs/libX11[static-libs=] + x11-misc/xsel" +DEPEND="${RDEPEND} + app-text/asciidoc + virtual/pkgconfig + static-libs? ( + app-arch/bzip2[static-libs] + media-libs/libXcm[static-libs] + x11-libs/libXau[static-libs] + x11-libs/libXdmcp[static-libs] + x11-libs/libXmu[static-libs] ) + >=dev-lang/ocaml-4.05[ocamlopt?] + dev-ml/lablgl[glut,ocamlopt?]" + +RESTRICT="!ocamlopt? ( strip )" + +PATCHES=( "${FILESDIR}"/${PN}-30-keysym.patch ) + +S="${WORKDIR}"/"${PN}"-"${MY_COMMIT}" + +src_prepare() { + default + + # use custom makefile from archlinux with minor changes + cp "${FILESDIR}"/Makefile "${S}" || die + + # re-add desktop file removed upstream + cp "${FILESDIR}"/llpp.desktop "${S}"/misc || die +} + +src_compile() { + emake -j1 VERSION=${PV} CC="$(tc-getCC)" LIBDIR="/usr/$(get_libdir)" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" install + dodoc README Thanks +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_mimeinfo_database_update +} |