@mahjong @winksaville: There's a simple trick to check if your home
config files have any negative effect, run meshlab from console with altered $HOME e.g: HOME=/tmp/home meshlab
〜( ̄▽ ̄〜)
Search Criteria
Package Details: meshlab 2023.12-6
Package Actions
Git Clone URL: | https://aur.archlinux.org/meshlab.git (read-only, click to copy) |
---|---|
Package Base: | meshlab |
Description: | System for processing and editing of unstructured 3D models arising in 3D scanning (qt5 version) |
Upstream URL: | https://www.meshlab.net |
Licenses: | GPL2 |
Submitter: | bartus |
Maintainer: | bartus |
Last Packager: | bartus |
Votes: | 119 |
Popularity: | 0.37 |
First Submitted: | 2020-09-18 22:35 (UTC) |
Last Updated: | 2025-05-16 11:53 (UTC) |
Dependencies (27)
- bzip2 (bzip2-gitAUR)
- cgal (cgal-gitAUR)
- glew (glew-libepoxyAUR, glew-wayland-gitAUR, glew-gitAUR)
- glu (glu-gitAUR)
- gmp (gmp-hgAUR)
- mesa (mesa-wsl2-gitAUR, mesa-amd-bc250AUR, amdonly-gaming-mesa-gitAUR, mesa-minimal-gitAUR, mesa-fp8-gitAUR, mesa-gitAUR, mesa-amber)
- mpfr (mpfr-gitAUR)
- openssl (openssl-gitAUR, openssl-staticAUR)
- qhull
- qt5-base (qt5-base-gitAUR, qt5-base-headlessAUR)
- qt5-declarative (qt5-declarative-gitAUR)
- qt5-script (qt5-script-gitAUR)
- qt5-xmlpatterns (qt5-xmlpatterns-gitAUR)
- xerces-c
- boost (boost-gitAUR) (make)
- cmake (cmake3AUR, cmake-gitAUR) (make)
- eigen (eigen-gitAUR) (make)
- gcc13 (make)
- git (git-gitAUR, git-glAUR) (make)
- lib3dsAUR (make)
- muparser (make)
- ninja (ninja-kitwareAUR, ninja-fuchsia-gitAUR, ninja-gitAUR, ninja-jobserverAUR, ninja-memAUR) (make)
- openctm-toolsAUR (make)
- patchelf (patchelf-gitAUR) (make)
- lib3dsAUR (optional) – for Autodesk`s 3D-Studio r3 and r4 .3DS file support
- muparser (optional) – for filer_func plugins
- openctm-toolsAUR (optional) – for compressed triangle mesh file format
Required by (0)
Sources (2)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 .. 15 Next › Last »
bartus commented on 2021-08-26 07:04 (UTC) (edited on 2021-08-26 07:05 (UTC) by bartus)
wrvsrx commented on 2021-08-26 06:57 (UTC) (edited on 2021-08-26 07:06 (UTC) by wrvsrx)
I met the situation @mahjong said. But I fix by following method (I don't know which part solves the problem or why it works, but the white margin just disappears.)
Reboot. Log out from display. Connect to the PC by vnc (here white margin has disappeared). Log out from vnc. Remove kde config files. Log in to display.
I hope that can helps you.
mahjong commented on 2021-05-26 04:01 (UTC)
Does anyone else get that white area around mesh area (the area that has blue background)? https://imgur.com/6ZHMThA
Why am I getting it?
winksaville commented on 2020-07-02 23:19 (UTC)
I used pacman to install eigen:
sudo pacman -Syu eigen
But, I was still getting an error that eigen3 was missing:
$ makepkg -sir
==> Making package: meshlab 2020.06-1 (Thu 02 Jul 2020 01:16:09 PM PDT)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Installing missing dependencies...
error: target not found: eigen3
==> ERROR: 'pacman' failed to install missing dependencies.
==> Missing dependencies:
-> eigen3
==> ERROR: Could not resolve all dependencies.
So I changed "eigen3" to "eigen" in "makedepends" to get it working:
$ git diff PKGBUILD
diff --git a/PKGBUILD b/PKGBUILD
index 55b2e73..de27d91 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@ arch=('i686' 'x86_64')
url="http://www.meshlab.net"
license=('GPL2')
depends=('bzip2' 'glew' 'glu' 'openssl-1.0' 'qt5-base' 'qt5-declarative' 'qt5-script' 'qt5-xmlpatterns')
-makedepends=('cmake' 'eigen3' 'ninja' 'git' 'muparser' 'levmar' 'lib3ds' 'mpir')
+makedepends=('cmake' 'eigen' 'ninja' 'git' 'muparser' 'levmar' 'lib3ds' 'mpir')
optdepends=('u3d: for U3D and IDTF file support'
'lib3ds: for Autodesk`s 3D-Studio r3 and r4 .3DS file support'
'levmar: for isoparametrization and mutualcorrs plugins'
bartus commented on 2020-06-08 14:58 (UTC) (edited on 2020-06-08 14:58 (UTC) by bartus)
@daren, I've made some adjustment to ninja
call. But at the end I have to find a way to recreate options=(!makeflags)
like behavior for ninja
, as in contrast to make
it starts nproc+2
build jobs by default where make
starts single one...
ulidtko commented on 2020-06-08 10:50 (UTC)
Hey! Thanks for maintaining this.
Would you drop gcc10.patch from here? It doesn't apply anymore, since the upstream has already merged your GCC 10 fix.
disc-kuraudo commented on 2020-06-08 07:56 (UTC) (edited on 2020-06-08 07:56 (UTC) by disc-kuraudo)
Could you remove the MAKEFLAGS
from the ninja
line?
I put VERBOSE=1
in my MAKEFLAGS
to see all the flags during compilation and this just breaks:
-- Build files have been written to: /build/meshlab/src/build
ninja: Entering directory `/build/meshlab/src/build'
ninja: error: unknown target 'VERBOSE=1'
Either edit the MAKEFLAGS
before using it with make
or don't mix it with this ninja
shenanigans at all.
bartus commented on 2020-05-30 16:49 (UTC) (edited on 2020-05-30 16:49 (UTC) by bartus)
Some plugins (mainly render ones like SSAO) won't work with new cmake build system, will try to port qmake
patches to cmake
and fix those.
sl1pkn07 commented on 2020-04-07 09:10 (UTC) (edited on 2020-04-07 09:38 (UTC) by sl1pkn07)
fakepkg is not a official tool
tested in chroot (systemd-npawn) and makepkg
EDIT: fixed with
sed '1i#include <climits>' -i meshlab/src/external/structuresynth-1.5/ssynth/SyntopiaCore/GLEngine/Raytracer/AtomicCounter.h
in prepare(). also need more workground for build with Qt5.15 from [kde-unstable], like
sed '1i#include <QPainterPath>' -i meshlab/src/meshlab/glarea.cpp
greetings
bartus commented on 2020-04-04 14:30 (UTC)
@sl1pkn07: Can't reproduce with either gcc:9.2/9.3. Could you please check if clean chroot build works fine for you?
mkdir -p /tmp/clean
sudo mount -t tmpfs -o suid tmpfs /tmp/clean
fakepkg levmar f2c lib3ds mpir muparser -o /tmp/clean -j $(nproc)
extra-x86_64-build -c -r /tmp/clean/ -- $(printf -- "-I %s " /tmp/clean/*pkg*)
Pinned Comments
bartus commented on 2020-05-30 16:49 (UTC) (edited on 2020-05-30 16:49 (UTC) by bartus)
Some plugins (mainly render ones like SSAO) won't work with new cmake build system, will try to port
qmake
patches tocmake
and fix those.bartus commented on 2019-04-10 11:42 (UTC) (edited on 2021-08-26 06:58 (UTC) by bartus)
Please report
issues
andpatches
to github.com/AUR-meshlab