summaryrefslogtreecommitdiff
blob: bfa7f0aa6249f4664acf9442828847cf3dd2285f (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.5-r1.ebuild,v 1.3 2004/01/03 18:39:46 plasmaroo Exp $

inherit eutils

DESCRIPTION="library for creating vnc servers"
HOMEPAGE="http://libvncserver.sourceforge.net/"
SRC_URI="mirror://sourceforge/libvncserver/LibVNCServer-${PV}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="nobackchannel no24bpp zlib jpeg"

DEPEND="virtual/x11
	zlib? ( sys-libs/zlib )
	jpeg? ( media-libs/jpeg )"

S=${WORKDIR}/LibVNCServer-${PV}

src_unpack() {
	unpack ${A}
	cd ${S}
	epatch ${FILESDIR}/${PV}-optional-configure.ac.patch
	autoconf || die
	automake || die
	aclocal || die
}

src_compile() {
	local myconf=""
	[ `use nobackchannel` ] \
		&& myconf="${myconf} --without-backchannel" \
		|| myconf="${myconf} --with-backchannel"
	[ `use no24bpp` ] \
		&& myconf="${myconf} --without-24bpp" \
		|| myconf="${myconf} --with-24bpp"
	econf \
		`use_with zlib` \
		`use_with jpeg` \
		${myconf} \
		|| die
	emake || die
}

src_install() {
	make install DESTDIR=${D} || die
	dobin examples/storepasswd
	dodoc AUTHORS ChangeLog NEWS README TODO
}