blob: ce43847193aba953847109e094993d01d9976abf (
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
107
108
109
110
111
112
113
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-text/openjade/openjade-1.3.1-r2.ebuild,v 1.1 2002/04/23 18:41:02 azarah Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Jade is an implemetation of DSSSL - an ISO standard for formatting SGML (and XML) documents"
SRC_URI="http://download.sourceforge.net/openjade/${P}.tar.gz"
HOMEPAGE="http://openjade.sourceforge.net"
DEPEND="virtual/glibc
sys-devel/perl"
RDEPEND="virtual/glibc
app-text/sgml-common"
src_compile() {
#real weird setup here. we need to libtoolize to fix .la files.
#
#Azarah -- (7 April 2002)
ln -s config/configure.in configure.in
libtoolize --copy --force
SGML_PREFIX=/usr/share/sgml
./configure --host=${CHOST} \
--prefix=/usr \
--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
insinto /usr/include/sp/generic
doins generic/*.h
insinto /usr/include/sp/include
doins include/*.h
insinto /usr/include/sp/lib
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/*
}
pkg_postinst() {
if [ -x "/usr/bin/install-catalog" ] && [ "$ROOT" = "/" ] ; then
install-catalog --add /etc/sgml/${P}.cat /usr/share/sgml/openjade-${PV}/catalog
install-catalog --add /etc/sgml/${P}.cat /usr/share/sgml/openjade-${PV}/dsssl/catalog
# install-catalog --add /etc/sgml/${P}.cat /usr/share/sgml/openjade-${PV}/unicode/catalog
install-catalog --add /etc/sgml/sgml-docbook.cat /etc/sgml/${P}.cat
fi
}
pkg_postrm() {
if [ -x "/usr/bin/install-catalog" ] && [ "$ROOT" = "/" ] ; then
if [ ! -e /usr/share/sgml/openjade-${PV}/catalog ] && \
[ -e /etc/sgml/${P}.cat ] ; then
install-catalog --remove /etc/sgml/${P}.cat /usr/share/sgml/openjade-${PV}/catalog
fi
if [ ! -e /usr/share/sgml/openjade-${PV}/dsssl/catalog ] && \
[ -e /etc/sgml/${P}.cat ] ; then
install-catalog --remove /etc/sgml/${P}.cat /usr/share/sgml/openjade-${PV}/dsssl/catalog
fi
if [ ! -e /usr/share/sgml/openjade-${PV}/unicode/catalog ] && \
[ -e /etc/sgml/${P}.cat ] ; then
install-catalog --remove /etc/sgml/${P}.cat /usr/share/sgml/openjade-${PV}/unicode/catalog
fi
if [ ! -e /etc/sgml/${P}.cat ] ; then
install-catalog --remove /etc/sgml/sgml-docbook.cat /etc/sgml/${P}.cat
fi
fi
}
|