Package Details: wxhexeditor 0.24-4

Git Clone URL: https://aur.archlinux.org/wxhexeditor.git (read-only, click to copy)
Package Base: wxhexeditor
Description: A free hex editor / disk editor for Linux, Windows and MacOSX
Upstream URL: http://www.wxhexeditor.org
Licenses: GPL2
Submitter: None
Maintainer: severach (mxfm)
Last Packager: severach
Votes: 87
Popularity: 0.000027
First Submitted: 2009-01-20 22:52 (UTC)
Last Updated: 2022-12-16 03:28 (UTC)

Dependencies (4)

Required by (0)

Sources (3)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 11 Next › Last »

toyarchery commented on 2019-08-06 09:02 (UTC)

Oh ok, I guess gksu-polkit-git can also be used instead

mxfm commented on 2019-08-06 08:57 (UTC)

gksu was obsoleted by gnome some time ago (and it had no contribution since 2011 or so). It should be replaced with polkit support (read wiki page "Running applications as root"). The gksu package was removed from arch repos 1-2 years ago.

On the other hand, this package can provide a '.rules' file as a measure to support root priviliges instead of gksu. I will look at weekend.

toyarchery commented on 2019-08-05 20:08 (UTC) (edited on 2019-08-06 17:18 (UTC) by toyarchery)

It should have gksu as an optional dependency, this or gnomesu is used when you try to open a device without permission

dario commented on 2019-06-06 17:43 (UTC)

@mxfm, you're welcome.

mxfm commented on 2019-05-25 09:44 (UTC)

@dario, thanks. PKGBUILD was updated to use wxgtk3. In addition, python was added to makedepends as some components seems to regure it during compilation. When doing building in clean chroot, I had "configure: error: Python was not found".

dario commented on 2019-04-27 20:48 (UTC) (edited on 2019-04-27 20:50 (UTC) by dario)

This PKGBUILD works for me with GTK3:

# Maintainer: Steven Honeyman <stevenhoneyman at gmail com>

pkgname=wxhexeditor
pkgver=0.24
pkgrel=1
pkgdesc="A free hex editor / disk editor for Linux, Windows and MacOSX"
arch=('i686' 'x86_64')
url="http://www.wxhexeditor.org"
license=('GPL2')
depends=('wxgtk3')
source=("https://github.com/EUA/wxHexEditor/archive/v$pkgver.tar.gz")
md5sums=('1b77bddc026e22797fd0e7a82e52cd28')

build() {
    cd "$srcdir/wxHexEditor-$pkgver"
    make WXCONFIG="/usr/bin/wx-config-gtk3"
}

package() {
    cd "$srcdir/wxHexEditor-$pkgver"
    make WXCONFIG="/usr/bin/wx-config-gtk3" DESTDIR="$pkgdir" PREFIX="/usr" install
}

StarterX4 commented on 2019-04-19 12:04 (UTC) (edited on 2019-04-19 12:04 (UTC) by StarterX4)

Nah

src/HexDialogs.cpp: In member function ‘virtual void FindDialog::EventHandler(wxCommandEvent&)’: src/HexDialogs.cpp:423:41: error: expected ‘;’ before ‘parent’ WX_CLEAR_ARRAY(parent->HighlightArray ) ^ ; parent->HighlightArray.Shrink(); ~~~~~~

dario commented on 2019-04-17 22:35 (UTC)

The package does successfully build with GTK3. In the PKGBUILD just replace "makedepends=('wxgtk')" with "depends=('wxgtk3')" and "make" inside build() with "make WXCONFIG=/usr/bin/wx-config-gtk3". Perhaps there is a leaner way to do it, but I see no reason not to use the latest GTK.