blob: 4f5e20db99636709d16f46454803a2d20af20cfc (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/openjade/openjade-1.3.1-r6.ebuild,v 1.9 2004/06/17 01:59:42 mr_bones_ Exp $
inherit libtool flag-o-matic sgml-catalog
filter-flags -fno-exceptions
S=${WORKDIR}/${P}
DESCRIPTION="Jade is an implemetation of DSSSL - an ISO standard for formatting SGML and XML documents"
SRC_URI="mirror://sourceforge/openjade/${P}.tar.gz"
HOMEPAGE="http://openjade.sourceforge.net"
SLOT="0"
LICENSE="as-is"
DEPEND="virtual/glibc
dev-lang/perl"
RDEPEND="virtual/glibc
app-text/sgml-common"
KEYWORDS="x86 ppc sparc alpha hppa amd64"
src_compile() {
# 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.
CFLAGS=""
CXXFLAGS=""
# Default CFLAGS and CXXFLAGS is -O2 but this make openjade segfault
# on hppa. Using -O1 works fine. So I force it here.
if [ "${ARCH}" = "hppa" ]
then
CFLAGS="-O1"
CXXFLAGS="-O1"
fi
ln -s config/configure.in configure.in
elibtoolize
SGML_PREFIX=/usr/share/sgml
econf \
--enable-http \
--enable-default-catalog=/etc/sgml/catalog \
--enable-default-search-path=/usr/share/sgml \
--datadir=/usr/share/sgml/${P} || die
make || die
}
src_install() {
dodir /usr
dodir /usr/lib
make prefix=${D}/usr \
datadir=${D}/usr/share/sgml/${P} \
install || die
dosym openjade /usr/bin/jade
dosym onsgmls /usr/bin/nsgmls
dosym osgmlnorm /usr/bin/sgmlnorm
dosym ospam /usr/bin/spam
dosym ospent /usr/bin/spent
dosym osx /usr/bin/sgml2xml
SPINCDIR="/usr/include/OpenSP"
insinto ${SPINCDIR}
doins generic/*.h
insinto ${SPINCDIR}
doins include/*.h
insinto ${SPINCDIR}
doins lib/*.h
insinto /usr/share/sgml/${P}/
doins dsssl/builtins.dsl
echo 'SYSTEM "builtins.dsl" "builtins.dsl"' > ${D}/usr/share/sgml/${P}/catalog
insinto /usr/share/sgml/${P}/dsssl
doins dsssl/{dsssl.dtd,style-sheet.dtd,fot.dtd}
newins ${FILESDIR}/${P}.dsssl-catalog catalog
# Breaks sgml2xml among other things
# insinto /usr/share/sgml/${P}/unicode
# doins unicode/{catalog,unicode.sd,unicode.syn,gensyntax.pl}
insinto /usr/share/sgml/${P}/pubtext
doins pubtext/*
dodoc COPYING NEWS README VERSION
docinto html/doc
dodoc doc/*.htm
docinto html/jadedoc
dodoc jadedoc/*.htm
docinto html/jadedoc/images
dodoc jadedoc/images/*
}
sgml-catalog_cat_include "/etc/sgml/${P}.cat" \
"/usr/share/sgml/openjade-${PV}/catalog"
sgml-catalog_cat_include "/etc/sgml/${P}.cat" \
"/usr/share/sgml/openjade-${PV}/dsssl/catalog"
sgml-catalog_cat_include "/etc/sgml/sgml-docbook.cat" \
"/etc/sgml/${P}.cat"
|