[arch-commits] Commit in kovpn/repos (8 files)

Sergej Pupykin spupykin at nymeria.archlinux.org
Tue Apr 30 11:56:21 UTC 2013


    Date: Tuesday, April 30, 2013 @ 13:56:21
  Author: spupykin
Revision: 89616

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  kovpn/repos/community-staging-i686/
  kovpn/repos/community-staging-i686/ChangeLog
    (from rev 89615, kovpn/trunk/ChangeLog)
  kovpn/repos/community-staging-i686/PKGBUILD
    (from rev 89615, kovpn/trunk/PKGBUILD)
  kovpn/repos/community-staging-i686/kovpn.install
    (from rev 89615, kovpn/trunk/kovpn.install)
  kovpn/repos/community-staging-x86_64/
  kovpn/repos/community-staging-x86_64/ChangeLog
    (from rev 89615, kovpn/trunk/ChangeLog)
  kovpn/repos/community-staging-x86_64/PKGBUILD
    (from rev 89615, kovpn/trunk/PKGBUILD)
  kovpn/repos/community-staging-x86_64/kovpn.install
    (from rev 89615, kovpn/trunk/kovpn.install)

----------------------------------------+
 community-staging-i686/ChangeLog       |    2 +
 community-staging-i686/PKGBUILD        |   43 +++++++++++++++++++++++++++++++
 community-staging-i686/kovpn.install   |   12 ++++++++
 community-staging-x86_64/ChangeLog     |    2 +
 community-staging-x86_64/PKGBUILD      |   43 +++++++++++++++++++++++++++++++
 community-staging-x86_64/kovpn.install |   12 ++++++++
 6 files changed, 114 insertions(+)

Copied: kovpn/repos/community-staging-i686/ChangeLog (from rev 89615, kovpn/trunk/ChangeLog)
===================================================================
--- community-staging-i686/ChangeLog	                        (rev 0)
+++ community-staging-i686/ChangeLog	2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,2 @@
+2007-06-25 Georg Grabler (STiAT) <ggrabler at gmail.com>
+* Added libtool option

Copied: kovpn/repos/community-staging-i686/PKGBUILD (from rev 89615, kovpn/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Douglas Soares de Andrade <dsandrade at gmail.com>
+
+pkgname=kovpn
+pkgver=0.3pre7
+_pkgver=0.3.pre7
+pkgrel=7
+pkgdesc="An OpenVPN client management interface for KDE"
+arch=('i686' 'x86_64')
+url="http://www.kde-apps.org/content/show.php?content=37043"
+license=('GPL')
+depends=('openvpn' 'kdelibs3' 'xdg-utils')
+makedepends=('automake' 'autoconf')
+options=('libtool')
+install=kovpn.install
+DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
+          'http::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
+          'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u')
+source=("https://projects.fslab.de/projects/kovpn/chrome/site/kovpn-${_pkgver}.tar.bz2"
+	"kovpn-disable-dcop.patch::https://bugs.archlinux.org/task/15464?getfile=4173")
+md5sums=('19b61cf9f84088baffbd5bb0a287422c'
+         '21171b74f76289daea1cc61eedaa4dba')
+
+build() {
+  cd $srcdir/$pkgname-$_pkgver
+
+  unset LDFLAGS
+  export QTDIR=/usr
+  export QMAKESPEC=/usr/share/qt3/mkspecs/linux-g++
+
+  patch -Np1 -i ../kovpn-disable-dcop.patch
+  sed -i "s#automake\*1.10\*#automake*`pacman -Q automake | cut -f2 -d\ |cut -f1-2 -d.`*#" admin/cvs.sh
+  sed -i 's#AM_CONFIG_HEADER#AC_CONFIG_HEADER#g' admin/{cvs.sh,configure.in.min}
+  make -f admin/Makefile.common cvs
+  ./configure --prefix=/opt/kde --without-arts --with-qt-dir=/opt/qt
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_pkgver
+  make prefix=$pkgdir/usr install
+}

Copied: kovpn/repos/community-staging-i686/kovpn.install (from rev 89615, kovpn/trunk/kovpn.install)
===================================================================
--- community-staging-i686/kovpn.install	                        (rev 0)
+++ community-staging-i686/kovpn.install	2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,12 @@
+post_install() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
+}
+

Copied: kovpn/repos/community-staging-x86_64/ChangeLog (from rev 89615, kovpn/trunk/ChangeLog)
===================================================================
--- community-staging-x86_64/ChangeLog	                        (rev 0)
+++ community-staging-x86_64/ChangeLog	2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,2 @@
+2007-06-25 Georg Grabler (STiAT) <ggrabler at gmail.com>
+* Added libtool option

Copied: kovpn/repos/community-staging-x86_64/PKGBUILD (from rev 89615, kovpn/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Douglas Soares de Andrade <dsandrade at gmail.com>
+
+pkgname=kovpn
+pkgver=0.3pre7
+_pkgver=0.3.pre7
+pkgrel=7
+pkgdesc="An OpenVPN client management interface for KDE"
+arch=('i686' 'x86_64')
+url="http://www.kde-apps.org/content/show.php?content=37043"
+license=('GPL')
+depends=('openvpn' 'kdelibs3' 'xdg-utils')
+makedepends=('automake' 'autoconf')
+options=('libtool')
+install=kovpn.install
+DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
+          'http::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
+          'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u')
+source=("https://projects.fslab.de/projects/kovpn/chrome/site/kovpn-${_pkgver}.tar.bz2"
+	"kovpn-disable-dcop.patch::https://bugs.archlinux.org/task/15464?getfile=4173")
+md5sums=('19b61cf9f84088baffbd5bb0a287422c'
+         '21171b74f76289daea1cc61eedaa4dba')
+
+build() {
+  cd $srcdir/$pkgname-$_pkgver
+
+  unset LDFLAGS
+  export QTDIR=/usr
+  export QMAKESPEC=/usr/share/qt3/mkspecs/linux-g++
+
+  patch -Np1 -i ../kovpn-disable-dcop.patch
+  sed -i "s#automake\*1.10\*#automake*`pacman -Q automake | cut -f2 -d\ |cut -f1-2 -d.`*#" admin/cvs.sh
+  sed -i 's#AM_CONFIG_HEADER#AC_CONFIG_HEADER#g' admin/{cvs.sh,configure.in.min}
+  make -f admin/Makefile.common cvs
+  ./configure --prefix=/opt/kde --without-arts --with-qt-dir=/opt/qt
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$_pkgver
+  make prefix=$pkgdir/usr install
+}

Copied: kovpn/repos/community-staging-x86_64/kovpn.install (from rev 89615, kovpn/trunk/kovpn.install)
===================================================================
--- community-staging-x86_64/kovpn.install	                        (rev 0)
+++ community-staging-x86_64/kovpn.install	2013-04-30 11:56:21 UTC (rev 89616)
@@ -0,0 +1,12 @@
+post_install() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
+}
+




More information about the arch-commits mailing list