Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/setserial/
Date: Sun, 27 May 2018 14:57:01
Message-Id: 1527433010.4e1e010f8251e8a6a742cdc7175e14c837794b4d.zlogene@gentoo
1 commit: 4e1e010f8251e8a6a742cdc7175e14c837794b4d
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 27 14:56:50 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun May 27 14:56:50 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e1e010f
7
8 sys-apps/setserial: Drop old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 sys-apps/setserial/setserial-2.17-r4.ebuild | 47 -----------------------------
13 1 file changed, 47 deletions(-)
14
15 diff --git a/sys-apps/setserial/setserial-2.17-r4.ebuild b/sys-apps/setserial/setserial-2.17-r4.ebuild
16 deleted file mode 100644
17 index bb48f5c974a..00000000000
18 --- a/sys-apps/setserial/setserial-2.17-r4.ebuild
19 +++ /dev/null
20 @@ -1,47 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=0
25 -
26 -inherit eutils toolchain-funcs
27 -
28 -DESCRIPTION="Configure your serial ports with it"
29 -HOMEPAGE="http://setserial.sourceforge.net/"
30 -SRC_URI="ftp://tsx-11.mit.edu/pub/linux/sources/sbin/${P}.tar.gz
31 - ftp://ftp.sunsite.org.uk/Mirrors/tsx-11.mit.edu/pub/linux/sources/sbin/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
36 -IUSE=""
37 -
38 -src_unpack() {
39 - unpack ${A}
40 - cd "${S}"
41 - epatch "${FILESDIR}"/${P}-spelling.patch
42 - epatch "${FILESDIR}"/${P}-manpage-updates.patch
43 - epatch "${FILESDIR}"/${P}-headers.patch
44 - epatch "${FILESDIR}"/${P}-build.patch
45 - epatch "${FILESDIR}"/${P}-hayes-esp.patch #309883
46 - epatch "${FILESDIR}"/${P}-darwin.patch #541536
47 -}
48 -
49 -src_compile() {
50 - tc-export CC
51 - econf || die
52 - emake setserial || die
53 -}
54 -
55 -src_install() {
56 - doman setserial.8
57 - into /
58 - dobin setserial || die
59 -
60 - insinto /etc
61 - doins serial.conf
62 - newinitd "${FILESDIR}"/serial-2.17-r4 serial
63 -
64 - dodoc README
65 - docinto txt
66 - dodoc Documentation/*
67 -}