Package Details: openfortigui 0.9.10-1

Git Clone URL: https://aur.archlinux.org/openfortigui.git (read-only, click to copy)
Package Base: openfortigui
Description: OpenFortiGUI is an open-source VPN-Client to connect to Fortigate VPN-Hardware. It is based on openfortivpn and adds an easy to use and nice GUI on top of it, written in Qt5.
Upstream URL: https://hadler.me/linux/openfortigui/
Licenses: GPL3
Submitter: macfly
Maintainer: macfly
Last Packager: macfly
Votes: 22
Popularity: 0.44
First Submitted: 2018-01-03 19:14 (UTC)
Last Updated: 2024-03-19 09:14 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

codezero commented on 2022-03-14 15:54 (UTC) (edited on 2022-03-14 15:56 (UTC) by codezero)

I attempted today, still same error. Tried clearing install cache, dependencies and all. Still same result. I'm using openfortivpn on terminal while understanding why is not installing.

macfly commented on 2022-03-13 09:06 (UTC)

@codezero bits/strings_fortified.h is part of glibc so error seems strange, I've retried to build the package with last glibc 2.35-2 without issue.

codezero commented on 2022-03-11 16:32 (UTC)

Package install failure:

/usr/include/strings.h:144:12: fatal error: bits/strings_fortified.h: No such file or directory 144 | # include <bits/strings_fortified.h> | ^~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make[1]: [Makefile:1061: main.o] Error 1 make[1]: Leaving directory '/home/cz/.cache/yay/openfortigui/src/openfortigui/openfortigui' make: [Makefile:47: sub-openfortigui-make_first] Error 2 ==> ERROR: A failure occurred in build(). Aborting... -> error making: openfortigui

GeBo commented on 2021-02-20 16:46 (UTC)

@jvybihal: Thanks! Removing make clean from PKGBUILD and then run makepkg did the trick.

jvybihal commented on 2021-02-20 12:45 (UTC)

@macfly I think you should not call make clean before qmake since in this stage, makefile does not exist yet:

==> Sources are ready.
==> Making package: openfortigui 0.9.3-1 (Sat 20 Feb 2021 01:40:13 PM CET)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
make: *** No rule to make target 'clean'.  Stop.
==> ERROR: A failure occurred in build().
    Aborting...
error making: openfortigui

And since the makefile is generated, it feels arbitrary to include make clean at all.

pad commented on 2020-09-09 11:57 (UTC) (edited on 2020-09-09 11:58 (UTC) by pad)

@jvybihal the patch work fine if we fix path in PKGBUILD

@aminvakil I have the same issue with makepkg

we need to replace patch -p1 < ../../user-env.patch with patch -p1 < ../user-env.patch into PKGBUILD

jvybihal commented on 2020-09-09 10:53 (UTC)

@pad, try running yay -Scc, clean ALL old cache and try again. The patch works fine with yay here.

aminvakil commented on 2020-09-09 09:48 (UTC)

@pad I think the problem for you is using yay. try this:

git clone https://aur.archlinux.org/openfortigui.git
cd openfortigui
sudo makepkg -sri

pad commented on 2020-09-09 07:24 (UTC) (edited on 2020-09-09 07:28 (UTC) by pad)

unable to install package

:: (1/1) Parsing SRCINFO: openfortigui
==> Making package: openfortigui 0.9.2-1 (Wed 09 Sep 2020 09:23:14 AM CEST)
==> Retrieving sources...
  -> Cloning openfortigui git repo...
Cloning into bare repository '/home/pascal/.cache/yay/openfortigui/openfortigui'...
remote: Enumerating objects: 350, done.
remote: Counting objects: 100% (350/350), done.
remote: Compressing objects: 100% (209/209), done.
remote: Total 1977 (delta 232), reused 238 (delta 137), pack-reused 1627
Receiving objects: 100% (1977/1977), 17.33 MiB | 11.93 MiB/s, done.
Resolving deltas: 100% (1361/1361), done.
  -> Found user-env.patch
==> Validating source files with md5sums...
    openfortigui ... Skipped
    user-env.patch ... Passed
==> Making package: openfortigui 0.9.2-1 (Wed 09 Sep 2020 09:23:18 AM CEST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Updating openfortigui git repo...
Fetching origin
  -> Found user-env.patch
==> Validating source files with md5sums...
    openfortigui ... Skipped
    user-env.patch ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
  -> Creating working copy of openfortigui git repo...
Cloning into 'openfortigui'...
done.
Switched to a new branch 'makepkg'
==> Starting prepare()...
Submodule 'openfortigui/openfortivpn' (https://github.com/adrienverge/openfortivpn.git) registered for path 'openfortivpn'
Cloning into '/tmp/makepkg/openfortigui/src/openfortigui/openfortigui/openfortivpn'...
Submodule path 'openfortivpn': checked out '355a80338fcd47d5151eed21fe24fc440f6c3442'
/home/pascal/.cache/yay/openfortigui/PKGBUILD: line 27: ../../user-env.patch: No such file or directory
==> ERROR: A failure occurred in prepare().
    Aborting...
error making: openfortigui

change

    patch -p1 < ../../user-env.patch

with

    patch -p1 < ../user-env.patch