diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-17 10:48:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-17 10:48:24 +0000 |
commit | 5211cd88c5b29c59454ad5c44edbcdc280d3ab2f (patch) | |
tree | fc436b8178c92ee8dc24953ebbd0fe8d69888744 /net-libs/libvncserver/libvncserver-0.7.1.ebuild | |
parent | maintainer = me (diff) | |
download | gentoo-2-5211cd88c5b29c59454ad5c44edbcdc280d3ab2f.tar.gz gentoo-2-5211cd88c5b29c59454ad5c44edbcdc280d3ab2f.tar.bz2 gentoo-2-5211cd88c5b29c59454ad5c44edbcdc280d3ab2f.zip |
Version bump.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-libs/libvncserver/libvncserver-0.7.1.ebuild')
-rw-r--r-- | net-libs/libvncserver/libvncserver-0.7.1.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/net-libs/libvncserver/libvncserver-0.7.1.ebuild b/net-libs/libvncserver/libvncserver-0.7.1.ebuild new file mode 100644 index 000000000000..53d34de0bd2f --- /dev/null +++ b/net-libs/libvncserver/libvncserver-0.7.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.7.1.ebuild,v 1.1 2005/07/17 10:48:24 vapier 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="~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="nobackchannel no24bpp zlib jpeg" + +DEPEND="virtual/x11 + zlib? ( sys-libs/zlib ) + jpeg? ( media-libs/jpeg )" + +S=${WORKDIR}/LibVNCServer-${PV} + +src_unpack() { + unpack LibVNCServer-${PV}.tar.gz + cd ${S} + sed -i \ + -e '/^SUBDIRS/s:x11vnc::' \ + Makefile.in || die "sed foo" +} + +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 +} |