blob: 28c06ca55cad7493f23fbfd534c781991e4f8f43 (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libemf/libemf-1.0.ebuild,v 1.5 2004/03/03 12:09:06 phosphan Exp $
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/${PN}/${MY_P}.tar.gz"
LICENSE="LGPL-2.1 GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND=""
inherit gcc
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
if [ $(gcc-major-version) -ge 3 ]; then
einfo "gcc >= 3, patch needed"
epatch ${FILESDIR}/${MY_P}-gcc3.patch
fi
}
src_compile() {
econf --enable-editing
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dohtml doc/html/*
dodoc README NEWS AUTHORS ChangeLog
}
|