diff options
author | Christian Zoffoli <xmerlin@gentoo.org> | 2005-03-10 14:39:40 +0000 |
---|---|---|
committer | Christian Zoffoli <xmerlin@gentoo.org> | 2005-03-10 14:39:40 +0000 |
commit | 885484962315c01abd84c275016faeb1dfdf281e (patch) | |
tree | 8df1c4e51d7b50e787ab591ca2a17b8dc40a21d8 /sys-cluster | |
parent | Remove old ebuild. (diff) | |
download | historical-885484962315c01abd84c275016faeb1dfdf281e.tar.gz historical-885484962315c01abd84c275016faeb1dfdf281e.tar.bz2 historical-885484962315c01abd84c275016faeb1dfdf281e.zip |
added to portage
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/ocfs/ChangeLog | 7 | ||||
-rw-r--r-- | sys-cluster/ocfs/Manifest | 14 | ||||
-rw-r--r-- | sys-cluster/ocfs/files/digest-ocfs-1.0.14 | 1 | ||||
-rw-r--r-- | sys-cluster/ocfs/metadata.xml | 8 | ||||
-rw-r--r-- | sys-cluster/ocfs/ocfs-1.0.14.ebuild | 57 |
5 files changed, 87 insertions, 0 deletions
diff --git a/sys-cluster/ocfs/ChangeLog b/sys-cluster/ocfs/ChangeLog new file mode 100644 index 000000000000..d00ca4c487a1 --- /dev/null +++ b/sys-cluster/ocfs/ChangeLog @@ -0,0 +1,7 @@ +# ChangeLog for sys-cluster/ocfs +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ocfs/ChangeLog,v 1.1 2005/03/10 14:39:40 xmerlin Exp $ + + 10 Mar 2005; Christian Zoffoli <xmerlin@gentoo.org> : + added to portage + diff --git a/sys-cluster/ocfs/Manifest b/sys-cluster/ocfs/Manifest new file mode 100644 index 000000000000..935f0f6fa8b2 --- /dev/null +++ b/sys-cluster/ocfs/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 45f2d828a6ea696eafe08f627ec3f462 ocfs-1.0.14.ebuild 1166 +MD5 825a997f16072cf6d871542ea57644b9 ChangeLog 282 +MD5 a64b9a1937a5cfc2fbaf373521f65d47 metadata.xml 223 +MD5 75c09203fea28786944fca4623be459f files/digest-ocfs-1.0.14 63 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (GNU/Linux) + +iD8DBQFCMGM3gMUyd/cdjWsRAlgpAJ9IXerExkrp2+qpiIL9Sk61OUcHqwCdFFWv +MF3mauyVtEk/4jPkSkqndy8= +=6MUy +-----END PGP SIGNATURE----- diff --git a/sys-cluster/ocfs/files/digest-ocfs-1.0.14 b/sys-cluster/ocfs/files/digest-ocfs-1.0.14 new file mode 100644 index 000000000000..e1852deb0917 --- /dev/null +++ b/sys-cluster/ocfs/files/digest-ocfs-1.0.14 @@ -0,0 +1 @@ +MD5 5e2ad8ea837ab68a7d70cb2f367febec ocfs-1.0.14.tar.gz 467237 diff --git a/sys-cluster/ocfs/metadata.xml b/sys-cluster/ocfs/metadata.xml new file mode 100644 index 000000000000..e2b45fb75fca --- /dev/null +++ b/sys-cluster/ocfs/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>cluster</herd> +<maintainer> + <email>cluster@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/sys-cluster/ocfs/ocfs-1.0.14.ebuild b/sys-cluster/ocfs/ocfs-1.0.14.ebuild new file mode 100644 index 000000000000..542d3b453ede --- /dev/null +++ b/sys-cluster/ocfs/ocfs-1.0.14.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ocfs/ocfs-1.0.14.ebuild,v 1.1 2005/03/10 14:39:40 xmerlin Exp $ + +inherit linux-mod + +DESCRIPTION="The Oracle Cluster Filesystem" +SRC_URI="http://oss.oracle.com/projects/ocfs/dist/files/source/${P}.tar.gz" +HOMEPAGE="http://oss.oracle.com/projects/ocfs" +LICENSE="GPL-2" + +DEPEND="virtual/linux-sources" + +IUSE="aio" +SLOT="0" +KEYWORDS="~x86" + +pkg_setup() { + if kernel_is 2 6; then + die "${P} supports only 2.4 kernels" + fi +} + +src_compile() { + check_KV + set_arch_to_kernel + + local myconf + use aio && myconf="--enable-aio=yes" || myconf="--enable-aio=no" + + econf \ + --with-kernel=${KERNEL_DIR} \ + ${myconf} \ + || die + + emake || die +} + +src_install() { + einstall DESTDIR=${D} || die "Failed to install" + + dodir /etc/ocfs + insinto /etc/ocfs + doins ocfs2/ocfs.conf + + dodoc README docs/ocfs_doc.zip || die +} + +pkg_postinst() { + linux-mod_pkg_postinst + + einfo "" + einfo "Please remember to re-emerge ${PN} when you upgrade your kernel!" + einfo "" + einfo "Please edit the configuration file /etc/ocfs/ocfs.conf" + einfo "" +} |