blob: 49a128d9cef8c0b0d99eaff0ebd433acde9beb4c (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Draw any kind of boxes around your text"
HOMEPAGE="http://boxes.thomasjensen.com/ https://github.com/ascii-boxes/boxes"
SRC_URI="https://github.com/ascii-boxes/boxes/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ~mips ppc ppc64 sparc x86"
IUSE=""
DEPEND="
sys-devel/bison
sys-devel/flex
"
src_prepare() {
append-cflags -Iregexp -I. -ansi -std=c99
append-ldflags -Lregexp
sed \
-e 's:STRIP=true:STRIP=false:g' \
-i src/Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}
src_install() {
dobin src/boxes
doman doc/boxes.1
dodoc README.md
insinto /usr/share/boxes
doins boxes-config
}
|