diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2002-05-31 15:00:49 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2002-05-31 15:00:49 +0000 |
commit | 52cb36ec4be522acc31bd5ef87a6f4f163746cd8 (patch) | |
tree | c524cc3c45f57aa7391a9d90e03c57e58f573e04 /net-misc/directvnc | |
parent | patched version (diff) | |
download | gentoo-2-52cb36ec4be522acc31bd5ef87a6f4f163746cd8.tar.gz gentoo-2-52cb36ec4be522acc31bd5ef87a6f4f163746cd8.tar.bz2 gentoo-2-52cb36ec4be522acc31bd5ef87a6f4f163746cd8.zip |
New package. Very cool (and very small) vnc client for the linux
framebuffer.
Diffstat (limited to 'net-misc/directvnc')
-rw-r--r-- | net-misc/directvnc/ChangeLog | 27 | ||||
-rw-r--r-- | net-misc/directvnc/directvnc-0.6.ebuild | 55 | ||||
-rw-r--r-- | net-misc/directvnc/files/digest-directvnc-0.6 | 1 |
3 files changed, 83 insertions, 0 deletions
diff --git a/net-misc/directvnc/ChangeLog b/net-misc/directvnc/ChangeLog new file mode 100644 index 000000000000..60f1b223fb08 --- /dev/null +++ b/net-misc/directvnc/ChangeLog @@ -0,0 +1,27 @@ +# ChangeLog for <CATEGORY>/<PACKAGE_NAME> +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/directvnc/ChangeLog,v 1.1 2002/05/31 15:00:49 g2boojum Exp $ + +*directvnc-0.6 (31 May 2002) + + 31 May 2002; Grant Goodyear <g2boojum@gentoo.org> + 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. + +-- Explanation of ChangeLog format: + + Every new version or revision of the package should be marked by a '*' + seperator line as above. Changes since the last revision have to be added to + the top of the file, underneath the initial copyright and cvs header + comments, in exactly the same format as this comment. + + This means that you start with header line that has the following format, + indented two spaces: + + DD MMM YYYY; your_name <your_email> changed_file1, changed_file2: Your + explanation should follow. It should be indented and wrapped at a line width + of 80 characters. The changed_files can be omitted if they are obvious; for + example, if you are only modifying the .ebuild file and committing a new rev + of a package. Any details about what exactly changed in the code should be + added as a message when the changes are committed to cvs, not in this file. diff --git a/net-misc/directvnc/directvnc-0.6.ebuild b/net-misc/directvnc/directvnc-0.6.ebuild new file mode 100644 index 000000000000..0e489ea0acf7 --- /dev/null +++ b/net-misc/directvnc/directvnc-0.6.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/directvnc/directvnc-0.6.ebuild,v 1.1 2002/05/31 15:00:49 g2boojum Exp $ + +DESCRIPTION="Very thin VNC client for unix framebuffer systems" + +HOMEPAGE="http://adam-lilienthal.de/directvnc" + +LICENSE="GPL-2" + +DEPEND=">=dev-libs/DirectFB-0.9.10 sys-devel/automake sys-devel/autoconf" + +#RDEPEND="" + +SRC_URI="http://freesoftware.fsf.org/download/${PN}/${P}.tar.gz" + +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} + cd ${S} + #fix broken Makefile.am + cd src + mv Makefile.am Makefile.am.orig + sed -e 's/-$(DIRECTFB_LIBS)/$(DIRECTFB_LIBS)/' Makefile.am.orig > Makefile.am + cd .. + aclocal || die "aclocal failed" + autoconf || die "autoconf failed" + automake || die "automake failed" +} + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + make || die +} + +src_install () { + make DESTDIR=${D} install || die + # For Makefiles that don't make proper use of DESTDIR, setting + # prefix is often an alternative. However if you do this, then + # you also need to specify mandir and infodir, since they were + # passed to ./configure as absolute paths (overriding the prefix + # setting). + #make \ + # prefix=${D}/usr \ + # mandir=${D}/usr/share/man \ + # infodir=${D}/usr/share/info \ + # install || die + # Again, verify the Makefiles! We don't want anything falling + # outside of ${D}. +} diff --git a/net-misc/directvnc/files/digest-directvnc-0.6 b/net-misc/directvnc/files/digest-directvnc-0.6 new file mode 100644 index 000000000000..d88f589c68fd --- /dev/null +++ b/net-misc/directvnc/files/digest-directvnc-0.6 @@ -0,0 +1 @@ +MD5 22f988b17d7819c400c9c1adc884398d directvnc-0.6.tar.gz 99220 |