Add ofl (from hxtools) to the tree as a suggested dependency of pam_mount, see bug...
authorMatt Turner <mattst88@gentoo.org>
Wed, 31 Aug 2011 23:48:47 +0000 (23:48 +0000)
committerMatt Turner <mattst88@gentoo.org>
Wed, 31 Aug 2011 23:48:47 +0000 (23:48 +0000)
Package-Manager: portage-2.1.10.3/cvs/Linux x86_64

app-misc/ofl/ChangeLog [new file with mode: 0644]
app-misc/ofl/Manifest [new file with mode: 0644]
app-misc/ofl/metadata.xml [new file with mode: 0644]
app-misc/ofl/ofl-20110721.ebuild [new file with mode: 0644]

diff --git a/app-misc/ofl/ChangeLog b/app-misc/ofl/ChangeLog
new file mode 100644 (file)
index 0000000..3793264
--- /dev/null
@@ -0,0 +1,11 @@
+# ChangeLog for app-misc/ofl
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/ofl/ChangeLog,v 1.1 2011/08/31 23:48:47 mattst88 Exp $
+
+*ofl-20110721 (31 Aug 2011)
+
+  31 Aug 2011; Matt Turner <mattst88@gentoo.org> +ofl-20110721.ebuild,
+  +metadata.xml:
+  Add ofl (from hxtools) to the tree as a suggested dependency of pam_mount,
+  see bug 380783#c9.
+
diff --git a/app-misc/ofl/Manifest b/app-misc/ofl/Manifest
new file mode 100644 (file)
index 0000000..56a4685
--- /dev/null
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+DIST hxtools-20110721.tar.xz 270020 RMD160 8de1e7476f2e3e21208c4c5a177f14f0d9482026 SHA1 1c3d72d978f888330bed099a646404d2dfd8a4dc SHA256 5f5642c75f94b207fa32088bdf73429a6b447af2a81b139d977435fbb2c32eed
+EBUILD ofl-20110721.ebuild 820 RMD160 dc1e6fbd9279a2724259ac93dbc9d4828003be43 SHA1 9db879b41c587821b4a0fcb5c4c9fc6dd0072376 SHA256 cf03d9d2c72e78537caf137839df6dd22c297ce50bf45e7c4e96c17e705ff661
+MISC ChangeLog 415 RMD160 5c69f82e99bff74de1d147395dd6628fd3a333b1 SHA1 b87ad47dc1a2bcd4902f87fe4a51d215cf6ff529 SHA256 c431491034dd0a1bba83fdb136777688de4c411ec9c87f19e30a8284af2d7947
+MISC metadata.xml 249 RMD160 2163f6472d561949f2752913146f179571af5be8 SHA1 e14c79a0c8f51013d24a25a98f73ea92410b528f SHA256 f0e7e1e49a8a6144cfa708a80f28b31f6ffc9bf7f7c4276c7408b9382e19e13d
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (GNU/Linux)
+
+iEYEARECAAYFAk5eyGQACgkQTVUdg23rv506BACcC0lfS/S+r+0NC+XiUdPRZDOR
+z2AAn1OVYT1ncaCNlBNXNJAs90B7So8o
+=XUlc
+-----END PGP SIGNATURE-----
diff --git a/app-misc/ofl/metadata.xml b/app-misc/ofl/metadata.xml
new file mode 100644 (file)
index 0000000..4204007
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>mattst88@gentoo.org</email>
+ <name>Matt Turner</name>
+</maintainer>
+</pkgmetadata>
diff --git a/app-misc/ofl/ofl-20110721.ebuild b/app-misc/ofl/ofl-20110721.ebuild
new file mode 100644 (file)
index 0000000..1d8ead8
--- /dev/null
@@ -0,0 +1,37 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/ofl/ofl-20110721.ebuild,v 1.1 2011/08/31 23:48:47 mattst88 Exp $
+
+EAPI=4
+
+inherit toolchain-funcs
+
+DESCRIPTION="Open file lister (replaces fuser and lsof -m)"
+HOMEPAGE="http://jengelh.medozas.de/projects/hxtools/"
+SRC_URI="http://jftp.medozas.de/hxtools/hxtools-${PV}.tar.xz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=">=sys-libs/libhx-3.4"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"/hxtools-${PV}
+
+src_configure() {
+       # We're just building a single utility. Don't bother
+       # with the build system.
+       :
+}
+
+src_compile() {
+       CC=$(tc-getCC) CFLAGS=${CFLAGS} LDLIBS="-lHX" \
+               emake V=1 -C sadmin ofl
+}
+
+src_install() {
+       dobin sadmin/ofl
+       doman doc/ofl.1
+}