blob: 921c22d2b2747ff33b3ce8295e9209d43172f29d (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="IRC client intended to be displayed on a text console"
HOMEPAGE="http://rhapsody.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=sys-libs/ncurses-5.0:0="
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-uclibc.patch
"${FILESDIR}"/${P}-tinfo.patch
)
src_configure() {
PKGCONFIG="$(tc-getPKG_CONFIG)" \
./configure -i /usr/share/rhapsody || die "configure failed"
}
src_compile() {
emake CC="$(tc-getCC)" LOCALFLAGS="${CFLAGS} -fcommon"
}
src_install() {
dobin rhapsody
insinto /usr/share/rhapsody/help
doins help/*.hlp
dodoc docs/CHANGELOG
}
|