blob: 6d9f6a2c2a50994cc8ea5b8e086506554a8f6b50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mpage/mpage-2.5.1.ebuild,v 1.14 2004/07/01 11:59:54 eradicator Exp $
DESCRIPTION="A printing tool"
HOMEPAGE="http://www.mesa.nl/"
SRC_URI="http://www.mesa.nl/pub/mpage/mpage251pre.tgz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86 sparc"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
emake CFLAGS="$CFLAGS \$(DEFS)" PREFIX=/usr MANDIR=/usr/share/man/man1 || die
}
src_install () {
make PREFIX=${D}/usr MANDIR=${D}/usr/share/man/man1 install || die
}
|