diff options
author | Sebastian Pipping <sping@gentoo.org> | 2012-09-14 20:07:13 +0000 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2012-09-14 20:07:13 +0000 |
commit | abdbcd8d25131492b2bbea3f975265b4842ff095 (patch) | |
tree | 9482a489ddbee2a39bd1cb9f9f1eda79a9edc725 /sys-fs | |
parent | drop maintainership to herd (diff) | |
download | gentoo-2-abdbcd8d25131492b2bbea3f975265b4842ff095.tar.gz gentoo-2-abdbcd8d25131492b2bbea3f975265b4842ff095.tar.bz2 gentoo-2-abdbcd8d25131492b2bbea3f975265b4842ff095.zip |
sys-fs/unionfs-fuse: 0.26
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/unionfs-fuse/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/unionfs-fuse/unionfs-fuse-0.26.ebuild | 23 |
2 files changed, 29 insertions, 1 deletions
diff --git a/sys-fs/unionfs-fuse/ChangeLog b/sys-fs/unionfs-fuse/ChangeLog index 183c3e4f91d3..1f6c1e7751a7 100644 --- a/sys-fs/unionfs-fuse/ChangeLog +++ b/sys-fs/unionfs-fuse/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/unionfs-fuse # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/unionfs-fuse/ChangeLog,v 1.5 2012/02/04 01:15:07 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/unionfs-fuse/ChangeLog,v 1.6 2012/09/14 20:07:13 sping Exp $ + +*unionfs-fuse-0.26 (14 Sep 2012) + + 14 Sep 2012; Sebastian Pipping <sping@gentoo.org> +unionfs-fuse-0.26.ebuild: + Bump to 0.26, looks trivial *unionfs-fuse-0.25 (04 Feb 2012) diff --git a/sys-fs/unionfs-fuse/unionfs-fuse-0.26.ebuild b/sys-fs/unionfs-fuse/unionfs-fuse-0.26.ebuild new file mode 100644 index 000000000000..6cee78706f42 --- /dev/null +++ b/sys-fs/unionfs-fuse/unionfs-fuse-0.26.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/unionfs-fuse/unionfs-fuse-0.26.ebuild,v 1.1 2012/09/14 20:07:13 sping Exp $ + +EAPI="3" + +DESCRIPTION="Self-syncing tree-merging file system based on FUSE" + +HOMEPAGE="http://podgorny.cz/moin/UnionFsFuse" +SRC_URI="http://podgorny.cz/unionfs-fuse/releases/${P}.tar.xz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="sys-fs/fuse" +RDEPEND="${DEPEND}" + +src_install() { + dodir /usr/sbin /usr/share/man/man8/ || die "dodir failed" + emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed" +} |