diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2004-12-30 05:58:26 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2004-12-30 05:58:26 +0000 |
commit | b104df02bfb0067977904d2a356d3923069b5932 (patch) | |
tree | cdcc18ab885eb3797f9532cdd2e213ce58837782 /app-arch/dar | |
parent | Stable on mips, bug #75201 (Manifest recommit) (diff) | |
download | gentoo-2-b104df02bfb0067977904d2a356d3923069b5932.tar.gz gentoo-2-b104df02bfb0067977904d2a356d3923069b5932.tar.bz2 gentoo-2-b104df02bfb0067977904d2a356d3923069b5932.zip |
Fixed compile problem. Bug 75047
Diffstat (limited to 'app-arch/dar')
-rw-r--r-- | app-arch/dar/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/dar/Manifest | 2 | ||||
-rw-r--r-- | app-arch/dar/dar-2.1.5-r1.ebuild | 48 | ||||
-rw-r--r-- | app-arch/dar/files/digest-dar-2.1.5-r1 | 1 |
4 files changed, 57 insertions, 1 deletions
diff --git a/app-arch/dar/ChangeLog b/app-arch/dar/ChangeLog index 2a429f8c593c..278d780a23da 100644 --- a/app-arch/dar/ChangeLog +++ b/app-arch/dar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/dar # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dar/ChangeLog,v 1.16 2004/10/07 22:06:58 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/dar/ChangeLog,v 1.17 2004/12/30 05:58:26 matsuu Exp $ + +*dar-2.1.5-r1 (30 Dec 2004) + + 30 Dec 2004; MATSUU Takuto <matsuu@gentoo.org> +dar-2.1.5-r1.ebuild: + Fixed compile problem. Bug 75047. 08 Oct 2004; MATSUU Takuto <matsuu@gentoo.org> -dar-2.1.2-r1.ebuild, -dar-2.1.3.ebuild, -dar-2.1.4.ebuild, dar-2.1.5.ebuild: diff --git a/app-arch/dar/Manifest b/app-arch/dar/Manifest index 4e40da98fa73..1d5bd47b20d5 100644 --- a/app-arch/dar/Manifest +++ b/app-arch/dar/Manifest @@ -1,4 +1,6 @@ MD5 2284e7b7d163d677d1311d256078bb21 dar-2.1.5.ebuild 1101 +MD5 3fcd516f1a3300149c661dff7a799647 dar-2.1.5-r1.ebuild 1149 MD5 28d41fba0a92b79cbbe6e8bb0d2ba690 ChangeLog 2280 MD5 ae8f2b13b9e79b5760aa8c08f84bebe8 metadata.xml 468 MD5 e0e67573b1b6230d6f1d876883270207 files/digest-dar-2.1.5 61 +MD5 e0e67573b1b6230d6f1d876883270207 files/digest-dar-2.1.5-r1 61 diff --git a/app-arch/dar/dar-2.1.5-r1.ebuild b/app-arch/dar/dar-2.1.5-r1.ebuild new file mode 100644 index 000000000000..99467d055ffa --- /dev/null +++ b/app-arch/dar/dar-2.1.5-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/dar/dar-2.1.5-r1.ebuild,v 1.1 2004/12/30 05:58:26 matsuu Exp $ + +inherit flag-o-matic libtool + +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="~x86 ~ppc ~sparc ~amd64" +IUSE="acl" + +DEPEND=">=sys-libs/zlib-1.1.3 + >=app-arch/bzip2-1.0.2 + acl? ( sys-apps/attr )" + +src_unpack() { + unpack ${A} + # fix build on amd64 + cd ${S} + einfo "Running autoreconf..." + autoreconf + einfo "Running libtoolize..." + elibtoolize + # Bug 75047. + libtoolize --copy --force || die +} + +src_compile() { + local myconf="--disable-upx" + + use acl && myconf="${myconf} --enable-ea-support" + + # Replace -O[3-9] flags; because dar-2.1.0 could not compile. + replace-flags -O[3-9] -O2 + filter-flags "-fno-default-inline" + + econf ${myconf} || die + make || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README THANKS TODO +} diff --git a/app-arch/dar/files/digest-dar-2.1.5-r1 b/app-arch/dar/files/digest-dar-2.1.5-r1 new file mode 100644 index 000000000000..6c54ed0e1006 --- /dev/null +++ b/app-arch/dar/files/digest-dar-2.1.5-r1 @@ -0,0 +1 @@ +MD5 897c9dbc6d353a5e021f34dd3ef53813 dar-2.1.5.tar.gz 652534 |