summaryrefslogtreecommitdiff
path: root/net-misc/vncsnapshot
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /net-misc/vncsnapshot
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'net-misc/vncsnapshot')
-rw-r--r--net-misc/vncsnapshot/Manifest1
-rw-r--r--net-misc/vncsnapshot/files/vncsnapshot-1.2a-amd64grey.patch11
-rw-r--r--net-misc/vncsnapshot/metadata.xml8
-rw-r--r--net-misc/vncsnapshot/vncsnapshot-1.2a-r1.ebuild61
4 files changed, 0 insertions, 81 deletions
diff --git a/net-misc/vncsnapshot/Manifest b/net-misc/vncsnapshot/Manifest
deleted file mode 100644
index 9b3c536e8cdf..000000000000
--- a/net-misc/vncsnapshot/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST vncsnapshot-1.2a-src.tar.bz2 70121 BLAKE2B 91e2d1e998f102707e00e5e83e9060fa88f1140b64029564977b93ac5b701be3408540ef76addf4ddf2cccfa973c59f94a127c74f44143c3683e38b0e9359c6d SHA512 2ae53a043c11d02bbb7ff6afc000eef268448643ba1db7b6c5a55fe3e25e65e1b22e64e855d33dfe55b1df04dc57f592e48c44918943642da19f7d06df77027c
diff --git a/net-misc/vncsnapshot/files/vncsnapshot-1.2a-amd64grey.patch b/net-misc/vncsnapshot/files/vncsnapshot-1.2a-amd64grey.patch
deleted file mode 100644
index ac8fdce76a84..000000000000
--- a/net-misc/vncsnapshot/files/vncsnapshot-1.2a-amd64grey.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/rfb.h 2002-02-09 16:00:42.000000000 -0500
-+++ b/rfb.h 2008-09-24 16:57:13.000000000 -0400
-@@ -34,7 +34,7 @@
-
- // Define the CARD* types as used in X11/Xmd.h
-
--typedef unsigned long CARD32;
-+typedef unsigned int CARD32;
- typedef unsigned short CARD16;
- typedef short INT16;
- typedef unsigned char CARD8;
diff --git a/net-misc/vncsnapshot/metadata.xml b/net-misc/vncsnapshot/metadata.xml
deleted file mode 100644
index 3f4352c0c0c7..000000000000
--- a/net-misc/vncsnapshot/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="sourceforge">vncsnapshot</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-misc/vncsnapshot/vncsnapshot-1.2a-r1.ebuild b/net-misc/vncsnapshot/vncsnapshot-1.2a-r1.ebuild
deleted file mode 100644
index a5e61dcd4a41..000000000000
--- a/net-misc/vncsnapshot/vncsnapshot-1.2a-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Command-line tool for taking JPEG snapshots of VNC servers"
-HOMEPAGE="https://vncsnapshot.sourceforge.net/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${P}-src.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ppc x86"
-
-DEPEND="
- media-libs/libjpeg-turbo:=
- virtual/zlib:=
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}/${P}-amd64grey.patch"
-)
-
-src_prepare() {
- default
-
- sed \
- -e 's:-I/usr/local/include::g' \
- -e 's:-L/usr/local/lib::g' \
- -e '/^all:/s|$(SUBDIRS:.dir=.all)||g' \
- -e '/^vnc/s|$| $(SUBDIRS:.dir=.all)|g' \
- -i Makefile || die
-
- # Preserve make instance
- sed -i -e 's/make/$(MAKE)/' Makefile || die
-
- # Respect RANLIB
- sed -i -e 's/ranlib/$(RANLIB)/' rdr/Makefile || die
-}
-
-src_compile() {
- # We override CDEBUGFLAGS instead of CFLAGS because otherwise
- # we lose the INCLUDES in the makefile. The same flags are used
- # for both.
- # bug #295741
- local args=(
- AR="$(tc-getAR)"
- CDEBUGFLAGS="${CXXFLAGS}"
- CC="$(tc-getCC)"
- CXX="$(tc-getCXX)"
- RANLIB="$(tc-getRANLIB)"
- )
- emake "${args[@]}"
-}
-
-src_install() {
- dobin vncsnapshot
- newman vncsnapshot.man1 vncsnapshot.1
-}