Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-dotnet/mono-fuse
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-fuse/ChangeLog,v 1.10 2008/05/30 22:38:46 jurek Exp $
*mono-fuse-0.4.2 (30 May 2008)
30 May 2008; Jurek Bartuszek
Version bump (bug #213672)
01 Aug 2007;
Added ~amd64 keyword. Closes bug #186135
*mono-fuse-0.4.1 (29 Jun 2007)
29 Jun 2007; Jurek Bartuszek
+mono-fuse-0.4.1.ebuild:
- Added "examples" use flag
- Version bump
29 Jun 2007; Christian Faulhammer
mono-fuse-0.4.0.ebuild:
stable x86, bug 182916
29 Jun 2007; Jurek Bartuszek
Removed configure.in rule that prevented configure script from running on
certain occasions
22 Jun 2007; Jurek Bartuszek
Making fuse dependency more restrictive
22 Oct 2006; Jurek Bartuszek
Added a required >=dev-util/monodoc-1.1.13 dependency
*mono-fuse-0.4.0 (21 Oct 2006)
21 Oct 2006; Jurek Bartuszek
Initial import. Ebuild provided by myself with corrections
introduced by Peter Johanson
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
DIST mono-fuse-0.4.0.tar.gz 1016389 RMD160 7692872a833ee678a14a495b535d58a70782d7d9 SHA1 59f5a3372144cfe98e17ea70a993dc3a93ff5520 SHA256 8b4c554a9889bf63ca5b955582a487c7ba64755285bfe83b3d0c3e116d589769
DIST mono-fuse-0.4.1.tar.gz 1780223 RMD160 f5b2fad03d811e92d552cd8cdf0a28929cc27940 SHA1 fcbb2f134d2ce9f0a5eb314b6f755c88ba8d0306 SHA256 44ec7da69b651fbee8798f4c135d46dac2989a4991c7a26d545b623e3f216f4a
DIST mono-fuse-0.4.2.tar.gz 1808043 RMD160 b8f7925abdb6af150225a963b6cdafeb1061bc38 SHA1 faa9bb2e35b396a800f4e981717c2de4e2e345f3 SHA256 ef27f3be93cc2df237ef6d13b653b648a6d1d022d6f0cc657c36732cfd2c48b0
EBUILD mono-fuse-0.4.0.ebuild 1094 RMD160 94f421318b4e000d80bf7a6d20720dad3284b268 SHA1 b6eca2d4e845ed0a7e036b779b7c102bf2d8b4e1 SHA256 abd619c5eaff3d52411a1193040600a934b537ef8947508104a56ea0d0919095
EBUILD mono-fuse-0.4.1.ebuild 1105 RMD160 fb2f47f1a146a67a3c49a09fe88b6108723fa682 SHA1 086481ee6bffb6759360980e9b90dd1dcac90ff4 SHA256 c0db88204765a8c9e941e75ae643a8dc7438af801e10b36693f2851809b6b4d0
EBUILD mono-fuse-0.4.2.ebuild 1096 RMD160 3d8a6ae5ea3ec0996809b2d82100d1e524a41861 SHA1 a818a29267b7a779d1fa728e7da235b92e6f904b SHA256 90b7c88803cbe1c088c4fad57bc3801f3aaa25601ada0df0eb5bc5bd2c253438
MISC ChangeLog 1425 RMD160 feeaa7ef5757bbaeec1af01db2e93087236574d7 SHA1 7c0989ddd8ff1f240978f3177eac1a57d8b39355 SHA256 96c9888d7b3938240dd8b6d3bd4a794ae199b752b4f0838992fcd069dafa0a58
MISC metadata.xml 249 RMD160 8cbb4f73f88f6d807b893f6c1b74078964464afd SHA1 79d8db95407ba07d0a9b6bd6947c1be3eaf03c9e SHA256 68ed28c260f690551df4f36b0209ec290023623f799d82f3877d8d5c2879f803
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
iEYEARECAAYFAkhAggEACgkQyOePD61SuWK/twCeLpc3f1Sb8aI6fHbrhGfUfxRp
CmIAnjF0fzFeyn0a6fcS0JGTxfgdszWg
=8LnI
-----END PGP SIGNATURE-----
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-fuse/mono-fuse-0.4.0.ebuild,v 1.6 2007/06/29 21:23:42 jurek Exp $
inherit autotools mono
DESCRIPTION="C# binding for the FUSE library"
HOMEPAGE="http://www.jprl.com/Projects/mono-fuse/"
SRC_URI="http://www.jprl.com/Projects/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="examples"
DEPEND=">=dev-lang/mono-1.1.13
>=dev-util/monodoc-1.1.13
>=sys-fs/fuse-2.5.2"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e 's#^AC_CHECK_LIB(MonoPosixHelper.*$##' \
configure.in || die "sed failed"
eautoreconf || die "eautoreconf failed"
}
src_compile()
{
econf || die "configure failed"
emake -j1 || die "make failed"
}
src_install()
{
emake DESTDIR="${D}" install || die "install failed"
dodoc ChangeLog README COPYING
if use examples; then
insinto /usr/share/doc/${PF}
doins -r example
fi
}
pkg_postinst()
{
elog "Ensure that you have the fuse module loaded"
elog "before you start using mono-fuse"
}
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-fuse/mono-fuse-0.4.1.ebuild,v 1.2 2007/08/01 03:09:54 metalgod Exp $
inherit autotools mono
DESCRIPTION="C# binding for the FUSE library"
HOMEPAGE="http://www.jprl.com/Projects/mono-fuse/"
SRC_URI="http://www.jprl.com/Projects/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
DEPEND=">=dev-lang/mono-1.1.13
>=dev-util/monodoc-1.1.13
>=sys-fs/fuse-2.5.2"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e 's#^AC_CHECK_LIB(MonoPosixHelper.*$##' \
configure.in || die "sed failed"
eautoreconf || die "eautoreconf failed"
}
src_compile()
{
econf || die "configure failed"
emake -j1 || die "make failed"
}
src_install()
{
emake DESTDIR="${D}" install || die "install failed"
dodoc ChangeLog README COPYING
if use examples; then
insinto /usr/share/doc/${PF}
doins -r example
fi
}
pkg_postinst()
{
elog "Ensure that you have the fuse module loaded"
elog "before you start using mono-fuse"
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-fuse/mono-fuse-0.4.2.ebuild,v 1.1 2008/05/30 22:38:46 jurek Exp $
inherit autotools mono
DESCRIPTION="C# binding for the FUSE library"
HOMEPAGE="http://www.jprl.com/Projects/mono-fuse/"
SRC_URI="http://www.jprl.com/Projects/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
DEPEND=">=dev-lang/mono-1.1.13
>=dev-util/monodoc-1.1.13
>=sys-fs/fuse-2.5.2"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e 's#^AC_CHECK_LIB(MonoPosixHelper.*$##' \
configure.in || die "sed failed"
eautoreconf || die "eautoreconf failed"
}
src_compile()
{
econf || die "configure failed"
emake -j1 || die "make failed"
}
src_install()
{
emake DESTDIR="${D}" install || die "install failed"
dodoc ChangeLog README
if use examples; then
insinto /usr/share/doc/${PF}
doins -r example
fi
}
pkg_postinst()
{
elog "Ensure that you have the fuse module loaded"
elog "before you start using mono-fuse"
}