blob: 9c1e7ea86390f08f30670684c85501e332f2b419 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/yaps/yaps-0.96.ebuild,v 1.3 2005/07/30 09:03:54 sbriesen Exp $
inherit eutils
DESCRIPTION="Yet Another Pager Software (optional with CAPI support)"
HOMEPAGE="ftp://sunsite.unc.edu/pub/Linux/apps/serialcomm/machines/"
SRC_URI="capi? ( mirror://sourceforge/capi4yaps/${P}.c2.tgz )
!capi? ( ftp://sunsite.unc.edu/pub/Linux/apps/serialcomm/machines/${P}.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="capi lua slang unicode"
RDEPEND="capi? ( net-dialup/capi4k-utils )
slang? ( sys-libs/slang )
lua? ( dev-lang/lua )"
DEPEND="${RDEPEND}
lua? ( dev-util/pkgconfig )"
use capi && S="${S}.c2"
src_unpack() {
unpack ${A}
cd ${S}
# apply patches
epatch ${FILESDIR}/${P}.patch
use capi \
&& grep 2>/dev/null -q CAPI_LIBRARY_V2 /usr/include/capiutils.h \
&& epatch ${FILESDIR}/${P}-capiv3.patch
# if specified, convert all relevant files from latin1 to UTF-8
if use unicode; then
for i in yaps.doc; do
einfo "Converting '${i}' to UTF-8"
iconv -f latin1 -t utf8 -o "${i}~" "${i}" && mv -f "${i}~" "${i}" || rm -f "${i}~"
done
fi
}
src_compile() {
local myconf=""
use lua && myconf="${myconf} LUA=True"
use slang && myconf="${myconf} SLANG=True"
emake CFLAGS="$CFLAGS" ${myconf} || die "emake failed"
}
src_install() {
dobin yaps
insinto /etc
doins yaps.rc
keepdir /usr/lib/yaps
doman yaps.1
dohtml yaps.html
dodoc BUGREPORT COPYRIGHT INSTALL README yaps.lsm yaps.doc
docinto contrib
dodoc contrib/{README,m2y.pl,tap.sl}
}
pkg_postinst() {
einfo
einfo "Please edit /etc/yaps.rc to suit your needs."
einfo
}
|