Install this version:
emerge -a =app-doc/abs-guide-10
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-doc/abs-guide-10
Or alternatively:
emerge --autounmask-write -a =app-doc/abs-guide-10
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 10 | 7 | ~alpha amd64 ~arm64 ~hppa ~mips ppc ~riscv ~sparc x86 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="An in-depth exploration of the art of shell scripting"
HOMEPAGE="https://www.tldp.org/LDP/abs/html"
SRC_URI="http://bash.deta.in/abs-guide-final.tar.bz2
pdf? ( http://bash.deta.in/abs-guide.pdf )"
S="${WORKDIR}"/abs
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm64 ~hppa ~mips ppc ~riscv ~sparc x86"
IUSE="pdf"
src_unpack() {
unpack abs-guide-final.tar.bz2
if use pdf ; then
cp "${DISTDIR}"/abs-guide.pdf "${S}" || die
fi
}
src_install() {
dodoc -r *
docompress -x /usr/share/doc/${PF}
}
pkg_postinst() {
elog "The HTML docs can be accessed through ${EROOT}/usr/share/doc/${PF}/HTML/index.html"
elog "Example scripts from the book are installed in ${EROOT}/usr/share/doc/${PF}/"
use pdf && elog "along with the pdf version."
}
Manage flags for this package:
euse -i <flag> -p app-doc/abs-guide |
euse -E <flag> -p app-doc/abs-guide |
euse -D <flag> -p app-doc/abs-guide
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | abs-guide-final.tar.bz2 | 1141871 bytes | http://bash.deta.in/abs-guide-final.tar.bz2 |
| DIST | abs-guide.pdf | 3358210 bytes | http://bash.deta.in/abs-guide.pdf |