diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2007-02-26 14:20:17 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2007-02-26 14:20:17 +0000 |
commit | ea0b64849bd57675ec61a42c4fafd0e613e87b19 (patch) | |
tree | 0e0d5e14a64029002f74a25a65d7b03272e15497 /app-backup/dar | |
parent | version bump: CVS snapshot from upstream to fix bug 144081, reported by DMoL... (diff) | |
download | gentoo-2-ea0b64849bd57675ec61a42c4fafd0e613e87b19.tar.gz gentoo-2-ea0b64849bd57675ec61a42c4fafd0e613e87b19.tar.bz2 gentoo-2-ea0b64849bd57675ec61a42c4fafd0e613e87b19.zip |
Version bumped.
(Portage version: 2.1.2-r9)
Diffstat (limited to 'app-backup/dar')
-rw-r--r-- | app-backup/dar/ChangeLog | 7 | ||||
-rw-r--r-- | app-backup/dar/dar-2.3.3.ebuild | 61 | ||||
-rw-r--r-- | app-backup/dar/files/digest-dar-2.3.3 | 3 |
3 files changed, 70 insertions, 1 deletions
diff --git a/app-backup/dar/ChangeLog b/app-backup/dar/ChangeLog index c04b9e19dd7f..895ca99eee2e 100644 --- a/app-backup/dar/ChangeLog +++ b/app-backup/dar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-backup/dar # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/dar/ChangeLog,v 1.19 2007/02/16 15:38:08 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/dar/ChangeLog,v 1.20 2007/02/26 14:20:17 matsuu Exp $ + +*dar-2.3.3 (26 Feb 2007) + + 26 Feb 2007; MATSUU Takuto <matsuu@gentoo.org> +dar-2.3.3.ebuild: + Version bumped. *dar-2.3.2-r1 (16 Feb 2007) diff --git a/app-backup/dar/dar-2.3.3.ebuild b/app-backup/dar/dar-2.3.3.ebuild new file mode 100644 index 000000000000..a16abfdc23a2 --- /dev/null +++ b/app-backup/dar/dar-2.3.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-backup/dar/dar-2.3.3.ebuild,v 1.1 2007/02/26 14:20:17 matsuu Exp $ + +inherit flag-o-matic + +DESCRIPTION="A full featured backup tool, aimed for disks (floppy,CDR(W),DVDR(W),zip,jazz etc.)" +HOMEPAGE="http://dar.linux.free.fr/" +SRC_URI="mirror://sourceforge/dar/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="acl dar32 dar64 doc nls ssl" + +DEPEND=">=sys-libs/zlib-1.2.3 + >=app-arch/bzip2-1.0.2 + acl? ( sys-apps/attr ) + doc? ( app-doc/doxygen ) + nls? ( sys-devel/gettext ) + ssl? ( dev-libs/openssl )" + +pkg_setup() { + if use dar32 && use dar64 ; then + eerror "dar32 and dar64 cannot be enabled together." + eerror "Please remove one of them and try the emerge again." + die "Please remove dar32 or dar64." + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i -e '/^dist_noinst_DATA/s/$/ macro_tools.hpp/' \ + -e '/^noinst_HEADERS/s/macro_tools.hpp//' \ + src/libdar/Makefile* || die +} + +src_compile() { + local myconf="--disable-upx" + + # Bug 103741 + filter-flags -fomit-frame-pointer + + use acl || myconf="${myconf} --disable-ea-support" + use dar32 && myconf="${myconf} --enable-mode=32" + use dar64 && myconf="${myconf} --enable-mode=64" + use doc || myconf="${myconf} --disable-build-html" + # use examples && myconf="${myconf} --enable-examples" + use nls || myconf="${myconf} --disable-nls" + use ssl || myconf="${myconf} --disable-libcrypto-linking" + + econf ${myconf} || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" pkgdatadir=/usr/share/doc/${PF}/html install || die + + dodoc AUTHORS ChangeLog NEWS README THANKS TODO +} diff --git a/app-backup/dar/files/digest-dar-2.3.3 b/app-backup/dar/files/digest-dar-2.3.3 new file mode 100644 index 000000000000..07004bde3300 --- /dev/null +++ b/app-backup/dar/files/digest-dar-2.3.3 @@ -0,0 +1,3 @@ +MD5 30b2e488f11e1ab60510fa198de23791 dar-2.3.3.tar.gz 1179147 +RMD160 7e426a21633205738b1262fb643e1a91c8feb793 dar-2.3.3.tar.gz 1179147 +SHA256 b54b4266496d0a88fab03d254faa66dc3e30ff7915277600902ae09ae5d7b991 dar-2.3.3.tar.gz 1179147 |