blob: 5a28a6baee68160b3e340c166d669f4852bc2555 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.4.1-r1.ebuild,v 1.1 2004/12/15 10:24:30 ka0ttic Exp $
inherit eutils
MY_P="${P/-/_}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Tools and library for reading Outlook files (.pst format)"
# note: HOMEPAGE is outdated ; current upstream page is unknown
HOMEPAGE="http://sourceforge.net/projects/ol2mbox"
SRC_URI="mirror://gentoo/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.diff
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc README AUTHORS CREDITS TODO FILE-FORMAT || die "dodoc failed"
dohtml FILE-FORMAT.html || die "dohtml failed"
}
|