diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-08-19 03:07:38 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-08-19 03:07:38 +0000 |
commit | ba9bb738b932eed35e0b5b2a6af7574a50493223 (patch) | |
tree | ec5b109674bae980f92282a0a17c9eb377d3350f /dev-util/injectso/injectso-0.2.ebuild | |
parent | version bump (diff) | |
download | gentoo-2-ba9bb738b932eed35e0b5b2a6af7574a50493223.tar.gz gentoo-2-ba9bb738b932eed35e0b5b2a6af7574a50493223.tar.bz2 gentoo-2-ba9bb738b932eed35e0b5b2a6af7574a50493223.zip |
initial version
Diffstat (limited to 'dev-util/injectso/injectso-0.2.ebuild')
-rw-r--r-- | dev-util/injectso/injectso-0.2.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-util/injectso/injectso-0.2.ebuild b/dev-util/injectso/injectso-0.2.ebuild new file mode 100644 index 000000000000..a93a203db13d --- /dev/null +++ b/dev-util/injectso/injectso-0.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-util/injectso/injectso-0.2.ebuild,v 1.1 2002/08/19 03:07:38 blocke Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Inject shared libraries into running processes under Solaris and Linux" +HOMEPAGE="http://www.securereality.com.au/" +SRC_URI="http://www.securereality.com.au/archives/${P}.tar.gz" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND="virtual/glibc" + +src_compile() { + + econf || die + emake || die + +} + +src_install() { + + dobin injectso + + dodir /usr/lib/injectso + insinto /usr/lib/injectso + doins libtest.so libtest.c + + dodoc ChangeLog README.txt + dohtml README.html + +} + +pkg_postinst() { + + einfo + einfo Read the documentation for instructions on how to use this tool. + einfo The sample library \"libtest.so\" and its source file \"libtest.c\" + einfo be found in /usr/lib/injectso. + einfo + +} + |