Package Details: ssvnc 1.0.29-10

Git Clone URL: https://aur.archlinux.org/ssvnc.git (read-only, click to copy)
Package Base: ssvnc
Description: SSL/SSH VNC viewer
Upstream URL: http://www.karlrunge.com/x11vnc/ssvnc.html
Licenses: GPL
Groups: network
Submitter: adlerweb
Maintainer: jose1711
Last Packager: jose1711
Votes: 31
Popularity: 0.000000
First Submitted: 2010-01-17 00:46 (UTC)
Last Updated: 2019-07-26 19:47 (UTC)

Dependencies (13)

Required by (0)

Sources (3)

Latest Comments

1 2 3 Next › Last »

dreieck commented on 2023-09-05 16:42 (UTC)

Dependency libjpeg>=7 cannot be resolved.

bidulock commented on 2021-09-27 02:04 (UTC)

See comment in ssvnc-nojava package to see how to fix build.

angelv commented on 2021-03-25 11:07 (UTC) (edited on 2021-03-25 11:07 (UTC) by angelv)

Hi, trying to update ssvnc, it tells me:

error: target not found: libjpeg>=7

But I have the latest libjpeg-turbo (2.0.6-1) installed, which provides jpeg 8.x version?

$ pacman -Q | grep libjpeg-turbo

lib32-libjpeg-turbo 2.0.6-1

libjpeg-turbo 2.0.6-1

thithib commented on 2019-07-26 19:07 (UTC)

Thanks @jose1711! Also, I just noticed that stunnel was listed in both depends and optdepends.

jose1711 commented on 2019-07-26 16:51 (UTC)

@thithib thank you for the additional info - i've updated the PKGBUILD

thithib commented on 2019-07-26 14:12 (UTC)

@jose1711

Yes actually the problem seems to only occur when building with makechrootpkg (the build works fine with makepkg). Using patch -p0 < "$srcdir/Makefile.patch" instead of patch -p0 < "../../Makefile.patch" fixes the build for me. I'm not sure why you're not using $srcdir here - especially since you do so on the preceding line - but from my understanding of the Arch Linux build system it would be better.

jose1711 commented on 2019-07-26 10:18 (UTC)

@thithib

i cannot reproduce the issue. archlinux java is set to java-12-openjdk.

thithib commented on 2019-07-21 00:00 (UTC)

Got the following error when building:

==> Starting prepare()... patching file vncstorepw/ultravnc_dsm_helper.c /startdir/PKGBUILD: line 25: ../../Makefile.patch: No such file or directory ==> ERROR: A failure occurred in prepare(). Aborting...

jose1711 commented on 2019-06-19 16:41 (UTC)

@maxdevaine fixed, thanks max

maxdevaine commented on 2019-06-18 08:07 (UTC) (edited on 2019-06-18 08:16 (UTC) by maxdevaine)

Hello,

compilation give this error :
error: Source option 1.4 is no longer supported. Use 7 or later.

So, is neccessary to patch "ultraftp/Makefile" file. Like this "Makefile.patch" (just remove line "JC_ARGS = -target 1.4 -source 1.4") :

--- ultraftp/Makefile 2019-06-18 10:04:13.000000000 +0200
+++ ../../Makefile 2019-06-18 10:03:52.000000000 +0200
@@ -3,7 +3,6 @@
SOURCES = $(shell echo *.java)
CLASSES = $(SOURCES:%.java=%.class)
ARCHIVE = ultraftp.jar
-JC_ARGS = -target 1.4 -source 1.4

all: $(CLASSES) $(ARCHIVE)

and PKGBUILD should look like this :

...
source= (http://downloads.sf.net/sourceforge/$pkgname/$pkgname-$pkgver.src.tar.gz
openssl1.1.patch
Makefile.patch)

md5sums=('52201aeb0417c2a0fe83639e52da6ae5'
'6a119a5748a231f63c96044a2761845f'
'dd77c1dd3c3945a24be0046f4e7c7c7c')

prepare() {
cd "$srcdir/$pkgname-$pkgver"
patch -p1 < "$srcdir/openssl1.1.patch"
patch -p0 < "../../Makefile.patch"
}
...

Now all works fine.
Can you update your PKGBUILD?

Thanks
Max