summaryrefslogtreecommitdiff
path: root/dev-libs/gf2x/gf2x-1.1.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/gf2x/gf2x-1.1.ebuild')
-rw-r--r--dev-libs/gf2x/gf2x-1.1.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-libs/gf2x/gf2x-1.1.ebuild b/dev-libs/gf2x/gf2x-1.1.ebuild
deleted file mode 100644
index 779fbdb0f804..000000000000
--- a/dev-libs/gf2x/gf2x-1.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools-utils
-
-PACKAGEID=30873 # hack
-
-DESCRIPTION="C/C++ routines for fast arithmetic in GF(2)[x]"
-HOMEPAGE="http://gf2x.gforge.inria.fr/"
-SRC_URI="http://gforge.inria.fr/frs/download.php/${PACKAGEID}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="bindist static-libs"
-
-src_configure() {
- local myeconfargs=(
- ABI=default
- )
-
- if use bindist ; then
- if use x86 ; then
- myeconfargs+=(
- --disable-sse2
- )
- fi
- if use amd64 ; then
- myeconfargs+=(
- --disable-pclmul
- )
- fi
- fi
-
- autotools-utils_src_configure
-}