diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2010-04-15 19:52:24 +0000 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2010-04-15 19:52:24 +0000 |
commit | c3039f46552b3d5390694b2d51769d7b16faf505 (patch) | |
tree | 3516e93ade4c0a290aef07ffea5a27c2e26a3859 /app-backup | |
parent | amd64 stable, bug #270345 (diff) | |
download | gentoo-2-c3039f46552b3d5390694b2d51769d7b16faf505.tar.gz gentoo-2-c3039f46552b3d5390694b2d51769d7b16faf505.tar.bz2 gentoo-2-c3039f46552b3d5390694b2d51769d7b16faf505.zip |
Rev bump. Fix pre-stripping, bug 239939, thanks to Diego E. 'Flameeyes' Pettenò <flameeyes@gentoo.org> and Kevin Pyle <gentoo.8eaf7cd8e5128d8191fe@spamgourmet.com>. Add 'die' statement. Style clean up.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/mirdir/ChangeLog | 12 | ||||
-rw-r--r-- | app-backup/mirdir/mirdir-2.1-r1.ebuild | 30 |
2 files changed, 40 insertions, 2 deletions
diff --git a/app-backup/mirdir/ChangeLog b/app-backup/mirdir/ChangeLog index b0405a45a214..5e8c1a0556ce 100644 --- a/app-backup/mirdir/ChangeLog +++ b/app-backup/mirdir/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-backup/mirdir -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/mirdir/ChangeLog,v 1.5 2007/04/09 14:46:10 welp Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-backup/mirdir/ChangeLog,v 1.6 2010/04/15 19:52:24 idl0r Exp $ + +*mirdir-2.1-r1 (15 Apr 2010) + + 15 Apr 2010; Christian Ruppert <idl0r@gentoo.org> +mirdir-2.1-r1.ebuild: + Rev bump. Fix pre-stripping, bug 239939, thanks to Diego E. 'Flameeyes' + Pettenò <flameeyes@gentoo.org> and Kevin Pyle + <gentoo.8eaf7cd8e5128d8191fe@spamgourmet.com>. Add 'die' statement. Style + clean up. 09 Apr 2007; Peter Weller <welp@gentoo.org> mirdir-2.1.ebuild: Stable on amd64 wrt bug 173842 diff --git a/app-backup/mirdir/mirdir-2.1-r1.ebuild b/app-backup/mirdir/mirdir-2.1-r1.ebuild new file mode 100644 index 000000000000..896aadf7fbaa --- /dev/null +++ b/app-backup/mirdir/mirdir-2.1-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-backup/mirdir/mirdir-2.1-r1.ebuild,v 1.1 2010/04/15 19:52:24 idl0r Exp $ + +EAPI=3 + +DESCRIPTION="Mirdir allows to synchronize two directory trees in a fast way" +HOMEPAGE="http://sf.net/projects/mirdir" +SRC_URI="mirror://sourceforge/${PN}/${P}-Unix.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${P}-UNIX" + +src_prepare() { + # Disable stripping, bug 239939 + sed -i -e 's:strip .*::' Makefile.in || die +} + +src_install() { + dobin bin/mirdir || die + doman mirdir.1 + dodoc AUTHORS +} |