Package Details: gopenvpn-git svn.migration.r12.gb4192eb-9

Git Clone URL: https://aur.archlinux.org/gopenvpn-git.git (read-only, click to copy)
Package Base: gopenvpn-git
Description: gopenvpn is a simple graphical front-end for OpenVPN, the open source VPN solution.
Upstream URL: http://gopenvpn.sourceforge.net/
Keywords: frontend gui openvpn vpn
Licenses: GPL
Submitter: revel
Maintainer: None
Last Packager: revel
Votes: 30
Popularity: 0.000000
First Submitted: 2014-04-07 12:12 (UTC)
Last Updated: 2025-02-13 18:37 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

khvalera commented on 2017-02-13 20:57 (UTC)

makedepends=('git' 'polkit')

jvybihal commented on 2017-01-02 11:18 (UTC)

That was fast, thank you.

revel commented on 2017-01-02 10:32 (UTC)

@jvybihal: done, thanks!

jvybihal commented on 2017-01-02 09:32 (UTC)

Do you think, this will be possible to patch to adapt the recent OpenVPN 2.4.0 changes? https://www.archlinux.org/news/openvpn-240-update-requires-administrative-interaction/

revel commented on 2014-10-10 21:36 (UTC)

@msx: done, thanks!

msx commented on 2014-10-10 02:59 (UTC)

Hello @revel, could you please add gnome-keyring as an optdepend? It is required for storing the VPN credentials. TY very much for packaging this tool!

revel commented on 2014-06-26 09:56 (UTC)

@Archob: Thanks, updated.

ArchRob commented on 2014-06-26 06:00 (UTC)

Tried running and got this error: ``` *** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.18 but the autoconf macros are from gettext version 0.19 ``` which caused the build to fail. I found a cached copy of gettext 0.18, and downgraded with: `sudo pacman -U /var/cache/pacman/pkg/gettext-0.18.3.2-1-x86_64.pkg.tar.xz` This allowed me to build and install the package without error. Afterwords, I upgraded gettext with: `sudo pacman -U /var/cache/pacman/pkg/gettext-0.19.1-1-x86_64.pkg.tar.xz` This probably needs to be updated somewhere in the Makefiles.

revel commented on 2014-04-22 17:34 (UTC)

https://aur.archlinux.org/packages/gopenvpn-git/ builds fine

<deleted-account> commented on 2012-09-25 17:15 (UTC)

I build it from git a week ago. The errors you get from autoreconf -vi command pretty much tell you what needs to be done. Specifically, automake: warnings are treated as errors configure.ac:25: warning: The 'AM_PROG_MKDIR_P' macro is deprecated, and will soon be removed. configure.ac:25: You should use the Autoconf-provided 'AC_PROG_MKDIR_P' macro instead, configure.ac:25: and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files. autoreconf: automake failed with exit status: 1 I did a find . | xargs grep "AM_PROG_MKDIR" -s1 and find . | xargs grep "mkdir_p" -s1 to find the files with the strings in them and then replaced them with the ones mentioned in the error. It's then possible to build the package and install it.