blob: 9af89860a23a13259465a23d9948532c726c13d6 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
WANT_AUTOMAKE="none"
inherit autotools flag-o-matic toolchain-funcs
DESCRIPTION="A non-intrusive real-time ANSI color wrapper for common unix-based commands"
HOMEPAGE="http://cwrapper.sourceforge.net"
SRC_URI="mirror://sourceforge/cwrapper/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
PATCHES=(
"${FILESDIR}"/${PV}-ldflags.patch
"${FILESDIR}"/${PV}-path.patch
"${FILESDIR}"/${PV}-collision.patch
"${FILESDIR}"/${PV}-format-security.patch
"${FILESDIR}"/${P}-replace-isastream-with-fcntl.patch
"${FILESDIR}"/${P}-fix-configure-for-newer-autotools.patch
"${FILESDIR}"/${P}-Respect-CPPFLAGS.patch
)
src_prepare() {
default
gunzip "${S}"/man/*.gz || die
eautoreconf
}
src_configure() {
tc-export CC
append-cppflags -D_GNU_SOURCE
econf
}
src_compile() {
emake local
}
src_install() {
insinto /usr/share/cw
doins etc/*
exeinto /usr/libexec/cw
doexe def/*
doman man/cwu.1
doman man/cwe.1
newman man/cw.1 color-wrapper
dodoc CHANGES CONTRIB INSTALL README PLATFORM doc/README*
dobin bin/{cwu,colorcfg}
# app-misc/color currently conflicts; hopefully 'colors' is safe
newbin bin/color colors
# media-radio/unixcw currently conflicts;
newbin bin/cw color-wrapper
}
pkg_postinst() {
ebegin "Updating definition files"
cwu /usr/libexec/cw /usr/bin/color-wrapper # >/dev/null
eend $?
elog "To enable color-wrapper, as your user, run:"
elog " colorcfg [1|2|3]"
elog "to add relevant environment variables to your ~/.bash_profile"
elog "Run colorcfg without options to see what [1|2|3] means."
elog
elog "After sourcing your ~/.bash_profile, commands for which definitions"
elog "are provided should have colored output."
elog
elog "To enable/disable colored output, run: 'colors [on|off]'."
}
|