diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-01-02 21:03:35 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-01-02 21:03:35 +0000 |
commit | fb6bd274dca6bfa853936f593501ffd3f4c279e4 (patch) | |
tree | a34a4ec0fc5668cd82020bae31c378eb3c10d7e6 /dev-libs/libexploit/libexploit-0.2.ebuild | |
parent | Change encoding to UTF-8 for GLEP 31 compliance (Manifest recommit) (diff) | |
download | gentoo-2-fb6bd274dca6bfa853936f593501ffd3f4c279e4.tar.gz gentoo-2-fb6bd274dca6bfa853936f593501ffd3f4c279e4.tar.bz2 gentoo-2-fb6bd274dca6bfa853936f593501ffd3f4c279e4.zip |
Version bump; closes bug 76421. Added metadata.xml.
Diffstat (limited to 'dev-libs/libexploit/libexploit-0.2.ebuild')
-rw-r--r-- | dev-libs/libexploit/libexploit-0.2.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-libs/libexploit/libexploit-0.2.ebuild b/dev-libs/libexploit/libexploit-0.2.ebuild new file mode 100644 index 000000000000..f8bd78b7ce2a --- /dev/null +++ b/dev-libs/libexploit/libexploit-0.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexploit/libexploit-0.2.ebuild,v 1.1 2005/01/02 21:03:35 ka0ttic Exp $ + +DESCRIPTION="generic exploit creation (overflows/format strings) library" +HOMEPAGE="http://www.packetfactory.net/projects/libexploit/" +SRC_URI="http://www.packetfactory.net/projects/libexploit/LibExploitV${PV/./}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/libc" + +S=${WORKDIR}/LibExploit + +src_compile() { + cd ${S}/src + emake CFLAGS="${CFLAGS} -I../include/" || die "emake failed" +} + +src_install() { + dolib.a src/libexploit.a || die "failed to install archives" + + insinto /usr/include + doins include/* || die "failed to install headers" + + dodir /usr/share/${PF}-src + cp -rf examples/* ${D}/usr/share/${PF}-src/ || die "failed to install examples" + + dodoc README ChangeLog doc/* +} |