gentoo-overlay-trent/app-shells/grml-zsh-config/grml-zsh-config-0.14.3-r1.ebuild

40 lines
911 B
Bash
Raw Normal View History

2018-02-21 10:05:05 -08:00
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="grml's zsh setup"
HOMEPAGE="https://grml.org/zsh/"
SRC_URI="https://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+doc"
2018-02-21 10:05:05 -08:00
DEPEND="doc? ( app-text/txt2tags )"
2018-02-21 10:05:05 -08:00
RDEPEND="${DEPEND}
app-shells/zsh
sys-process/procps
sys-apps/grep
sys-apps/coreutils
sys-apps/sed"
src_unpack() {
unpack ${A}
cd "${WORKDIR}"
mv grml-etc-core-"${PV}" "${P}"
}
src_compile() {
cd ${S}/doc
use doc && make
2018-02-21 10:05:05 -08:00
}
src_install() {
install -D -m644 ${S}/etc/skel/.zshrc ${D}/etc/skel/.zshrc
install -D -m644 ${S}/etc/zsh/keephack ${D}/etc/zsh/keephack
install -D -m644 ${S}/etc/zsh/zshrc ${D}/etc/zsh/zshrc
use doc && install -D -m644 ${S}/doc/grmlzshrc.5 ${D}/usr/share/man/man5/grmlzshrc.5
2018-02-21 10:05:05 -08:00
}