diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2015-02-03 23:22:01 +0000 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2015-02-03 23:22:01 +0000 |
commit | 60ffeb8eb23180df35ad22ae28ca44fb8f778c21 (patch) | |
tree | 628cd5cb2d7e7d9e3b0a02021de79fc22dfaa515 /app-arch | |
parent | Version bump, removle old, update python compat (diff) | |
download | gentoo-2-60ffeb8eb23180df35ad22ae28ca44fb8f778c21.tar.gz gentoo-2-60ffeb8eb23180df35ad22ae28ca44fb8f778c21.tar.bz2 gentoo-2-60ffeb8eb23180df35ad22ae28ca44fb8f778c21.zip |
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0xE3F69979BB4B8928DA78E3D17CBF44EF)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/hardlink/ChangeLog | 9 | ||||
-rw-r--r-- | app-arch/hardlink/hardlink-0.3.0.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/app-arch/hardlink/ChangeLog b/app-arch/hardlink/ChangeLog index 869488afc9a6..4aa813bc0633 100644 --- a/app-arch/hardlink/ChangeLog +++ b/app-arch/hardlink/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/hardlink -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/hardlink/ChangeLog,v 1.12 2014/03/06 10:27:24 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/hardlink/ChangeLog,v 1.13 2015/02/03 23:22:01 chutzpah Exp $ + +*hardlink-0.3.0 (03 Feb 2015) + + 03 Feb 2015; Patrick McLean <chutzpah@gentoo.org> +hardlink-0.3.0.ebuild: + Version bump. 06 Mar 2014; Agostino Sarubbo <ago@gentoo.org> hardlink-0.2.0.ebuild: Stable for ppc64, wrt bug #476042 diff --git a/app-arch/hardlink/hardlink-0.3.0.ebuild b/app-arch/hardlink/hardlink-0.3.0.ebuild new file mode 100644 index 000000000000..8d50b2aa9c59 --- /dev/null +++ b/app-arch/hardlink/hardlink-0.3.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/hardlink/hardlink-0.3.0.ebuild,v 1.1 2015/02/03 23:22:01 chutzpah Exp $ + +EAPI=4 +inherit toolchain-funcs + +DESCRIPTION="A tool which replaces copies of a file with hardlinks" +HOMEPAGE="http://jak-linux.org/projects/hardlink/" +SRC_URI="http://jak-linux.org/projects/${PN}/${PN}_${PV}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND="dev-libs/libpcre" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS="README ${T}/README.rsync" + +src_prepare() { + sed -i -e '/^CF/s:?=:+=:' -e '/^CF/s:-O2 -g::' Makefile || die + + cat <<-EOF > "${T}"/README.rsync + http://hardlinkpy.googlecode.com/svn/trunk/hardlink.py has regex '^\..*\.\?{6,6}$' + for excluding rsync temporary files by default. + + To accomplish same with this version, you can use following syntax: + # hardlink -x '^\..*\.\?{6,6}$' + + This was discussed at http://bugs.gentoo.org/416613 + EOF +} + +src_compile() { + tc-export CC + emake +} |