app-emacs/pymacs: Drop old

Package-Manager: portage-2.3.1
This commit is contained in:
Pacho Ramos
2016-10-09 09:49:43 +02:00
parent b55bb13052
commit 2082ee15bb
2 changed files with 0 additions and 54 deletions

View File

@@ -1,2 +1 @@
DIST Pymacs-0.23.tar.gz 92161 SHA256 eb419e307c9670ac5ad76de44c8803bd91ff0a1a8d6b6035fa4d0427a85f5163 SHA512 c07cc4fa75ca3f03a517563172c9647f1f8402bfe7cdac45aa285c838fe15ab4fd08cb2a0364d985fc4d0ad5670436c4f2c6fa81efe1424b10d2a430699308d3 WHIRLPOOL 5477b4eaf9c134f80101be9a83c2285d8105aeaa189e4f39190abb024073e942c660fe74eff2defb42f5422d64fe73cb24b8e206c53f624aec0e1a9795db4f58
DIST pymacs-0.25.tar.gz 120597 SHA256 51dc21b33316e6e244e78e5e88d8ae9a88afc0dcef34ba702ea9be589839bec2 SHA512 e17f7ee754413e21403d23894ee263fb0edae180a60c746b02cf101b2f0c782116e7bb61215bd0a8c689a991e211d780d220d4672b58f43108e7218a6f0c8dc0 WHIRLPOOL 90a211d1b62387e05deb759786fd82eeed23c1800307f1345e1c06c579c0455480433c24fda34a881f887595e169076a6ed56f6e8774933f0431aa96940e0152

View File

@@ -1,53 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="3"
PYTHON_DEPEND="2"
inherit distutils elisp
MY_P=Pymacs-${PV}
DESCRIPTION="A tool that allows both-side communication beetween Python and Emacs Lisp"
HOMEPAGE="http://pymacs.progiciels-bpi.ca/"
SRC_URI="http://pymacs.progiciels-bpi.ca/archives/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm hppa ia64 ppc ppc64 s390 sh x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc"
# additional doc? dependencies for multirow.sty and aeguill.sty (bug 247703)
DEPEND="
doc? ( dev-python/docutils
virtual/latex-base
dev-texlive/texlive-latexextra
dev-texlive/texlive-langfrench )"
RDEPEND=""
SITEFILE=50${PN}-gentoo.el
S="${WORKDIR}/${MY_P}"
pkg_setup() {
python_set_active_version 2
}
src_compile() {
emake || die "emake failed"
elisp-compile pymacs.el || die "elisp-compile failed"
if use doc; then
VARTEXFONTS="${T}"/fonts \
emake pymacs.pdf || die "emake pymacs.pdf failed"
fi
}
src_install() {
elisp_src_install
distutils_src_install
dodoc THANKS pymacs.rst
if use doc; then
insinto /usr/share/doc/${PF}
doins pymacs.pdf
fi
}