blob: e669d60aa5fe102651cbdb3cba9a47417b69a8aa (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/directvnc/directvnc-0.7.8.ebuild,v 1.1 2013/02/19 13:43:17 tomka Exp $
EAPI=5
AUTOTOOLS_IN_SOURCE_BUILD=1
AUTOTOOLS_AUTORECONF=1
inherit eutils autotools-utils
DESCRIPTION="Very thin VNC client for unix framebuffer systems"
HOMEPAGE="http://drinkmilk.github.com/directvnc/"
SRC_URI="http://github.com/downloads/drinkmilk/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+mouse dmalloc"
RDEPEND="dev-libs/DirectFB[fbcon,dynload]
virtual/jpeg"
DEPEND="${RDEPEND}
dmalloc? ( dev-libs/dmalloc )
x11-proto/xproto"
DOCS=( NEWS THANKS )
src_prepare() {
use mouse || epatch "${FILESDIR}"/${P}-mouse.patch
# fix package version
sed -i -e '/^AM_INIT_AUTOMAKE/s/0.7.7/0.7.8/g' configure.in || die
# fix build system don't respect --docdir option
sed -i -e 's|$(prefix)/share/doc/@PACKAGE@|@docdir@|g' Makefile.am || die
autotools-utils_src_prepare
}
src_configure() {
myeconfargs=(
$(use_with dmalloc)
)
autotools-utils_src_configure
}
pkg_postinst() {
einfo "To customize your keyboard mapping, please consult the manual"
einfo " commmand: man 7 directvnc-kbmapping"
}
|