diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2011-12-04 01:11:22 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2011-12-04 01:11:22 +0000 |
commit | 839fe599cb67764bb76942e013b634e153931d51 (patch) | |
tree | 5864b46c6e21cb0bd7b325205ed9619984ef0709 /app-backup/dar | |
parent | add missing pkgconfig build time dependency. Bug #391983 thanks to David Owen (diff) | |
download | gentoo-2-839fe599cb67764bb76942e013b634e153931d51.tar.gz gentoo-2-839fe599cb67764bb76942e013b634e153931d51.tar.bz2 gentoo-2-839fe599cb67764bb76942e013b634e153931d51.zip |
Version bumped, bug #387501.
(Portage version: 2.1.10.29/cvs/Linux x86_64)
Diffstat (limited to 'app-backup/dar')
-rw-r--r-- | app-backup/dar/ChangeLog | 7 | ||||
-rw-r--r-- | app-backup/dar/dar-2.4.2.ebuild | 68 |
2 files changed, 74 insertions, 1 deletions
diff --git a/app-backup/dar/ChangeLog b/app-backup/dar/ChangeLog index 2c4851e1827a..c4d7f8fd3e5f 100644 --- a/app-backup/dar/ChangeLog +++ b/app-backup/dar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-backup/dar # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/dar/ChangeLog,v 1.42 2011/06/07 23:34:19 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/dar/ChangeLog,v 1.43 2011/12/04 01:11:22 matsuu Exp $ + +*dar-2.4.2 (04 Dec 2011) + + 04 Dec 2011; MATSUU Takuto <matsuu@gentoo.org> +dar-2.4.2.ebuild: + Version bumped, bug #387501. *dar-2.4.0 (07 Jun 2011) diff --git a/app-backup/dar/dar-2.4.2.ebuild b/app-backup/dar/dar-2.4.2.ebuild new file mode 100644 index 000000000000..b8acb03a4b40 --- /dev/null +++ b/app-backup/dar/dar-2.4.2.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-backup/dar/dar-2.4.2.ebuild,v 1.1 2011/12/04 01:11:22 matsuu Exp $ + +EAPI="3" +inherit confutils eutils 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 gcrypt lzo nls static static-libs" + +RESTRICT="test" # need to be run as root + +RDEPEND=">=sys-libs/zlib-1.2.3 + >=app-arch/bzip2-1.0.2 + acl? ( + static? ( sys-apps/attr[static-libs] ) + !static? ( sys-apps/attr ) + ) + gcrypt? ( dev-libs/libgcrypt ) + lzo? ( dev-libs/lzo ) + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + doc? ( app-doc/doxygen )" + +pkg_setup() { + confutils_use_conflict dar32 dar64 +} + +src_configure() { + 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 gcrypt || myconf="${myconf} --disable-libgcrypt-linking" + use lzo || myconf="${myconf} --disable-liblzo2-linking" + use nls || myconf="${myconf} --disable-nls" + if ! use static ; then + myconf="${myconf} --disable-dar-static" + if ! use static-libs ; then + myconf="${myconf} --disable-static" + fi + fi + + econf ${myconf} || die +} + +src_install() { + emake DESTDIR="${D}" pkgdatadir=/usr/share/doc/${PF}/html install || die + + if ! use static-libs ; then + find "${ED}" "(" -name '*.la' -o -name '*.a' ")" -delete || die + fi + + dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die +} |