diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-19 10:22:19 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-05-19 10:22:19 +0000 |
commit | db4febc1086fc48fbcafc2908648dbc45e2f6cc1 (patch) | |
tree | 83edb84d18b3a8d7b814c30bbef7def714da9dd9 /app-arch/hardlink/hardlink-0.2.0.ebuild | |
parent | jit is now a global flag. (diff) | |
download | gentoo-2-db4febc1086fc48fbcafc2908648dbc45e2f6cc1.tar.gz gentoo-2-db4febc1086fc48fbcafc2908648dbc45e2f6cc1.tar.bz2 gentoo-2-db4febc1086fc48fbcafc2908648dbc45e2f6cc1.zip |
Version bump.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/hardlink/hardlink-0.2.0.ebuild')
-rw-r--r-- | app-arch/hardlink/hardlink-0.2.0.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-arch/hardlink/hardlink-0.2.0.ebuild b/app-arch/hardlink/hardlink-0.2.0.ebuild new file mode 100644 index 000000000000..ae0362fd6a5c --- /dev/null +++ b/app-arch/hardlink/hardlink-0.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/hardlink/hardlink-0.2.0.ebuild,v 1.1 2012/05/19 10:22:19 ssuominen 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.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-libs/libpcre" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS="README" + +src_prepare() { + sed -i -e '/^CF/s:?=:+=:' -e '/^CF/s:-O2 -g::' Makefile || die +} + +src_compile() { + tc-export CC + emake +} |