diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2003-04-21 17:51:45 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2003-04-21 17:51:45 +0000 |
commit | d03b501f2758da7c08421e71dbcc085a315a313a (patch) | |
tree | a910ea672bb1de2c821f371badeca4bfbf35345f | |
parent | Added hppa to KEYWORDS. (diff) | |
download | gentoo-2-d03b501f2758da7c08421e71dbcc085a315a313a.tar.gz gentoo-2-d03b501f2758da7c08421e71dbcc085a315a313a.tar.bz2 gentoo-2-d03b501f2758da7c08421e71dbcc085a315a313a.zip |
New import
-rw-r--r-- | net-misc/vncsnapshot/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/vncsnapshot/files/digest-vncsnapshot-1.1 | 1 | ||||
-rw-r--r-- | net-misc/vncsnapshot/vncsnapshot-1.1.ebuild | 29 |
3 files changed, 39 insertions, 0 deletions
diff --git a/net-misc/vncsnapshot/ChangeLog b/net-misc/vncsnapshot/ChangeLog new file mode 100644 index 000000000000..85b7b08386d0 --- /dev/null +++ b/net-misc/vncsnapshot/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-misc/vncsnapshot +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vncsnapshot/ChangeLog,v 1.1 2003/04/21 17:51:45 g2boojum Exp $ + +*vncsnapshot-1.1 (21 Apr 2003) + + 21 Apr 2003; Grant Goodyear <g2boojum@gentoo.org> vncsnapshot-1.1.ebuild: + New package + diff --git a/net-misc/vncsnapshot/files/digest-vncsnapshot-1.1 b/net-misc/vncsnapshot/files/digest-vncsnapshot-1.1 new file mode 100644 index 000000000000..1ee4d7860832 --- /dev/null +++ b/net-misc/vncsnapshot/files/digest-vncsnapshot-1.1 @@ -0,0 +1 @@ +MD5 d526e821eef087e89eebde57f3e02a4a vncsnapshot-1.1-src.tar.bz2 65026 diff --git a/net-misc/vncsnapshot/vncsnapshot-1.1.ebuild b/net-misc/vncsnapshot/vncsnapshot-1.1.ebuild new file mode 100644 index 000000000000..c56c2e3c870b --- /dev/null +++ b/net-misc/vncsnapshot/vncsnapshot-1.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vncsnapshot/vncsnapshot-1.1.ebuild,v 1.1 2003/04/21 17:51:45 g2boojum Exp $ + +LICENSE="GPL-2" +DESCRIPTION="A command-line tool for taking JPEG snapshots of VNC servers" +SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2" +HOMEPAGE="http://vncsnapshot.sourceforge.net/" +KEYWORDS="~x86" +IUSE="" +SLOT="0" +DEPEND=">=media-libs/jpeg-6b + >=sys-libs/zlib-1.1.4" + +# no configure for this puppy +src_compile() { + #note: We override CDEBUGFLAGS instead of CFLAGS because otherwise + # we lost the INCLUDES in the makefile. + make CDEBUGFLAGS="${CFLAGS}" || die "make failed" +} + + +# likewise, no make install (we're real Unix hackers, we are) +src_install() { + dobin vncsnapshot || die + cp vncsnapshot.man1 vncsnapshot.1 + doman vncsnapshot.1 +} + |