39 lines
797 B
Bash
39 lines
797 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
MY_P="${P/gnap/gnap-tools}"
|
|
S="${WORKDIR}/${MY_P}"
|
|
DESCRIPTION="Gentoo-based Network Appliance building system"
|
|
HOMEPAGE="https://embedded.gentoo.org/gnap.xml"
|
|
|
|
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2
|
|
!minimal? ( mirror://gentoo/${PN}-core-${PV}.tar )"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE="minimal"
|
|
|
|
RDEPEND="app-cdr/cdrtools
|
|
sys-fs/dosfstools
|
|
<sys-boot/syslinux-5"
|
|
|
|
src_unpack() {
|
|
unpack ${MY_P}.tar.bz2
|
|
}
|
|
|
|
src_install() {
|
|
dobin gnap_overlay
|
|
doman gnap_overlay.1
|
|
|
|
dodoc README.upgrading
|
|
|
|
dodir /usr/lib/gnap
|
|
insinto /usr/lib/gnap
|
|
if ! use minimal; then
|
|
newins "${DISTDIR}"/${PN}-core-${PV}.tar ${PN}-core.tar
|
|
doins -r mbr
|
|
doins -r examples
|
|
fi
|
|
}
|