diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 12:45:09 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 12:45:09 +0000 |
commit | e27c43913c049681679b773f3dbb34ab43f6e209 (patch) | |
tree | 6667392b7a863994137178138537c6472535fa94 /dev-util/efence | |
parent | new version .. no RC5, sorry (diff) | |
download | gentoo-2-e27c43913c049681679b773f3dbb34ab43f6e209.tar.gz gentoo-2-e27c43913c049681679b773f3dbb34ab43f6e209.tar.bz2 gentoo-2-e27c43913c049681679b773f3dbb34ab43f6e209.zip |
A=-fix, try->die, tab-fixes, stylefixes, ...
Diffstat (limited to 'dev-util/efence')
-rw-r--r-- | dev-util/efence/efence-2.2.2.ebuild | 32 |
1 files changed, 12 insertions, 20 deletions
diff --git a/dev-util/efence/efence-2.2.2.ebuild b/dev-util/efence/efence-2.2.2.ebuild index 8c81ed91e61c..aea9638992c9 100644 --- a/dev-util/efence/efence-2.2.2.ebuild +++ b/dev-util/efence/efence-2.2.2.ebuild @@ -1,37 +1,29 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Mikael Hallendal <micke@hallendal.net> -# $Header: /var/cvsroot/gentoo-x86/dev-util/efence/efence-2.2.2.ebuild,v 1.1 2001/08/25 23:55:02 hallski Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/efence/efence-2.2.2.ebuild,v 1.2 2001/11/10 12:45:09 hallski Exp $ -A=ElectricFence-${PV}.tar.gz S=${WORKDIR}/ElectricFence-${PV} DESCRIPTION="malloc() debugger for Linux and Unix." -SRC_URI="ftp://ftp.perens.com/pub/ElectricFence/Beta/${A}" +SRC_URI="ftp://ftp.perens.com/pub/ElectricFence/Beta/ElectricFence-${PV}.tar.gz" HOMEPAGE="http://perens.com/FreeSoftware/" DEPEND="virtual/glibc" src_compile() { - emake || die + emake || die } src_install () { - - dodir /usr/bin - dodir /usr/lib - dodir /usr/share/man/man3 + dodir /usr/bin + dodir /usr/lib + dodir /usr/share/man/man3 - make BIN_INSTALL_DIR=${D}/usr/bin \ - LIB_INSTALL_DIR=${D}/usr/lib \ - MAN_INSTALL_DIR=${D}/usr/share/man/man3 \ - install - - assert "Installation of package failed." + make BIN_INSTALL_DIR=${D}/usr/bin \ + LIB_INSTALL_DIR=${D}/usr/lib \ + MAN_INSTALL_DIR=${D}/usr/share/man/man3 \ + install + assert "Installation of package failed." - dodoc CHANGES COPYING README + dodoc CHANGES COPYING README } - - - - - |