You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
888 B
38 lines
888 B
# 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-fbsd ~x86-fbsd ~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
|
|
}
|