blob: 37b4690c37bb3ea8d4c561dbc7e09e0bcb9aa3f2 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/opensp/opensp-1.5.1.ebuild,v 1.15 2006/05/31 04:14:50 leonardop Exp $
inherit eutils flag-o-matic
MY_P=${P/opensp/OpenSP}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A free, object-oriented toolkit for SGML parsing and entity management"
HOMEPAGE="http://openjade.sourceforge.net/"
SRC_URI="mirror://sourceforge/openjade/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="nls"
DEPEND="nls? ( sys-devel/gettext )"
src_unpack() {
unpack "${A}"
cd "${S}"
epatch "${FILESDIR}"/${PN}-1.5-gcc34.patch
epatch "${FILESDIR}"/opensp-1.5.1-gcc41.patch
}
src_compile() {
#
# The following filters are taken from openjade's ebuild. See bug #100828.
#
# Please note! Opts are disabled. If you know what you're doing
# feel free to remove this line. It may cause problems with
# docbook-sgml-utils among other things.
ALLOWED_FLAGS="-O -O1 -O2 -pipe -g -march"
strip-flags
# Default CFLAGS and CXXFLAGS is -O2 but this make openjade segfault
# on hppa. Using -O1 works fine. So I force it here.
use hppa && replace-flags -O2 -O1
myconf="--enable-http"
myconf="${myconf} --enable-default-catalog=/etc/sgml/catalog"
myconf="${myconf} --enable-default-search-path=/usr/share/sgml"
myconf="${myconf} --datadir=/usr/share/sgml/${P}"
econf ${myconf} $(use_enable nls) || die "econf failed"
emake pkgdocdir=/usr/share/doc/${PF} || die "parallel make failed"
}
src_install() {
make DESTDIR="${D}" pkgdocdir=/usr/share/doc/${PF} install || die
}
|