summaryrefslogtreecommitdiff
blob: b6f54d86d92ceda13b136c50dca7c1094ad556a9 (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
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/app-text/psgml/psgml-1.2.2.ebuild,v 1.5 2002/04/27 23:08:35 bangert Exp $

A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="PSGML is a GNU Emacs Major Mode for editing SGML and XML coded documents."
SRC_URI="http://ftp1.sourceforge.net/${PN}/${A}"
HOMEPAGE="http://psgml.sourceforge.net"

DEPEND="virtual/emacs"

src_compile() {

    try ./configure --prefix=/usr --infodir=/usr/share/info --host=${CHOST}
    try make

}

src_install () {

    try make prefix=${D}/usr install
    dodir /usr/share/info
    try make infodir=${D}/usr/share/info install-info

    dodoc ChangeLog README.psgml ${FILESDIR}/dot_emacs

}