blob: bc3d48320b056d5c45ab605cbad131c243327ce3 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/peacock/peacock-1.9.1.ebuild,v 1.2 2004/06/08 12:37:58 dholm Exp $
IUSE=""
DESCRIPTION="A simple GTK HTML editor"
SRC_URI="mirror://sourceforge/peacock/${P}.tar.gz"
HOMEPAGE="http://peacock.sourceforge.net/"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
SLOT="0"
DEPEND=">=x11-libs/gtk+-2
dev-util/pkgconfig
x11-libs/gtksourceview"
src_compile() {
econf || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
|