commit:     c493dd04a50d5560fe11b40293451ed893796584
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Aug  1 11:01:51 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 11 10:35:10 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c493dd04

app-misc/bottlerocket: EAPI7, improve ebuild

Closes: https://github.com/gentoo/gentoo/pull/9407

 app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild | 45 ++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild 
b/app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild
new file mode 100644
index 00000000000..882443c5b5f
--- /dev/null
+++ b/app-misc/bottlerocket/bottlerocket-0.04c-r2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="CLI interface to the X-10 Firecracker Kit"
+HOMEPAGE="http://www.linuxha.com/bottlerocket/";
+SRC_URI="http://www.linuxha.com/${PN}/${P}.tar.gz";
+
+LICENSE="LGPL-2"
+SLOT="0"
+IUSE=""
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+src_prepare() {
+       default
+       # inset LDFLAGS
+       sed -i Makefile.in \
+               -e 's| -O2 ||g' \
+               -e '/ -o br /s|${CFLAGS}|& $(LDFLAGS)|g' \
+               || die "sed Makefile.in"
+}
+
+src_configure() {
+       econf --with-x10port=/dev/firecracker
+}
+
+src_compile() {
+       emake CC="$(tc-getCC)"
+}
+
+src_install() {
+       dodoc README
+       dobin br
+}
+
+pkg_postinst() {
+       elog
+       elog "Be sure to create a /dev/firecracker symlink to the"
+       elog "serial port that has the Firecracker serial interface"
+       elog "installed on it."
+       elog
+}

Reply via email to