mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-24 15:51:03 +02:00
rdd: Let's try to use the provided configure script instead of running autotools
This commit is contained in:
parent
3fc55be1ea
commit
cd04762d88
2 changed files with 48 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
DIST rdd-3.0.2.tar.gz 6133423 RMD160 37923c89414fb6651c44d2c4c3ed7e02fc726309 SHA1 21b4a4884bf88b38dc7f44eaf8459a8efde168be SHA256 9487f281b336153a427711a4137472d32cd325b4d24a12fde207d1af81c398b2
|
||||
EBUILD rdd-3.0.2-r1.ebuild 1155 RMD160 36a440f4ae75085412326b8843a2ae223b231093 SHA1 ba54cf9f554c2f439a3409d0d98c55252b608724 SHA256 5880f73554182709df63986822ed748a8d3b897ffcd4ba3b0bbcf0f0444bdf48
|
||||
EBUILD rdd-3.0.2-r2.ebuild 1140 RMD160 630d742609fb85cd99b0eb5bc7c3a7e5ac206ee9 SHA1 5f61342038e116eed8b4f2ab4b4247b3bad59820 SHA256 77e600d8b7ed2735cb3faf121ec772bd66efe460d701ec21e9bdf2e667587b6d
|
||||
EBUILD rdd-3.0.2.ebuild 1141 RMD160 0791c29e55eebc1291b2587808462e162e227e39 SHA1 ba7eec99509c17137582c8d1032037925a487927 SHA256 0d9d5e846a831a1a0e0850374fcda3794e88f054166b0ffaf99a4cc3576fa5d8
|
||||
MISC ChangeLog 532 RMD160 42fba0bc7bbddc3e5c12343be7171526cc481ab1 SHA1 8f9dbac487e1e756e850fc96cf5396eee00f0517 SHA256 153afc86f379c4d90e2e72300d26910c0b6e62ca89b3786cb15ae17a21352654
|
||||
MISC metadata.xml 326 RMD160 f650475822130fc46fa42eed126118799b42c95e SHA1 e9188a7b4220290b35cafc4873ace04fbd77520a SHA256 0e966186ac56b3a5d4e515a4c8da65fd88a46bcec8d037533bfcb0a8e8126ed9
|
||||
|
|
|
|||
47
app-forensics/rdd/rdd-3.0.2-r2.ebuild
Normal file
47
app-forensics/rdd/rdd-3.0.2-r2.ebuild
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-forensics/rdd/rdd-2.0.7.ebuild,v 1.2 2009/09/11 11:22:05 flameeyes Exp $
|
||||
|
||||
EAPI="4"
|
||||
|
||||
DESCRIPTION="Rdd is a forensic copy program"
|
||||
HOMEPAGE="http://www.sf.net/projects/rdd"
|
||||
SRC_URI="mirror://sourceforge/rdd/rdd-${PV}.tar.gz"
|
||||
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="debug"
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
|
||||
#GUI is broken, see upstream https://sourceforge.net/tracker/?func=detail&atid=837482&aid=3112605&group_id=165965
|
||||
|
||||
#DEPEND="gtk? ( >=x11-libs/gtk+-2
|
||||
# >=gnome-base/libglade-2 )"
|
||||
|
||||
DEPEND="|| ( app-forensics/libewf[ewf2] >=app-forensics/libewf-20110801 )
|
||||
app-forensics/libbfio"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
#src_prepare() {
|
||||
# use gtk || sed -i 's/AM_PATH_GTK_2_0//' configure.ac
|
||||
# eautoreconf
|
||||
#}
|
||||
|
||||
src_configure() {
|
||||
# $(use_enable gtk gui)\
|
||||
econf $(use_enable debug tracing)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake -j1
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# emake install has a sandbox violation in src/Makefile
|
||||
dobin src/rdd-copy
|
||||
dobin src/rdd-verify
|
||||
dobin src/rddi.py
|
||||
doman src/*.1
|
||||
dosym rdd-copy /usr/bin/rdd
|
||||
dosym rddi.py /usr/bin/rddi
|
||||
}
|
||||
Loading…
Reference in a new issue