blob: 68205795ab6ae941cdf0bec503c1270b9321a914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/gnotepad+/gnotepad+-1.3.3.ebuild,v 1.3 2004/06/01 16:31:22 aliz Exp $
DESCRIPTION="Gnotepad+ is a simple HTML and text editor using the GTK Text Widget."
SRC_URI="http://download.sourceforge.net/gnotepad/${P}.tar.gz"
HOMEPAGE="http://gnotepad.sourceforge.net/"
DEPEND="=x11-libs/gtk+-1.2*"
RDEPEND=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
src_compile() {
econf || die
emake || die
}
src_install () {
einstall || die
}
|