Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/splitvt/
Date: Wed, 03 Jan 2018 18:53:08
Message-Id: 1515005568.eeb20aefb13d3228aa8f006b67ab993b7ded684c.zlogene@gentoo
1 commit: eeb20aefb13d3228aa8f006b67ab993b7ded684c
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 18:52:48 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 18:52:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeb20aef
7
8 app-misc/splitvt: Drop old
9
10 Closes: https://bugs.gentoo.org/642168
11 Package-Manager: Portage-2.3.13, Repoman-2.3.3
12
13 app-misc/splitvt/splitvt-1.6.6-r2.ebuild | 46 --------------------------------
14 1 file changed, 46 deletions(-)
15
16 diff --git a/app-misc/splitvt/splitvt-1.6.6-r2.ebuild b/app-misc/splitvt/splitvt-1.6.6-r2.ebuild
17 deleted file mode 100644
18 index a007ffa4eea..00000000000
19 --- a/app-misc/splitvt/splitvt-1.6.6-r2.ebuild
20 +++ /dev/null
21 @@ -1,46 +0,0 @@
22 -# Copyright 1999-2011 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="3"
26 -
27 -inherit eutils toolchain-funcs
28 -
29 -MY_P="${P/-/_}"
30 -DEB_PL="7"
31 -
32 -DESCRIPTION="Splitting terminals into two shells"
33 -HOMEPAGE="http://www.devolution.com/~slouken/projects/splitvt"
34 -SRC_URI="
35 - http://www.devolution.com/~slouken/projects/${PN}/${P}.tar.gz
36 - mirror://debian/pool/main/s/splitvt/${MY_P}-${DEB_PL}.diff.gz"
37 -
38 -LICENSE="GPL-2"
39 -SLOT="0"
40 -KEYWORDS="amd64 ia64 ppc sparc x86"
41 -IUSE=""
42 -
43 -DEPEND=">=sys-libs/ncurses-5.2"
44 -RDEPEND="${DEPEND}"
45 -
46 -src_prepare() {
47 - epatch \
48 - "${WORKDIR}"/${MY_P}-${DEB_PL}.diff \
49 - "${FILESDIR}"/${PV}-ldflags.patch
50 - sed -i \
51 - -e "s:/usr/local/bin:${D}/usr/bin:g" \
52 - -e "s:/usr/local/man/:${D}/usr/share/man/:g" config.c || die
53 -}
54 -
55 -src_configure() {
56 - # upstream has their own weirdo configure script...
57 - ./configure || die "configure failed"
58 - sed -i -e "s:-O2:${CFLAGS}:" -e "s:^CC = gcc:CC = $(tc-getCC):" Makefile || die
59 -}
60 -
61 -src_install() {
62 - dodir /usr/bin /usr/share/man/man1/ || die
63 - make install || die "make install failed"
64 - fperms 755 /usr/bin/xsplitvt || die
65 - dodoc ANNOUNCE BLURB CHANGES NOTES README TODO || die
66 - doman splitvt.1 || die
67 -}