Package Details: dump 0.4b47-1

Git Clone URL: https://aur.archlinux.org/dump.git (read-only, click to copy)
Package Base: dump
Description: Dump/Restore ext2/3/4 filesystem backup
Upstream URL: http://dump.sourceforge.net
Keywords: backup dump filesystem restore
Licenses: BSD
Submitter: Snowman
Maintainer: None
Last Packager: 0b100100
Votes: 28
Popularity: 0.000049
First Submitted: 2007-11-27 02:16 (UTC)
Last Updated: 2021-12-28 22:23 (UTC)

Latest Comments

1 2 3 Next › Last »

0b100100 commented on 2021-11-25 19:07 (UTC)

Great. Thanks for your feedback.

simona commented on 2021-11-25 19:02 (UTC)

now ok for me. thx.

simona commented on 2021-10-01 17:58 (UTC)

/bin/ld: main.o:(.bss+0x13c0): multiple definition of `u_spcl'; itime.o:(.bss+0x20): first defined here

tsm commented on 2020-08-30 01:56 (UTC)

Looks like this does not compile under gcc 10, but does if you add CC=gcc-9 to the ./configure environment in PKGBUILD (with gcc9 installed, of course).

christianlupus commented on 2019-03-26 13:19 (UTC) (edited on 2019-03-26 13:20 (UTC) by christianlupus)

Please consider this diff to avoid compiling problems while having the newer openssl-1.1.x installed:

diff --git a/PKGBUILD b/PKGBUILD
index [`9e89206`](https://aur.archlinux.org/cgit/aur.git/commit/?h=dump&id=9e89206)..ff57663 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -21,13 +21,15 @@ arch=('i686' 'x86_64')
 url="<http://dump.sourceforge.net/>"
 license=('BSD')
 depends=('e2fsprogs')
-makedepends=('autoconf' 'automake' 'pkg-config')
+makedepends=('autoconf' 'automake' 'pkg-config' 'openssl-1.0')
 source=("<http://downloads.sourceforge.net/>$pkgname/$pkgname-$pkgver.tar.gz")
 md5sums=('4c463f797e7e8a1112fabf5cbf8e1855')

 build() {
   cd "$srcdir"/$pkgname-$pkgver

+  PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig \
+  CFLAGS+=" -I/usr/include/openssl-1.0" \
   ./configure --prefix=/usr \
     --sysconfdir=/etc \
     --with-manowner=root \

zlopi commented on 2018-03-21 05:50 (UTC) (edited on 2018-03-21 05:55 (UTC) by zlopi)

need rebuild

PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig \
CFLAGS+=" -I/usr/include/openssl-1.0" \
LDFLAGS+=" -L/usr/lib/openssl-1.0 -lssl"  \
./configure

fukawi2 commented on 2017-06-05 23:35 (UTC)

Looks like there's some upstream breakages with SSL also -- I don't know enough C to be able to patch it. If someone wants to provide a patch, or take over ownership, let me know.

grawity commented on 2017-05-25 17:42 (UTC)

Needs to be built using: CFLAGS+=" -I/usr/include/openssl-1.0" LDFLAGS+=" -L/usr/lib/openssl-1.0" Also: "configure: WARNING: unrecognized options: --with-manowner, --with-mangrp, --with-manmode, --with-bingrp, --disable-transselinux"

fukawi2 commented on 2015-01-19 21:47 (UTC)

Doh! I knew I was missing something obvious. I was comparing it to the autoreconf.patch but that file is in the root so it didn't need the -p0. Thanks :) Patch added to pkgrel -4

pbor commented on 2015-01-19 10:52 (UTC)

fukawi2, you need to use the following line to apply that patch: patch -p0 < "$srcdir"/restore-rmdir.patch" Without '-p0' option, patch looks for restore.c file in current directory. By providing -p0 option, you tell patch to use full path to restore.c (restore/restore.c).