mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-misc/cdargs: drop 1.35-r2
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
@@ -1,2 +1 @@
|
||||
DIST cdargs-1.35.tar.gz 74103 BLAKE2B 06fa5b4ed7c00dbcceeda28c2b02dd46431748434a692f3690885dc1141764e8aacef2e09cab57cf1baab32cb66c5c39a846a09fd6381723f47cd8dc98c8584f SHA512 13df5d18de6f62309a0ecccc0dd95508d81d1955f87cfd2962360d3b7d74c5cdc2b0d2e00f7a4f1e7556bfbcbd3e2ecf4847a1a48ab47442e6d2d5a36db0cf0c
|
||||
DIST cdargs-2.1.tar.gz 127945 BLAKE2B a0020de2f019985f40910ef95aeb189cd3bd6e701aab986e2b13ff3a43965c29bc940e7553ea8722147e2fd8e21ce852d075561832a9e4972cf9d3ba8ee043ba SHA512 5914d5d2096386db523115c0c6d26f6f328287e0e87d829e19217ab9ef34f70d7fd6af14d73d5020f61d90342ce8ec81a1364000531d2715ef6ba961ae0d222a
|
||||
|
||||
@@ -1,73 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools elisp-common
|
||||
|
||||
DESCRIPTION="Bookmarks and browser for the shell builtin cd command"
|
||||
HOMEPAGE="http://www.skamphausen.de/cgi-bin/ska/CDargs"
|
||||
SRC_URI="http://www.skamphausen.de/software/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ppc ~sparc x86"
|
||||
IUSE="emacs"
|
||||
|
||||
DEPEND="
|
||||
sys-libs/ncurses:0=
|
||||
emacs? ( >=app-editors/emacs-23.1:* )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
SITEFILE=50${PN}-gentoo.el
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-format_security.patch
|
||||
"${FILESDIR}"/${P}-tinfo.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
mv configure.{in,ac} || die
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
default
|
||||
|
||||
use emacs && elisp-compile contrib/cdargs.el
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
cd "${S}"/contrib || die
|
||||
insinto /usr/share/cdargs
|
||||
doins cdargs-bash.sh cdargs-tcsh.csh
|
||||
|
||||
if use emacs ; then
|
||||
elisp-install ${PN} cdargs.{el,elc}
|
||||
elisp-site-file-install "${FILESDIR}"/${SITEFILE}
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
use emacs && elisp-site-regen
|
||||
|
||||
echo
|
||||
elog "Add the following line to your ~/.bashrc to enable cdargs helper"
|
||||
elog "functions/aliases in your environment:"
|
||||
elog "[ -f /usr/share/cdargs/cdargs-bash.sh ] && \\ "
|
||||
elog " source /usr/share/cdargs/cdargs-bash.sh"
|
||||
elog
|
||||
elog "Users of tcshell will find cdargs-tcsh.csh there with a reduced"
|
||||
elog "feature set. See INSTALL file in the documentation directory for"
|
||||
elog "more information."
|
||||
echo
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
use emacs && elisp-site-regen
|
||||
}
|
||||
Reference in New Issue
Block a user