blob: 2fffb3abccf8bb1cc6d498829f4097f42469a468 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/new/new-1.3.2.ebuild,v 1.3 2004/10/01 12:43:30 pyrania Exp $
inherit eutils gnuconfig
DESCRIPTION="template system useful when used with a simple text editor (like vi)"
HOMEPAGE="http://www.flyn.org/"
SRC_URI="http://www.flyn.org/projects/new/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE=""
src_unpack() {
unpack ${A} ; cd ${S}/src
epatch ${FILESDIR}/${PN}-gcc-3.patch
cd ${S} ; gnuconfig_update
}
src_install() {
einstall || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
}
|