summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-22 18:42:37 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-22 18:42:37 +0000
commit07095fed0ce67d08b3aea76ff03ffccbfd4fe128 (patch)
tree513a5d39131e7d98798da1e8e0d59d33fec4e1cb /dev-libs/distorm64
parentAdd one more patch fixing the compilation. (diff)
downloadhistorical-07095fed0ce67d08b3aea76ff03ffccbfd4fe128.tar.gz
historical-07095fed0ce67d08b3aea76ff03ffccbfd4fe128.tar.bz2
historical-07095fed0ce67d08b3aea76ff03ffccbfd4fe128.zip
Delete older ebuild.
Diffstat (limited to 'dev-libs/distorm64')
-rw-r--r--dev-libs/distorm64/distorm64-1.7.30.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/dev-libs/distorm64/distorm64-1.7.30.ebuild b/dev-libs/distorm64/distorm64-1.7.30.ebuild
deleted file mode 100644
index 5988e93c11a1..000000000000
--- a/dev-libs/distorm64/distorm64-1.7.30.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/distorm64/distorm64-1.7.30.ebuild,v 1.1 2009/02/03 23:12:38 patrick Exp $
-
-EAPI="1"
-
-inherit eutils
-
-DESCRIPTION="The ultimate disassembler library (X86-32, X86-64)"
-HOMEPAGE="http://www.ragestorm.net/distorm/"
-SRC_URI="http://ragestorm.net/distorm/${PN}-pkg${PV}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="+python"
-
-DEPEND="python? ( >=dev-lang/python-2.4 )"
-RDEPEND="$DEPEND"
-
-src_unpack() {
- unpack ${A}
-}
-
-src_compile() {
- cd "${WORKDIR}/${PN}/build/linux"
-
- emake clib || die "make clib failed!"
-
- if use python; then
- emake py || die "make py failed!"
- fi
-}
-
-src_install() {
- cd "${WORKDIR}/${PN}/build/linux"
-
- dolib.so libdistorm64.so
-
- if use python; then
- if has_version ">=dev-lang/python-2.5"; then
- mkdir -p "${D}usr/lib/python2.5/site-packages/"
- install libdistorm64.so "${D}usr/lib/python2.5/site-packages/distorm.so"
- else
- mkdir -p "${D}usr/lib/python2.4/site-packages/"
- install libdistorm64.so "${D}usr/lib/python2.4/site-packages/distorm.o"
- fi
- fi
-
- cd "${WORKDIR}/${PN}/"
- mv distorm64.a libdistorm64.a
- dolib.a libdistorm64.a
-
- mkdir -p "${D}usr/include"
- install distorm.h "${D}usr/include/" || die "Unable to install distorm.h"
-}