blob: 7597013ffd5ab79cf7ec719e3c9714c1498d5f32 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/filepp/filepp-1.6.0.ebuild,v 1.9 2004/06/28 05:19:47 ciaranm Exp $
DESCRIPTION="Generic file-preprocessor with a CPP-like syntax"
HOMEPAGE="http://www.cabaret.demon.co.uk/filepp/"
SRC_URI="http://www.cabaret.demon.co.uk/filepp/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 s390 ~sparc ~mips"
IUSE=""
RDEPEND="dev-lang/perl"
moduledir="/usr/share/${P}/modules"
src_compile() {
econf --with-moduledir=${moduledir} || die "econf failed"
}
src_install() {
einstall moduledir=${D}/${moduledir}
dodoc ChangeLog README
dohtml filepp.html
}
|