blob: 3daae5d86287681f65ab8d42cccbbad0045fa264 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
MY_PN=${PN}.sh
DESCRIPTION="Tool to check properties of executables (e.g. ASLR/PIE, RELRO, PaX, Canaries)"
HOMEPAGE="https://github.com/slimm609/checksec.sh"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="vanilla"
case ${PV} in
99999999*)
EGIT_REPO_URI="git://github.com/slimm609/${MY_PN}.git"
inherit git-r3
PROPERTIES="live"
KEYWORDS=""
SRC_URI="";;
*)
#RESTRICT="mirror"
SRC_URI="https://github.com/slimm609/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}"/${MY_PN}-${PV}
esac
DOCS=( ChangeLog README.md )
src_prepare() {
local zshcomp
zshcomp=extras/zsh/_${PN}
test -f "${zshcomp}" || zshcomp=${FILESDIR}/_${PN}
if use vanilla
then cp "${zshcomp}" _${PN} || die
else sed -e '/--update/d' "${zshcomp}" >_${PN} || die
cp ${PN} ${PN}.vanilla
sed -i -e '/--update.*)/,/;;/d' ${PN} || die
eapply "${FILESDIR}"/path.patch
fi
eapply_user
}
src_install() {
dobin ${PN}
insinto /usr/share/zsh/site-functions
doins _${PN}
einstalldocs
! test -d extras/man || doman extras/man/*
}
|