diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-04-23 16:42:29 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-04-23 16:42:29 +0000 |
commit | 8b5678c558e470e657d410c1bcf626529c277a0a (patch) | |
tree | 7edc54865c999fe33ef3a6b62e8e3a70b4bc3d73 /dev-util/injectso | |
parent | touchups (diff) | |
download | gentoo-2-8b5678c558e470e657d410c1bcf626529c277a0a.tar.gz gentoo-2-8b5678c558e470e657d410c1bcf626529c277a0a.tar.bz2 gentoo-2-8b5678c558e470e657d410c1bcf626529c277a0a.zip |
touchups
Diffstat (limited to 'dev-util/injectso')
-rw-r--r-- | dev-util/injectso/injectso-0.2.ebuild | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/dev-util/injectso/injectso-0.2.ebuild b/dev-util/injectso/injectso-0.2.ebuild index 912238fbbad2..aea990abcd6c 100644 --- a/dev-util/injectso/injectso-0.2.ebuild +++ b/dev-util/injectso/injectso-0.2.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/injectso/injectso-0.2.ebuild,v 1.3 2003/02/13 11:56:19 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/injectso/injectso-0.2.ebuild,v 1.4 2003/04/23 16:42:29 vapier 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" @@ -13,14 +13,11 @@ KEYWORDS="x86" DEPEND="virtual/glibc" src_compile() { - econf || die emake || die - } src_install() { - dobin injectso dodir /usr/lib/injectso @@ -29,16 +26,12 @@ src_install() { 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 - + echo + 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." + echo } - |