# Copyright 2015-2016 gordonb3 # Distributed under the terms of the GNU General Public License v2 # $Header$ EAPI="5" inherit eutils DESCRIPTION="The Bubba main package" HOMEPAGE="https://github.com/gordonb3/bubbagen" KEYWORDS="~arm ~ppc" VMAJOR=${PV:0:4} REVISION=$((${PV:5}%5)) SRC_URI="https://github.com/gordonb3/bubbagen/archive/v${VMAJOR}.tar.gz -> ${PF}.tgz" LICENSE="GPL-3+" SLOT="0/${VMAJOR}" IUSE="" RESTRICT="mirror" # Conflicts/replaces Sakaki's b3-init-scripts DEPEND=" !sys-apps/b3-init-scripts >=virtual/udev-215 >=sys-apps/ethtool-3.12.1 !virtual/bubba:0/0 " RDEPEND="${DEPEND} app-admin/bubba-frontend app-admin/bubba-manual arm? ( sys-power/bubba-buttond ) " src_unpack() { default mv ${WORKDIR}/${PN}* ${S} } src_prepare() { # Git does not support empty folders # clean up the bogus content here. find ${S} -name ~nofiles~ -exec rm {} \; # correct for different settings between B2 and B3 if use ppc; then rm etc/portage/package.use/sysvinit fi } src_install() { dodir "/etc/bubba" echo ${PV} > ${ED}/etc/bubba/bubba.version echo "Create bubba-default-config archive" tar -czf bubba-default-config.tgz etc insinto /var/lib/bubba doins bubba-default-config.tgz exeinto /opt/bubba/sbin doexe sbin/* chmod 700 ${ED}/opt/bubba/sbin/* if use arm; then echo "Add udev rules" insinto /lib/udev/rules.d newins ${FILESDIR}/marvell-fix-tso.udev 50-marvell-fix-tso.rules newins ${FILESDIR}/net-name-use-custom.udev 70-net-name-use-custom.rules fi }