summaryrefslogtreecommitdiff
blob: 2d1249c044d127f08592a9d5ea786f9ac75a50da (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libole2/libole2-0.2.4.ebuild,v 1.14 2003/03/06 15:30:39 liquidx Exp $

inherit gnome.org

S=${WORKDIR}/${P}
DESCRIPTION="Library to manipulate OLE2 Structured Storage files"
HOMEPAGE="http://www.gnome.org/"

IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc ppc alpha"

DEPEND="=dev-libs/glib-1.2*
        dev-util/gtk-doc"

src_compile() {
	econf || die
	emake || die
}

src_install() {
    # prevent executing gtkdoc-fixxref - sandbox violations
    cd ${S}/doc
    mv Makefile Makefile.orig
    sed 's/gtkdoc-fixxref.*/\\/' Makefile.orig > Makefile
    
    cd ${S}
	make DESTDIR=${D} install || die
	dodoc AUTHORS COPYING ChangeLog NEWS README* TODO
}

pkg_postinst() {
   einfo "Fixing libole2's documentation cross references"
   gtkdoc-fixxref --module=libole2 --html-dir=/usr/share/libole2/html
}