blob: 4260c1e01967612cd5bcf6c8adfc174120fb5a78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libemf/libemf-1.0.4.ebuild,v 1.6 2010/01/02 14:32:02 ranger Exp $
EAPI=2
inherit autotools eutils
MY_P="${P/emf/EMF}"
DESCRIPTION="Library implementation of ECMA-234 API for the generation of enhanced metafiles."
HOMEPAGE="http://libemf.sourceforge.net/"
SRC_URI="mirror://sourceforge/libemf/${MY_P}.tar.gz"
LICENSE="LGPL-2.1 GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE="doc"
DEPEND=""
S=${WORKDIR}/${MY_P}
src_prepare() {
epatch "${FILESDIR}"/${P}-amd64-alpha.patch
eautoreconf # or libtool tries to link against the gcc it was built with
}
src_configure() {
econf --enable-editing
}
src_install() {
emake DESTDIR="${D}" install || die
use doc && dohtml doc/html/*
dodoc README NEWS AUTHORS ChangeLog
}
|