diff options
author | Markus Nigbur <pyrania@gentoo.org> | 2004-03-06 02:56:49 +0000 |
---|---|---|
committer | Markus Nigbur <pyrania@gentoo.org> | 2004-03-06 02:56:49 +0000 |
commit | 78f53e59e1fb49d086f74a1b20680b725bc6d9ed (patch) | |
tree | 0fc273e82fa4a5349d2a8cafe079ced5d43f0bd1 /x11-misc/vnc2swf | |
parent | Version bump, closes #43488. (diff) | |
download | historical-78f53e59e1fb49d086f74a1b20680b725bc6d9ed.tar.gz historical-78f53e59e1fb49d086f74a1b20680b725bc6d9ed.tar.bz2 historical-78f53e59e1fb49d086f74a1b20680b725bc6d9ed.zip |
Initial import.
Diffstat (limited to 'x11-misc/vnc2swf')
-rw-r--r-- | x11-misc/vnc2swf/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/vnc2swf/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/vnc2swf/files/digest-vnc2swf-0.3 | 1 | ||||
-rw-r--r-- | x11-misc/vnc2swf/metadata.xml | 14 | ||||
-rw-r--r-- | x11-misc/vnc2swf/vnc2swf-0.3.ebuild | 24 |
5 files changed, 53 insertions, 0 deletions
diff --git a/x11-misc/vnc2swf/ChangeLog b/x11-misc/vnc2swf/ChangeLog new file mode 100644 index 000000000000..cfb8f27f5900 --- /dev/null +++ b/x11-misc/vnc2swf/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-misc/vnc2swf +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/vnc2swf/ChangeLog,v 1.1 2004/03/06 02:56:49 pyrania Exp $ + +*vnc2swf-0.3 (06 Mar 2004) + + 06 Mar 2004; Markus Nigbur <pyrania@gentoo.org> metadata.xml, + vnc2swf-0.3.ebuild: + Initial import. Ebuild submitted by Greg Bowyer <bg115@gre.ac.uk>. + diff --git a/x11-misc/vnc2swf/Manifest b/x11-misc/vnc2swf/Manifest new file mode 100644 index 000000000000..197fb65d1d37 --- /dev/null +++ b/x11-misc/vnc2swf/Manifest @@ -0,0 +1,4 @@ +MD5 eb4012dbfdf97779775bec7ad0adfd49 ChangeLog 400 +MD5 427e58a2a402d09cdf22976c7d733f46 metadata.xml 685 +MD5 3bdedd7dde24d88c61fa2eecd4274c78 vnc2swf-0.3.ebuild 695 +MD5 e05e7fbd6825ae9524ca79ee7b5772fe files/digest-vnc2swf-0.3 63 diff --git a/x11-misc/vnc2swf/files/digest-vnc2swf-0.3 b/x11-misc/vnc2swf/files/digest-vnc2swf-0.3 new file mode 100644 index 000000000000..859387031b3e --- /dev/null +++ b/x11-misc/vnc2swf/files/digest-vnc2swf-0.3 @@ -0,0 +1 @@ +MD5 81df40c0c97a0e1bc3d91d73f40a3a48 vnc2swf-0.3.tar.gz 104506 diff --git a/x11-misc/vnc2swf/metadata.xml b/x11-misc/vnc2swf/metadata.xml new file mode 100644 index 000000000000..46ce0a5a46ff --- /dev/null +++ b/x11-misc/vnc2swf/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>desktop-misc</herd> + <longdescription> + gtkdialog is a GUI-creation utility that can be used with an arbitrary + interpreter. It enables the programmer to describe a graphical user + interface in a simple XML-like language, and use it with any + interpreter that supports either files, standard I/O, or environment + variables. It can be called as an external program from the + interpreter, but can be used as a stand-alone framework for the + application as well. Stand-alone, bash, and awk examples are provided. + </longdescription> +</pkgmetadata> diff --git a/x11-misc/vnc2swf/vnc2swf-0.3.ebuild b/x11-misc/vnc2swf/vnc2swf-0.3.ebuild new file mode 100644 index 000000000000..43b8a9747728 --- /dev/null +++ b/x11-misc/vnc2swf/vnc2swf-0.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/vnc2swf/vnc2swf-0.3.ebuild,v 1.1 2004/03/06 02:56:49 pyrania Exp $ + +SLOT="0" +DESCRIPTION="A tool for recording Shock wave Flash movies from vnc sessions" +SRC_URI="http://www.unixuser.org/~euske/vnc2swf/${P}.tar.gz" +HOMEPAGE="http://www.unixuser.org/~euske/vnc2swf" +LICENSE="GPL-2" +DEPEND=">=media-libs/ming-0.2a + virtual/glibc + virtual/x11" +KEYWORDS="~x86" + +src_compile() { + econf || die "Configure Failed" + emake || die "Make Failed" +} + +src_install () { + insinto /usr/bin + dobin vnc2swf || die "Install Failed" + dodoc README TODO +} |