blob: 73fdf633c94344039fdb1e74af02a398e199d753 (
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
37
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
AUTOTOOLS_AUTORECONF=true
inherit autotools-utils
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 -arm ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
S=${WORKDIR}/${MY_P}
PATCHES=( "${FILESDIR}"/${P}-amd64-alpha.patch )
src_prepare(){
sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die
autotools-utils_src_prepare
}
src_configure() {
local myeconfargs=( --enable-editing )
autotools-utils_src_configure
}
src_install() {
use doc && HTML_DOCS=( doc/html/. )
autotools-utils_src_install
}
|