blob: 6f378f06d133d4df700bf3e86d56185fd0b18644 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# 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.9 2005/07/08 17:49:31 dholm Exp $
inherit eutils
DESCRIPTION="simple HTML and text editor"
HOMEPAGE="http://gnotepad.sourceforge.net/"
SRC_URI="http://download.sourceforge.net/gnotepad/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="=x11-libs/gtk+-1.2*"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-destdir.patch
}
src_install() {
make install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog HACKING NEWS README TODO
}
|