diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-08-15 21:59:20 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-08-15 22:04:38 +0200 |
commit | 00112e433da745838471e69bd323557264a88a7d (patch) | |
tree | c53dc0f4f505dfe7c868a838189669794f2b3945 /sys-fs | |
parent | games-emulation/libretro-nestopia: Fix S in -0.0.1_pre20180723 (diff) | |
download | gentoo-00112e433da745838471e69bd323557264a88a7d.tar.gz gentoo-00112e433da745838471e69bd323557264a88a7d.tar.bz2 gentoo-00112e433da745838471e69bd323557264a88a7d.zip |
sys-fs/copyfs: Drop old
Package-Manager: Portage-2.3.46, Repoman-2.3.10
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/copyfs/copyfs-1.0.1.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/sys-fs/copyfs/copyfs-1.0.1.ebuild b/sys-fs/copyfs/copyfs-1.0.1.ebuild deleted file mode 100644 index 285ec9354bd5..000000000000 --- a/sys-fs/copyfs/copyfs-1.0.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit autotools eutils toolchain-funcs - -DESCRIPTION="fuse-based filesystem for maintaining configuration files" -HOMEPAGE="https://boklm.eu/copyfs/" -SRC_URI="https://boklm.eu/copyfs/${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 -} |