aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/eina/eina-20081211.ebuild')
-rw-r--r--dev-libs/eina/eina-20081211.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-libs/eina/eina-20081211.ebuild b/dev-libs/eina/eina-20081211.ebuild
deleted file mode 100644
index c560adb..0000000
--- a/dev-libs/eina/eina-20081211.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-DESCRIPTION="Enlightenment eina library"
-HOMEPAGE="http://www.enlightenment.org/"
-ESVN_REPO_URI="http://svn.enlightenment.org/svn/e/trunk/${PN}"
-ESVN_REVISION="r38104"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~arm ~amd64 ~x86"
-IUSE="mmx sse sse2 alitvec threads doc"
-
-inherit autotools subversion
-
-RDEPEND=""
-DEPEND=">=dev-util/pkgconfig-0.9.0"
-
-S="${WORKDIR}/${PN}"
-
-src_unpack() {
- subversion_src_unpack
-
- cd "${S}"
-
- eautoreconf || die "eautoreconf failed"
-}
-
-src_compile() {
- local myconf
-
- myconf="${myconf}
- $(use_enable mmx cpu-mmx) \
- $(use_enable sse cpu-sse) \
- $(use_enable sse2 cpu-sse2) \
- $(use_enable altivec cpu-altivec) \
- $(use_enable threads pthread) \
- $(use_enable doc)"
-
- econf $myconf || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install () {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog COPYING NEWS README
-}