diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-11-22 05:10:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-11-22 05:10:53 +0000 |
commit | 69e0b06b0363828dd9d92c19f985f8a93ee446be (patch) | |
tree | 7dc60428306fbe685be5b4a527e4c08ba29ea576 /app-editors/gnotepad+/gnotepad+-1.3.3.ebuild | |
parent | Use standard make install DESTDIR stuff. (Manifest recommit) (diff) | |
download | gentoo-2-69e0b06b0363828dd9d92c19f985f8a93ee446be.tar.gz gentoo-2-69e0b06b0363828dd9d92c19f985f8a93ee446be.tar.bz2 gentoo-2-69e0b06b0363828dd9d92c19f985f8a93ee446be.zip |
Use standard make install DESTDIR stuff.
Diffstat (limited to 'app-editors/gnotepad+/gnotepad+-1.3.3.ebuild')
-rw-r--r-- | app-editors/gnotepad+/gnotepad+-1.3.3.ebuild | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/app-editors/gnotepad+/gnotepad+-1.3.3.ebuild b/app-editors/gnotepad+/gnotepad+-1.3.3.ebuild index 6b60f24b4821..7cf04bbb04ab 100644 --- a/app-editors/gnotepad+/gnotepad+-1.3.3.ebuild +++ b/app-editors/gnotepad+/gnotepad+-1.3.3.ebuild @@ -1,18 +1,27 @@ # Copyright 1999-2004 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.6 2004/08/10 13:33:29 fmccor Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gnotepad+/gnotepad+-1.3.3.ebuild,v 1.7 2004/11/22 05:10:53 vapier Exp $ -DESCRIPTION="Gnotepad+ is a simple HTML and text editor using the GTK Text Widget." +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="~x86 ~amd64 ~sparc" +KEYWORDS="~amd64 ~ia64 ~sparc ~x86" IUSE="" DEPEND="=x11-libs/gtk+-1.2*" -src_install () { - einstall || die +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 } |