diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-06-09 10:52:27 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-06-09 10:52:27 +0000 |
commit | b1feab3c32a6be38e4ab37ff50ba08ddba464787 (patch) | |
tree | 609173b1d84bf3c7e24dba8791fee4e2f93f5f6f /sys-fs | |
parent | Remove old. (diff) | |
download | gentoo-2-b1feab3c32a6be38e4ab37ff50ba08ddba464787.tar.gz gentoo-2-b1feab3c32a6be38e4ab37ff50ba08ddba464787.tar.bz2 gentoo-2-b1feab3c32a6be38e4ab37ff50ba08ddba464787.zip |
Version bump.
(Portage version: 2.2.0_alpha178/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/bindfs/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/bindfs/bindfs-1.12.1.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/sys-fs/bindfs/ChangeLog b/sys-fs/bindfs/ChangeLog index 15ada0c44327..df885d83fb72 100644 --- a/sys-fs/bindfs/ChangeLog +++ b/sys-fs/bindfs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/bindfs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/bindfs/ChangeLog,v 1.10 2013/03/02 07:04:20 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/bindfs/ChangeLog,v 1.11 2013/06/09 10:52:27 radhermit Exp $ + +*bindfs-1.12.1 (09 Jun 2013) + + 09 Jun 2013; Tim Harder <radhermit@gentoo.org> +bindfs-1.12.1.ebuild: + Version bump. *bindfs-1.12 (02 Mar 2013) diff --git a/sys-fs/bindfs/bindfs-1.12.1.ebuild b/sys-fs/bindfs/bindfs-1.12.1.ebuild new file mode 100644 index 000000000000..f3097e2d1ec4 --- /dev/null +++ b/sys-fs/bindfs/bindfs-1.12.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/bindfs/bindfs-1.12.1.ebuild,v 1.1 2013/06/09 10:52:27 radhermit Exp $ + +EAPI=5 + +inherit eutils autotools + +DESCRIPTION="FUSE filesystem for mounting a directory to another location and altering permissions" +HOMEPAGE="http://code.google.com/p/bindfs/" +SRC_URI="http://bindfs.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +RDEPEND="sys-fs/fuse" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +RESTRICT="test" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.10.7-cflags.patch + eautoreconf +} + +src_configure() { + econf $(use_enable debug) +} |