diff options
author | 2013-03-02 07:04:20 +0000 | |
---|---|---|
committer | 2013-03-02 07:04:20 +0000 | |
commit | 82b62d34f02b3d78a7d43a588eabfaddd649baf0 (patch) | |
tree | bfc832239d62cb7fa9fc0164b000a86d0e20fb0c /sys-fs/bindfs | |
parent | Version bump. (diff) | |
download | gentoo-2-82b62d34f02b3d78a7d43a588eabfaddd649baf0.tar.gz gentoo-2-82b62d34f02b3d78a7d43a588eabfaddd649baf0.tar.bz2 gentoo-2-82b62d34f02b3d78a7d43a588eabfaddd649baf0.zip |
Version bump.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'sys-fs/bindfs')
-rw-r--r-- | sys-fs/bindfs/ChangeLog | 9 | ||||
-rw-r--r-- | sys-fs/bindfs/bindfs-1.12.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/sys-fs/bindfs/ChangeLog b/sys-fs/bindfs/ChangeLog index 02fe2a10c8d4..15ada0c44327 100644 --- a/sys-fs/bindfs/ChangeLog +++ b/sys-fs/bindfs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/bindfs -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/bindfs/ChangeLog,v 1.9 2012/11/13 05:22:00 radhermit Exp $ +# 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 $ + +*bindfs-1.12 (02 Mar 2013) + + 02 Mar 2013; Tim Harder <radhermit@gentoo.org> +bindfs-1.12.ebuild: + Version bump. 13 Nov 2012; Tim Harder <radhermit@gentoo.org> -bindfs-1.10.3.ebuild, -files/bindfs-1.10.3-cflags.patch, -bindfs-1.10.7.ebuild: diff --git a/sys-fs/bindfs/bindfs-1.12.ebuild b/sys-fs/bindfs/bindfs-1.12.ebuild new file mode 100644 index 000000000000..28dae5b051d1 --- /dev/null +++ b/sys-fs/bindfs/bindfs-1.12.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.ebuild,v 1.1 2013/03/02 07:04:20 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) +} |