diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2005-06-05 21:08:30 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2005-06-05 21:08:30 +0000 |
commit | 0c06601da96fff1eaae34ed33fe75a2784443e82 (patch) | |
tree | 566d0c4e0d60ebee6d8bfec1fa09a0bd5a915e10 /app-editors/leafpad/leafpad-0.8.1.ebuild | |
parent | tiny fix, close bug #93826 (diff) | |
download | gentoo-2-0c06601da96fff1eaae34ed33fe75a2784443e82.tar.gz gentoo-2-0c06601da96fff1eaae34ed33fe75a2784443e82.tar.bz2 gentoo-2-0c06601da96fff1eaae34ed33fe75a2784443e82.zip |
bump
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-editors/leafpad/leafpad-0.8.1.ebuild')
-rw-r--r-- | app-editors/leafpad/leafpad-0.8.1.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-editors/leafpad/leafpad-0.8.1.ebuild b/app-editors/leafpad/leafpad-0.8.1.ebuild new file mode 100644 index 000000000000..9b04358c5719 --- /dev/null +++ b/app-editors/leafpad/leafpad-0.8.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/leafpad/leafpad-0.8.1.ebuild,v 1.1 2005/06/05 21:08:30 taviso Exp $ + +inherit eutils + +DESCRIPTION="simple gtk+ text editor" +HOMEPAGE="http://tarot.freeshell.org/leafpad/" +SRC_URI="http://savannah.nongnu.org/download/leafpad/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=">=x11-libs/gtk+-2.4" +DEPEND="${RDEPEND} dev-util/pkgconfig" + +src_compile() { + econf --disable-rpath --enable-chooser `use_enable nls` + emake +} + +src_install() { + einstall + dodoc AUTHORS ChangeLog COPYING NEWS README +} |