summaryrefslogtreecommitdiff
path: root/app-emacs/pdf-tools/pdf-tools-1.0.0_pre20220619.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-06-22 01:20:40 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-06-22 01:20:40 +0100
commitcb6b2150348c9dc57c68bcba47bcdb6f20e8e508 (patch)
tree4d89a8eab47a7fbc14b209c7c252724a72c68f8a /app-emacs/pdf-tools/pdf-tools-1.0.0_pre20220619.ebuild
parentc0bcbed1a8a833beeae3ab7541dc9f460ab7cfce (diff)
gentoo auto-resync : 22:06:2023 - 01:20:39
Diffstat (limited to 'app-emacs/pdf-tools/pdf-tools-1.0.0_pre20220619.ebuild')
-rw-r--r--app-emacs/pdf-tools/pdf-tools-1.0.0_pre20220619.ebuild65
1 files changed, 0 insertions, 65 deletions
diff --git a/app-emacs/pdf-tools/pdf-tools-1.0.0_pre20220619.ebuild b/app-emacs/pdf-tools/pdf-tools-1.0.0_pre20220619.ebuild
deleted file mode 100644
index 98646eda6fb5..000000000000
--- a/app-emacs/pdf-tools/pdf-tools-1.0.0_pre20220619.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-COMMIT=fe42da60ad68e806af1677210249caccd7b99451
-
-inherit autotools elisp
-
-DESCRIPTION="Emacs Lisp support library for PDF documents"
-HOMEPAGE="https://github.com/vedang/pdf-tools/"
-SRC_URI="https://github.com/vedang/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}"/${PN}-${COMMIT}
-
-LICENSE="GPL-3+"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-# Cask is a hard dependency for tests; it is ran by helper functions too.
-RESTRICT="test"
-
-BDEPEND="app-emacs/tablist"
-DEPEND="
- app-text/poppler:=[cairo,png]
- dev-libs/glib:2=
- media-libs/freetype:2=
- media-libs/harfbuzz:=
- media-libs/libpng:=
- x11-libs/cairo:=
-"
-RDEPEND="
- ${DEPEND}
- ${BDEPEND}
-"
-
-DOCS=( NEWS README.org )
-SITEFILE="50${PN}-gentoo.el"
-
-src_prepare() {
- elisp_src_prepare
-
- cd server || die
- eautoreconf
-}
-
-src_configure() {
- cd server || die
- econf
-}
-
-src_compile() {
- BYTECOMPFLAGS="-L lisp" elisp-compile lisp/*.el
- elisp-make-autoload-file lisp/${PN}-autoloads.el lisp
-
- emake -C server
-}
-
-src_install() {
- elisp-install ${PN} lisp/*.el*
- elisp-site-file-install "${FILESDIR}"/${SITEFILE}
-
- emake -C server DESTDIR="${D}" install
-
- einstalldocs
-}