summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2019-12-15 12:48:52 +0100
committerPacho Ramos <pacho@gentoo.org>2019-12-15 12:48:52 +0100
commit5ff198ab386b9ee6e1a16977233b7610ac4cf81d (patch)
treec3786851c8893935de3614cb5e9ba0a84f861554 /dev-util/desktop-file-utils/desktop-file-utils-0.23.ebuild
parentmedia-libs/libdv: Add missing SDL dependency (diff)
downloadgentoo-5ff198ab386b9ee6e1a16977233b7610ac4cf81d.tar.gz
gentoo-5ff198ab386b9ee6e1a16977233b7610ac4cf81d.tar.bz2
gentoo-5ff198ab386b9ee6e1a16977233b7610ac4cf81d.zip
dev-util/desktop-file-utils: Drop old
Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'dev-util/desktop-file-utils/desktop-file-utils-0.23.ebuild')
-rw-r--r--dev-util/desktop-file-utils/desktop-file-utils-0.23.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/dev-util/desktop-file-utils/desktop-file-utils-0.23.ebuild b/dev-util/desktop-file-utils/desktop-file-utils-0.23.ebuild
deleted file mode 100644
index ee934c0aec31..000000000000
--- a/dev-util/desktop-file-utils/desktop-file-utils-0.23.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit elisp-common eutils
-
-DESCRIPTION="Command line utilities to work with desktop menu entries"
-HOMEPAGE="https://freedesktop.org/wiki/Software/desktop-file-utils"
-SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.xz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 ~sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="emacs"
-
-RDEPEND=">=dev-libs/glib-2.12:2
- emacs? ( virtual/emacs )"
-DEPEND="${RDEPEND}
- app-arch/xz-utils
- virtual/pkgconfig"
-
-SITEFILE=50${PN}-gentoo.el
-
-DOCS=( AUTHORS ChangeLog HACKING NEWS README )
-
-src_prepare() {
- default
- sed -i -e '/SUBDIRS =/s:misc::' Makefile.in || die
-}
-
-src_configure() {
- econf "$(use_with emacs lispdir "${SITELISP}"/${PN})"
-}
-
-src_compile() {
- default
- use emacs && elisp-compile misc/desktop-entry-mode.el
-}
-
-src_install() {
- default
- if use emacs; then
- elisp-install ${PN} misc/*.el misc/*.elc || die
- elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die
- fi
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}