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/bottlerocket/
Date: Thu, 17 Jan 2019 17:29:01
Message-Id: 1547746133.58afed25e10cb4b364a47f7d162e6cb9bb9c53ca.zlogene@gentoo
1 commit: 58afed25e10cb4b364a47f7d162e6cb9bb9c53ca
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 17 17:26:37 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 17 17:28:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58afed25
7
8 app-misc/bottlerocket: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-misc/bottlerocket/bottlerocket-0.04c-r1.ebuild | 44 ----------------------
14 1 file changed, 44 deletions(-)
15
16 diff --git a/app-misc/bottlerocket/bottlerocket-0.04c-r1.ebuild b/app-misc/bottlerocket/bottlerocket-0.04c-r1.ebuild
17 deleted file mode 100644
18 index 4bebb91dd77..00000000000
19 --- a/app-misc/bottlerocket/bottlerocket-0.04c-r1.ebuild
20 +++ /dev/null
21 @@ -1,44 +0,0 @@
22 -# Copyright 1999-2011 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="2"
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="CLI interface to the X-10 Firecracker Kit"
30 -HOMEPAGE="http://www.linuxha.com/bottlerocket/"
31 -SRC_URI="http://www.linuxha.com/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~ppc ~sparc x86"
36 -IUSE=""
37 -
38 -src_prepare() {
39 - # inset LDFLAGS
40 - sed -i Makefile.in \
41 - -e 's| -O2 ||g' \
42 - -e '/ -o br /s|${CFLAGS}|& $(LDFLAGS)|g' \
43 - || die "sed Makefile.in"
44 -}
45 -
46 -src_configure() {
47 - econf --with-x10port=/dev/firecracker
48 -}
49 -
50 -src_compile() {
51 - emake CC="$(tc-getCC)" || die "emake failed"
52 -}
53 -
54 -src_install() {
55 - einstall || die "einstall"
56 - dodoc README
57 -}
58 -
59 -pkg_postinst() {
60 - elog
61 - elog "Be sure to create a /dev/firecracker symlink to the"
62 - elog "serial port that has the Firecracker serial interface"
63 - elog "installed on it."
64 - elog
65 -}