blob: 9dc34d273ccf79e451bce3dae231a83e2743c08e (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/sgmltools-lite/sgmltools-lite-3.0.3-r4.ebuild,v 1.9 2002/10/04 05:07:53 vapier Exp $
S=${WORKDIR}/${P}
SRC_URI="mirror://sourceforge/sgmltools-lite/${P}.tar.gz
mirror://sourceforge/sgmltools-lite/nw-eps-icons-0.0.1.tar.gz"
HOMEPAGE="http://sgmltools-lite.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
DESCRIPTION="Python interface to SGML software specificially in a DocBook/OpenJade environment. Provides sgml2{html,txt,rtf,dvi,ps}"
DEPEND="virtual/python
app-text/sgml-common
=app-text/docbook-sgml-dtd-3.1
app-text/docbook-dsssl-stylesheets
app-text/jadetex
app-text/openjade
net-www/lynx"
KEYWORDS="x86 ppc sparc sparc64"
src_compile() {
./configure \
--prefix=/usr \
--exec-prefix=/usr \
--bindir=/usr/bin \
--sbindir=/usr/sbin \
--datadir=/usr/share \
--mandir=/usr/share/man || die
make || die
#remove CVS directories from the tree
for dirs in bin doc dsssl dtd man python rpm
do
rm -rf ${dirs}/CVS
done
}
src_install() {
make \
prefix=${D}/usr \
exec-prefix=${D}/usr \
datadir=${D}/usr/share \
bindir=${D}/usr/bin \
sysconfdir=${D}/etc \
mandir=${D}/usr/share/man \
etcdir=${D}/etc/sgml \
install || die
dodoc COPYING ChangeLog POSTINSTALL README*
dohtml -r .
cd ${WORKDIR}/nw-eps-icons-0.0.1/images
insinto /usr/share/sgml/docbook/dsssl-stylesheets/images
doins *.eps
cd callouts
insinto /usr/share/sgml/docbook/dsssl-stylesheets/images/callouts
doins *.eps
rm ${D}/etc/sgml/catalog.{suse,rh62}
# Create simple alias scripts that people are used to
# And make the manpages for those link to the sgmltools-lite manpage
mandir=${D}/usr/share/man/man1
ScripTEXT="/usr/bin/sgmltools --backend="
for back in html ps dvi rtf txt
do
echo "${ScripTEXT}${back}" > sgml2${back}
exeinto /usr/bin
doexe sgml2${back}
cd ${mandir}
ln -sf sgmltools-lite.1.gz sgml2${back}.1.gz
cd ${S}
done
}
pkg_postinst() {
gensgmlenv
grep -v export /etc/sgml/sgml.env > /etc/env.d/93sgmltools-lite
}
|