diff options
author | dan.goodliffe <dan.goodliffe@localhost> | 2008-11-25 10:55:28 +0000 |
---|---|---|
committer | dan.goodliffe <dan.goodliffe@localhost> | 2008-11-25 10:55:28 +0000 |
commit | 4adecc11811954dabe41fbca99c9fb82dff6738a (patch) | |
tree | 90e3d0f99ebda45e9f982b972342ad195a2fd426 /sys-fs | |
parent | Add unscd to replace unreliable nscd (diff) | |
download | portage-4adecc11811954dabe41fbca99c9fb82dff6738a.tar.bz2 portage-4adecc11811954dabe41fbca99c9fb82dff6738a.tar.xz portage-4adecc11811954dabe41fbca99c9fb82dff6738a.zip |
ProcFS CVS ebuild
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/procfs/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/procfs/procfs-0.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/sys-fs/procfs/Manifest b/sys-fs/procfs/Manifest new file mode 100644 index 0000000..7d8ed99 --- /dev/null +++ b/sys-fs/procfs/Manifest @@ -0,0 +1 @@ +EBUILD procfs-0.ebuild 749 RMD160 e1da830701b50a3b3ff59ad9119d0916e1f84571 SHA1 d30749be0158ab9a54df36dc3fee5aea876a6640 SHA256 045a77039f93b6dd79e58024915d06e9905b8deffae351a7a52e626216380145 diff --git a/sys-fs/procfs/procfs-0.ebuild b/sys-fs/procfs/procfs-0.ebuild new file mode 100644 index 0000000..646b757 --- /dev/null +++ b/sys-fs/procfs/procfs-0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvs/lportage/sys-fs/procfs/procfs-0.ebuild,v 1.1 2008-11-25 10:55:19 dan.goodliffe Exp $ + +inherit cvs + +DESCRIPTION="ProcFS FUSE driver" +HOMEPAGE="http://develop.millerbros.co.uk" + +LICENSE="MBL" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="sys-fs/fuse dev-libs/libxml2 x11-misc/makedepend" +RDEPEND="${DEPEND}" + +ECVS_SERVER="cvs.millerbros.co.uk:/var/cvs" +ECVS_MODULE="procfs" +ECVS_USER="cvsanon" +ECVS_AUTH="ext" +ECVS_TOP_DIR=${DISTDIR}/cvs-src/${PN} + +src_compile() { + cd ${WORKDIR}/procfs/procfs + econf + emake +} + +src_install() { + exeinto /usr/bin + doexe ${WORKDIR}/procfs/procfs/procfs + dosym ../usr/bin/procfs /sbin/mount.procfs +} |