blob: 0cca6ab444900c8de568e08419cff982e7cc9f47 (
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
|
# Copyright 1999-2000 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/jadetex/jadetex-2.20.ebuild,v 1.1 2000/10/19 15:59:08 achim Exp $
A="${P}.zip ${P}-makefile.patch"
S=${WORKDIR}/${P}
DESCRIPTION="TeX macros used by Jade TeX output."
SRC_URI="http://www.tug.org/applications/jadetex/jadetex-2.20.zip
ftp://ftp.kde.org/pub/kde/devel/docbook/SOURCES/${P}-makefile.patch"
HOMEPAGE="http://"
src_unpack() {
mkdir ${S}
cd ${S}
unpack ${P}.zip
patch -p0 < ${DISTDIR}/${P}-makefile.patch
}
src_compile() {
cd ${S}
try make
}
src_install () {
cd ${S}
try make DESTDIR=${D} install
dodoc ChangeLog
doman *.1
dodir /usr/bin
cd ${D}/usr/bin
ln -sf virtex jadetext
ln -sf pdfvirtex pdfjadetex
}
|