X-Git-Url: https://git.proxmox.com/?p=vncterm.git;a=blobdiff_plain;f=Makefile;h=5576560d2a0f0ec4832e8b3c001c55cd40c567f6;hp=0d881fea3af81ae3ada165951eb9aca975613c1e;hb=c5ce64cfe726b8429bca1bad4346d90d822efe8b;hpb=e6d0212c1efc9ee64187dc1b398fcae3df3a526b diff --git a/Makefile b/Makefile index 0d881fe..5576560 100644 --- a/Makefile +++ b/Makefile @@ -1,27 +1,31 @@ -RELEASE=2.0 +RELEASE=4.0 PACKAGE=vncterm -VERSION=1.0 +# Note: also change version in debian/control and debian/changelog +VERSION=1.3 PACKAGERELEASE=1 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH) CDATE:=$(shell date +%F) -VNCVER=0.9.7 -VNCDIR=LibVNCServer-${VNCVER} -VNCSRC=${VNCDIR}.tar.gz +VNCVER=0.9.11 +VNCREL=LibVNCServer-${VNCVER} +VNCDIR=libvncserver-${VNCREL} +VNCSRC=${VNCREL}.tar.gz VNCLIB=${VNCDIR}/libvncserver/.libs/libvncserver.a TIGERVNCSRC=tigervnc-1.1.0.tgz +#TIGERVNCSRC=tigervnc-1.2.0.tgz DEB=${PACKAGE}_${VERSION}-${PACKAGERELEASE}_${ARCH}.deb SNAP=${PACKAGE}-${VERSION}-${CDATE}.tar.gz -KEYSTORE=/home/dietmar/pve2-proxdev/proxmox-dev/proxmox-java.keystore +KEYSTORE=/home/dietmar/pve2-proxdev/proxmox-dev/comodo-for-java.keystore all: vncterm glyphs.h: genfont - ./genfont > glyphs.h + ./genfont > glyphs.h.tmp + mv glyphs.h.tmp glyphs.h genfont: genfont.c gcc -g -O2 -o $@ genfont.c -Wall -D_GNU_SOURCE -lz @@ -32,25 +36,31 @@ ${VNCLIB} vnc: ${VNCSRC} tar xf ${VNCSRC} ln -s ../vncpatches ${VNCDIR}/patches cd ${VNCDIR}; quilt push -a - cd ${VNCDIR}; ./configure; + cd ${VNCDIR}; ./autogen.sh --without-ssl --without-websockets --without-tightvnc-filetransfer; cd ${VNCDIR}; make vncterm: vncterm.c glyphs.h ${VNCLIB} - gcc -O2 -g -o $@ vncterm.c -Wall -D_GNU_SOURCE -I ${VNCDIR} ${VNCLIB} -lnsl -lpthread -lz -ljpeg -lutil -lgnutls + gcc -O2 -g -o $@ vncterm.c -Wall -Wno-deprecated-declarations -D_GNU_SOURCE -I ${VNCDIR} ${VNCLIB} -lnsl -lpthread -lz -ljpeg -lutil -lgnutls -lpng jar: tigervnc.org + if test ! -f /usr/share/icedtea-web/plugin.jar; then echo "please install package icedtea-netx-common"; exit 1; fi rm -rf tigervnc VncViewer.jar rsync -av --exclude .svn --exclude .svnignore tigervnc.org/ tigervnc ln -s ../tigerpatches tigervnc/patches cd tigervnc; quilt push -a cd tigervnc/java/src/com/tigervnc/vncviewer; make clean; make - jarsigner -keystore ${KEYSTORE} -signedjar VncViewer.jar tigervnc/java/src/com/tigervnc/vncviewer/VncViewer.jar proxmox + jarsigner -keystore ${KEYSTORE} -signedjar VncViewer.jar tigervnc/java/src/com/tigervnc/vncviewer/VncViewer.jar "dc475d72-124a-11e4-a53f-005056c00008" + +# this is for version 1.2 +# ln -s ../newtigerpatches tigervnc/patches +# cd tigervnc/java;cmake -G "Unix Makefiles"; make +# jarsigner -keystore ${KEYSTORE} -signedjar VncViewer.jar tigervnc/java/VncViewer.jar proxmox tigervnc.org: ${TIGERVNCSRC} rm -rf tigervnc.org tar xf ${TIGERVNCSRC} -downlaod: +download: rm -rf tigervnc.org svn co https://tigervnc.svn.sourceforge.net/svnroot/tigervnc/tags/1_1_0 tigervnc.org tar cf ${TIGERVNCSRC} tigervnc.org @@ -73,7 +83,8 @@ vncterm.1: vncterm.pod pod2man -n $< -s 1 -r ${VERSION} <$< >$@ .PHONY: deb -${DEB} deb: +deb: $(DEB) +${DEB}: make clean rm -rf dest mkdir dest @@ -94,17 +105,11 @@ ${DEB} deb: .PHONY: upload upload: ${DEB} - umount /pve/${RELEASE}; mount /pve/${RELEASE} -o rw - mkdir -p /pve/${RELEASE}/extra - rm -f /pve/${RELEASE}/extra/${PACKAGE}_*.deb - rm -f /pve/${RELEASE}/extra/Packages* - cp ${DEB} /pve/${RELEASE}/extra - cd /pve/${RELEASE}/extra; dpkg-scanpackages . /dev/null > Packages; gzip -9c Packages > Packages.gz - umount /pve/${RELEASE}; mount /pve/${RELEASE} -o ro + tar cf - ${DEB} | ssh repoman@repo.proxmox.com upload .PHONY: clean clean: - rm -rf vncterm vncterm.1 vncterm_*.deb tigervnc *~ ${VNCDIR} vncterm-*.tar.gz + rm -rf vncterm vncterm.1 vncterm_*.deb tigervnc *~ ${VNCDIR} vncterm-*.tar.gz glyph.h.tmp .PHONY: distclean distclean: clean @@ -118,4 +123,4 @@ ${SNAP} dist: distclean .PHONY: uploaddist uploaddist: ${SNAP} - scp ${SNAP} pve.proxmox.com:/home/ftp/sources/ \ No newline at end of file + scp ${SNAP} pve.proxmox.com:/home/ftp/sources/