Portage is a package management system used by Gentoo Linux
# ChangeLog for net-misc/directvnc
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/directvnc/ChangeLog,v 1.21 2007/11/16 17:07:20 s4t4n Exp $
16 Nov 2007; Michele Noberasco
Stable for x86.
*directvnc-0.7.5-r1 (20 Jul 2007)
20 Jul 2007; Michele Noberasco
Revision bump, with patch to make mouse support optional. Closes bug #176970.
directvnc-0.7.5.ebuild:
Added missing media-libs/jpeg dependancy. Closes bug #176959.
08 Jan 2007; Michele Noberasco
Added missing x11-proto/xproto dependancy. Fixed DEPEND and RDEPEND.
Closes bug #152511.
06 Jun 2006; Michele Noberasco
removed INSTALL from dodoc.
27 Apr 2006; Alec Warner
Fixing SHA256 digest, pass four
17 Feb 2006; Michele Noberasco
Removed unneded virtual/x11 dependancy.
20 Dec 2005; Michele Noberasco
Added some magic sed to fix bug #116148. Also, creaded missing metadata.xml
and assigned package to myself as maintainer.
16 Jan 2005; Jan Brinkmann
aded ~amd64 to KEYWORDS. fixes #77599.
*directvnc-0.7.5 (01 Jun 2004)
01 Jun 2004; Mike Frysinger
Version bump #46802 by Malte S. Stretz.
26 Dec 2003; Jason Wever
directvnc-0.7.ebuild:
Masked on sparc as DirectFB doesn't work on sparc.
*directvnc-0.7 (17 Jan 2003)
17 Jan 2003; Mike Frysinger
Added a small patch to fix dfb.c.
07 Nov 2002; Seemant Kulleen
files/digest-directvnc-0.7 :
Version bump, thanks to: andreh@lddd.org (Andre Heidemann) in bug #9521.
*directvnc-0.6.1 (06 Jul 2002)
17 Jan 2003; Mike Frysinger
Added a small patch to fix dfb.c.
08 Aug 2002; Seemant Kulleen
FHS compliance.
06 Jul 2002; Seemant Kulleen
files/digest-directvnc-0.6.1 files/dfb.c :
Version bump, and the dfb.c from directvnc's CVS, where the API changes
for DirectFB since 0.9.10 have been implemented. Now, this will compile
against portage's version of DirectFB.
*directvnc-0.6-r1 (03 Jul 2002)
03 Jul 2002; Grant Goodyear
Fixed DirectFB dep to be ~0.9.10
*directvnc-0.6 (31 May 2002)
31 May 2002; Grant Goodyear
New import. Note that the stuff in src_unpack (and the automake/
autoconf dependencies) should go away in the next release, since
they're only there to fix the author's mistake.
AUX directvnc-mouse.patch 2310 RMD160 7949a809a688a4d545d0931e53c999b83e5d5175 SHA1 44d8a7304bb8fdba4638fad2e6b7bfcf4350f649 SHA256 5edff6451fd470b1cf22b2b910369b8899a620269c6266c90915b3a35a0255e7
DIST directvnc-0.7.5.tar.gz 253013 RMD160 ea7703c5b904a2cccc3b049971e14189ce4b471c SHA1 ed6f974baa8cb3227bf295a40bdd6a27a7d7faca SHA256 f604ce7c58fba00b3a8f72b153ca6e49c6b6b48f70840472204f86a28c94a071
EBUILD directvnc-0.7.5-r1.ebuild 1184 RMD160 dfe818580b78328f3bcf0432e2030c1de13594d4 SHA1 54a5a724a759380a710cd342808a59bbf2bfb5f6 SHA256 134b2a8beb67067736493c89af4bcd4e843934d45e89684796ba41fac47c25ad
EBUILD directvnc-0.7.5.ebuild 1042 RMD160 344129d9573593e648450d80fc804994c8b60731 SHA1 b51b383ef1c4b348bfff9bf10399cc559f1e2a5c SHA256 86f0782df5f6430f0a87bdaee291847f500cd1270cc861481a4b1f45e9f16dd8
MISC ChangeLog 2930 RMD160 704b818209e1778a784e0755352ffe85ce2e09f4 SHA1 74af9cc239f653bfbd64b509c417da8818e35d95 SHA256 46a2c6ece6db80e76a13fa27df15d808ca113b19fd59d0c3d6df6ecd92551a57
MISC metadata.xml 254 RMD160 5c1b976d4bf83b9cb6770e8b6065df0c2fbad264 SHA1 f9659da73dc287f4249415f8609dd4256100bbb8 SHA256 51a4815eae0d318310ac2894236be562b906c9e662cbd13013c9733f9cc8503c
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/directvnc/directvnc-0.7.5-r1.ebuild,v 1.2 2007/11/16 17:07:20 s4t4n Exp $
inherit eutils
DESCRIPTION="Very thin VNC client for unix framebuffer systems"
HOMEPAGE="http://adam-lilienthal.de/directvnc/"
SRC_URI="http://www.adam-lilienthal.de/directvnc/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~amd64"
IUSE="mouse"
RDEPEND="dev-libs/DirectFB
>=media-libs/jpeg-6b-r7"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=sys-apps/sed-4
x11-proto/xproto"
src_unpack() {
unpack "${A}"
# Make mouse support optional
cd "${S}/src"
use mouse || epatch "${FILESDIR}/${PN}-mouse.patch"
}
src_compile() {
econf || die
# Fix bug #116148, DFBGraphicsDeviceDescription is no longer present in
# newer DirectFB version, but the application never uses it :-/
local comment_out="DFBCardCapabilities caps;"
sed -i -e "s:${comment_out}://${comment_out}:" src/dfb.c
emake DEBUGFLAGS="${CFLAGS}" || die
}
src_install() {
make install DESTDIR=${D} || die
rm -rf ${D}/usr/doc
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/directvnc/directvnc-0.7.5.ebuild,v 1.9 2007/07/20 15:42:44 s4t4n Exp $
inherit eutils
DESCRIPTION="Very thin VNC client for unix framebuffer systems"
HOMEPAGE="http://adam-lilienthal.de/directvnc/"
SRC_URI="http://www.adam-lilienthal.de/directvnc/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~amd64"
IUSE=""
RDEPEND="dev-libs/DirectFB
>=media-libs/jpeg-6b-r7"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=sys-apps/sed-4
x11-proto/xproto"
src_compile() {
econf || die
# Fix bug #116148, DFBGraphicsDeviceDescription is no longer present in
# newer DirectFB version, but the application never uses it :-/
local comment_out="DFBCardCapabilities caps;"
sed -i -e "s:${comment_out}://${comment_out}:" src/dfb.c
emake DEBUGFLAGS="${CFLAGS}" || die
}
src_install() {
make install DESTDIR=${D} || die
rm -rf ${D}/usr/doc
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}