Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tclreadline/
Date: Tue, 11 Feb 2020 17:49:06
Message-Id: 1581443321.89f5848bda45c0b070aa213fe35cb5dd4de1341d.tupone@gentoo
1 commit: 89f5848bda45c0b070aa213fe35cb5dd4de1341d
2 Author: Tupone Alfredo <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 11 17:48:41 2020 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 11 17:48:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f5848b
7
8 dev-tcltk/tclreadline: remove old version
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
12
13 dev-tcltk/tclreadline/tclreadline-2.1.0-r4.ebuild | 68 -----------------------
14 1 file changed, 68 deletions(-)
15
16 diff --git a/dev-tcltk/tclreadline/tclreadline-2.1.0-r4.ebuild b/dev-tcltk/tclreadline/tclreadline-2.1.0-r4.ebuild
17 deleted file mode 100644
18 index 1fe69393789..00000000000
19 --- a/dev-tcltk/tclreadline/tclreadline-2.1.0-r4.ebuild
20 +++ /dev/null
21 @@ -1,68 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -AUTOTOOLS_AUTORECONF=true
28 -
29 -inherit autotools-utils multilib toolchain-funcs
30 -
31 -DEBIAN_PATCH=12
32 -
33 -DESCRIPTION="Readline extension to TCL"
34 -HOMEPAGE="http://tclreadline.sf.net/"
35 -SRC_URI="
36 - mirror://sourceforge/${PN}/${P}.tar.gz
37 - mirror://debian/pool/main/t/${PN}/${PN}_${PV}-${DEBIAN_PATCH}.debian.tar.gz"
38 -
39 -SLOT="0"
40 -LICENSE="BSD"
41 -KEYWORDS="~alpha amd64 ppc ~sparc x86 ~amd64-linux ~x86-linux"
42 -IUSE="static-libs"
43 -
44 -DEPEND="
45 - dev-lang/tcl:0=
46 - sys-libs/readline:0="
47 -RDEPEND="${DEPEND}"
48 -
49 -PATCHES=(
50 - "${FILESDIR}"/${P}-gold.patch
51 - "${FILESDIR}"/${P}-alloc-free.patch
52 - "${FILESDIR}"/${P}-rl-executing-macro.patch
53 - "${FILESDIR}"/${P}-rl-history-expand.patch
54 - "${FILESDIR}"/${P}-rl-prompt.patch
55 - "${WORKDIR}"/debian/patches/complete_nontcl.patch
56 - "${WORKDIR}"/debian/patches/completion_matches.patch
57 - "${WORKDIR}"/debian/patches/completion_pbug.patch
58 - "${WORKDIR}"/debian/patches/kfreebsd.patch
59 - "${WORKDIR}"/debian/patches/link.patch
60 - "${WORKDIR}"/debian/patches/manpage.patch
61 - "${WORKDIR}"/debian/patches/memuse.patch
62 -# "${WORKDIR}"/debian/patches/tclrldir.patch
63 - "${WORKDIR}"/debian/patches/tclshpath.patch
64 - "${WORKDIR}"/debian/patches/tinfo.patch
65 - "${WORKDIR}"/debian/patches/varnames.patch
66 -
67 - )
68 -
69 -src_prepare() {
70 - sed \
71 - -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" \
72 - -e "/^TCLRL_LIBDIR/s:lib:$(get_libdir):g" \
73 - -i configure.in || die
74 - mv configure.{in,ac} || die
75 - sed \
76 - -e 's:configure.in:configure.ac:g' \
77 - -i "${WORKDIR}"/debian/patches/* || die
78 - autotools-utils_src_prepare
79 -}
80 -
81 -src_configure() {
82 - local myeconfargs=(
83 - --with-tcl="${EPREFIX}/usr/$(get_libdir)"
84 - --with-tcl-includes="${EPREFIX}/usr/include"
85 - --with-readline-includes="${EPREFIX}/usr/include"
86 - --with-readline-library="-lreadline"
87 - )
88 - autotools-utils_src_configure
89 -}