blob: e1f9aca5ebb4c5a398f2d11df5f7ea8d30714b4a (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/muttprint/muttprint-0.63a.ebuild,v 1.6 2004/06/14 08:49:14 kloeri Exp $
DESCRIPTION="pretty printing of your mails"
HOMEPAGE="http://muttprint.sf.net/"
SRC_URI="mirror://sourceforge/muttprint/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/tetex"
src_compile() {
if has_version 'app-text/ptex' ; then
cp muttprint muttprint.in
sed -e "s/latex/platex/g" muttprint.in > muttprint
fi
}
src_install() {
# understanding the install part of the Makefiles.
make prefix=${D}/usr docdir=${D}/usr/share/doc/ install || die
}
|