diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-09-20 20:16:27 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-09-20 20:16:27 +0000 |
commit | 209751b4e56c570ec4c8df4cadb98b098c72e83d (patch) | |
tree | 6d41f9fbe5817ceddb11a7af3f67ab3ea969fd49 /sys-fs/copyfs/copyfs-1.0.1.ebuild | |
parent | Stable on amd64 wrt bug #337328 (diff) | |
download | gentoo-2-209751b4e56c570ec4c8df4cadb98b098c72e83d.tar.gz gentoo-2-209751b4e56c570ec4c8df4cadb98b098c72e83d.tar.bz2 gentoo-2-209751b4e56c570ec4c8df4cadb98b098c72e83d.zip |
Version bump. Respect LDFLAGS (bug #336538), CC, CFLAGS. Set RDEPEND.
(Portage version: 2.2_rc84/cvs/Linux i686)
Diffstat (limited to 'sys-fs/copyfs/copyfs-1.0.1.ebuild')
-rw-r--r-- | sys-fs/copyfs/copyfs-1.0.1.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sys-fs/copyfs/copyfs-1.0.1.ebuild b/sys-fs/copyfs/copyfs-1.0.1.ebuild new file mode 100644 index 000000000000..fb2ff9197065 --- /dev/null +++ b/sys-fs/copyfs/copyfs-1.0.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/copyfs/copyfs-1.0.1.ebuild,v 1.1 2010/09/20 20:16:26 jer Exp $ + +EAPI="2" + +inherit autotools eutils toolchain-funcs + +DESCRIPTION="fuse-based filesystem for maintaining configuration files" +HOMEPAGE="http://invaders.mars-attacks.org/~boklm/copyfs/" +SRC_URI="${HOMEPAGE}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc" +IUSE="" + +DEPEND=">=sys-fs/fuse-2.0 + sys-apps/attr" +RDEPEND="${DEPEND}" + +src_prepare() { + # this patch fixes sandbox violations + epatch "${FILESDIR}"/${P}-gentoo.patch + + # this patch adds support for cleaning up the versions directory + # the patch is experimental at best, but it's better than your + # versions directory filling up with unused files + # + # patch by stuart@gentoo.org + epatch "${FILESDIR}"/${PN}-1.0-unlink.patch + eautoreconf +} + +src_configure() { + econf --bindir="${D}/usr/bin" --mandir="${D}/usr/share/man" +} + +src_compile() { + emake CC=$(tc-getCC) || die +} + +src_install() { + emake DESTDIR="${D}" install || die +} |