[arch-commits] Commit in x11vnc/repos (14 files)
Gaetan Bisson
bisson at nymeria.archlinux.org
Wed Jul 24 02:13:55 UTC 2013
Date: Wednesday, July 24, 2013 @ 04:13:55
Author: bisson
Revision: 191363
db-move: moved x11vnc from [testing] to [extra] (i686, x86_64)
Added:
x11vnc/repos/extra-i686/PKGBUILD
(from rev 191362, x11vnc/repos/testing-i686/PKGBUILD)
x11vnc/repos/extra-i686/service
(from rev 191362, x11vnc/repos/testing-i686/service)
x11vnc/repos/extra-x86_64/PKGBUILD
(from rev 191362, x11vnc/repos/testing-x86_64/PKGBUILD)
x11vnc/repos/extra-x86_64/service
(from rev 191362, x11vnc/repos/testing-x86_64/service)
Deleted:
x11vnc/repos/extra-i686/PKGBUILD
x11vnc/repos/extra-i686/conf.d
x11vnc/repos/extra-i686/rc.d
x11vnc/repos/extra-i686/service
x11vnc/repos/extra-x86_64/PKGBUILD
x11vnc/repos/extra-x86_64/conf.d
x11vnc/repos/extra-x86_64/rc.d
x11vnc/repos/extra-x86_64/service
x11vnc/repos/testing-i686/
x11vnc/repos/testing-x86_64/
-----------------------+
/PKGBUILD | 60 ++++++++++++++++++++++++++++++++++++++++++++++++
/service | 14 +++++++++++
extra-i686/PKGBUILD | 37 -----------------------------
extra-i686/conf.d | 5 ----
extra-i686/rc.d | 37 -----------------------------
extra-i686/service | 7 -----
extra-x86_64/PKGBUILD | 37 -----------------------------
extra-x86_64/conf.d | 5 ----
extra-x86_64/rc.d | 37 -----------------------------
extra-x86_64/service | 7 -----
10 files changed, 74 insertions(+), 172 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2013-07-24 02:13:43 UTC (rev 191362)
+++ extra-i686/PKGBUILD 2013-07-24 02:13:55 UTC (rev 191363)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-
-pkgname=x11vnc
-pkgver=0.9.13
-pkgrel=3
-pkgdesc='VNC server for real X displays'
-url='http://www.karlrunge.com/x11vnc/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 'avahi')
-optdepends=('tk: for GUI support')
-backup=('etc/conf.d/x11vnc')
-source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
- 'service'
- 'conf.d'
- 'rc.d')
-sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
- '53e1ed7f84518a699a29607a03bee2321f9f9624'
- '11011cce06511e9ba61672a1c80bb63a3a187539'
- '477892cf0f0020043444b7493c80684762ded506')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --mandir=/usr/share/man
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
- install -Dm755 ../rc.d "${pkgdir}/etc/rc.d/x11vnc"
- install -Dm644 ../conf.d "${pkgdir}/etc/conf.d/x11vnc"
- install -Dm644 ../service "${pkgdir}/usr/lib/systemd/system/x11vnc.service"
- rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
-}
Copied: x11vnc/repos/extra-i686/PKGBUILD (from rev 191362, x11vnc/repos/testing-i686/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-07-24 02:13:55 UTC (rev 191363)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=x11vnc
+pkgver=0.9.13
+pkgrel=4
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: for GUI support')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 'avahi')
+source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
+ 'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+ '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ install -Dm644 ../service "${pkgdir}/usr/lib/systemd/system/x11vnc.service"
+ rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
+}
Deleted: extra-i686/conf.d
===================================================================
--- extra-i686/conf.d 2013-07-24 02:13:43 UTC (rev 191362)
+++ extra-i686/conf.d 2013-07-24 02:13:55 UTC (rev 191363)
@@ -1,5 +0,0 @@
-#
-# Parameters to be passed to x11vnc
-#
-
-X11VNC_ARGS=""
Deleted: extra-i686/rc.d
===================================================================
--- extra-i686/rc.d 2013-07-24 02:13:43 UTC (rev 191362)
+++ extra-i686/rc.d 2013-07-24 02:13:55 UTC (rev 191363)
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-. /etc/conf.d/x11vnc
-
-PID=$(pidof -o %PPID /usr/bin/x11vnc)
-case "$1" in
- start)
- stat_busy "Starting x11vnc"
- [[ -z "$PID" ]] && /usr/bin/x11vnc $X11VNC_ARGS &> /dev/null &
- if [[ $? -gt 0 ]]; then
- stat_fail
- else
- add_daemon x11vnc
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping x11vnc"
- [[ ! -z "$PID" ]] && kill $PID &> /dev/null
- if [[ $? -gt 0 ]]; then
- stat_fail
- else
- rm_daemon x11vnc
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0
Deleted: extra-i686/service
===================================================================
--- extra-i686/service 2013-07-24 02:13:43 UTC (rev 191362)
+++ extra-i686/service 2013-07-24 02:13:55 UTC (rev 191363)
@@ -1,7 +0,0 @@
-[Unit]
-Description=VNC Server for X11
-Requires=graphical.target
-After=graphical.target
-
-[Service]
-ExecStart=/usr/bin/x11vnc
Copied: x11vnc/repos/extra-i686/service (from rev 191362, x11vnc/repos/testing-i686/service)
===================================================================
--- extra-i686/service (rev 0)
+++ extra-i686/service 2013-07-24 02:13:55 UTC (rev 191363)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2013-07-24 02:13:43 UTC (rev 191362)
+++ extra-x86_64/PKGBUILD 2013-07-24 02:13:55 UTC (rev 191363)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-
-pkgname=x11vnc
-pkgver=0.9.13
-pkgrel=3
-pkgdesc='VNC server for real X displays'
-url='http://www.karlrunge.com/x11vnc/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 'avahi')
-optdepends=('tk: for GUI support')
-backup=('etc/conf.d/x11vnc')
-source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
- 'service'
- 'conf.d'
- 'rc.d')
-sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
- '53e1ed7f84518a699a29607a03bee2321f9f9624'
- '11011cce06511e9ba61672a1c80bb63a3a187539'
- '477892cf0f0020043444b7493c80684762ded506')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --mandir=/usr/share/man
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
- install -Dm755 ../rc.d "${pkgdir}/etc/rc.d/x11vnc"
- install -Dm644 ../conf.d "${pkgdir}/etc/conf.d/x11vnc"
- install -Dm644 ../service "${pkgdir}/usr/lib/systemd/system/x11vnc.service"
- rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
-}
Copied: x11vnc/repos/extra-x86_64/PKGBUILD (from rev 191362, x11vnc/repos/testing-x86_64/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2013-07-24 02:13:55 UTC (rev 191363)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=x11vnc
+pkgver=0.9.13
+pkgrel=4
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: for GUI support')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 'avahi')
+source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
+ 'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+ '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ install -Dm644 ../service "${pkgdir}/usr/lib/systemd/system/x11vnc.service"
+ rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
+}
Deleted: extra-x86_64/conf.d
===================================================================
--- extra-x86_64/conf.d 2013-07-24 02:13:43 UTC (rev 191362)
+++ extra-x86_64/conf.d 2013-07-24 02:13:55 UTC (rev 191363)
@@ -1,5 +0,0 @@
-#
-# Parameters to be passed to x11vnc
-#
-
-X11VNC_ARGS=""
Deleted: extra-x86_64/rc.d
===================================================================
--- extra-x86_64/rc.d 2013-07-24 02:13:43 UTC (rev 191362)
+++ extra-x86_64/rc.d 2013-07-24 02:13:55 UTC (rev 191363)
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-. /etc/conf.d/x11vnc
-
-PID=$(pidof -o %PPID /usr/bin/x11vnc)
-case "$1" in
- start)
- stat_busy "Starting x11vnc"
- [[ -z "$PID" ]] && /usr/bin/x11vnc $X11VNC_ARGS &> /dev/null &
- if [[ $? -gt 0 ]]; then
- stat_fail
- else
- add_daemon x11vnc
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping x11vnc"
- [[ ! -z "$PID" ]] && kill $PID &> /dev/null
- if [[ $? -gt 0 ]]; then
- stat_fail
- else
- rm_daemon x11vnc
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0
Deleted: extra-x86_64/service
===================================================================
--- extra-x86_64/service 2013-07-24 02:13:43 UTC (rev 191362)
+++ extra-x86_64/service 2013-07-24 02:13:55 UTC (rev 191363)
@@ -1,7 +0,0 @@
-[Unit]
-Description=VNC Server for X11
-Requires=graphical.target
-After=graphical.target
-
-[Service]
-ExecStart=/usr/bin/x11vnc
Copied: x11vnc/repos/extra-x86_64/service (from rev 191362, x11vnc/repos/testing-x86_64/service)
===================================================================
--- extra-x86_64/service (rev 0)
+++ extra-x86_64/service 2013-07-24 02:13:55 UTC (rev 191363)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc
More information about the arch-commits
mailing list