diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-06-07 04:28:31 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-06-07 04:28:31 +0000 |
commit | 60db1754ddba4d86a20d124d8f7d71593faa0d6e (patch) | |
tree | ac13ca5d6c616d9b3dbd85dd1ad2ff911d5558db /app-text | |
parent | force static spasswd (diff) | |
download | historical-60db1754ddba4d86a20d124d8f7d71593faa0d6e.tar.gz historical-60db1754ddba4d86a20d124d8f7d71593faa0d6e.tar.bz2 historical-60db1754ddba4d86a20d124d8f7d71593faa0d6e.zip |
Initial import.
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/gtksourceview/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/gtksourceview/Manifest | 3 | ||||
-rw-r--r-- | app-text/gtksourceview/files/digest-gtksourceview-0.2.1 | 1 | ||||
-rw-r--r-- | app-text/gtksourceview/gtksourceview-0.2.1.ebuild | 35 |
4 files changed, 48 insertions, 0 deletions
diff --git a/app-text/gtksourceview/ChangeLog b/app-text/gtksourceview/ChangeLog new file mode 100644 index 000000000000..8ceff51e365f --- /dev/null +++ b/app-text/gtksourceview/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-text/gtksourceview +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/gtksourceview/ChangeLog,v 1.1 2003/06/07 04:28:17 bcowan Exp $ + +*gtksourceview-0.2.1 (07 Jun 2003) + + 07 Jun 2003; Brad Cowan <bcowan@gentoo.org> gtksourceview-0.2.1.ebuild: + Initial import. + diff --git a/app-text/gtksourceview/Manifest b/app-text/gtksourceview/Manifest new file mode 100644 index 000000000000..3853f6370aee --- /dev/null +++ b/app-text/gtksourceview/Manifest @@ -0,0 +1,3 @@ +MD5 b2b80bb7f38859aa82333f6e4e8afbbd gtksourceview-0.2.1.ebuild 822 +MD5 cdb5508064159c16e15a4424221cee0e ChangeLog 355 +MD5 faee15d0fe7c4943aeff8c038a8d1ca4 files/digest-gtksourceview-0.2.1 72 diff --git a/app-text/gtksourceview/files/digest-gtksourceview-0.2.1 b/app-text/gtksourceview/files/digest-gtksourceview-0.2.1 new file mode 100644 index 000000000000..70a83eb29628 --- /dev/null +++ b/app-text/gtksourceview/files/digest-gtksourceview-0.2.1 @@ -0,0 +1 @@ +MD5 f6861adfefea4b834ece74b9595f20a1 gtksourceview-0.2.1.tar.bz2 357700 diff --git a/app-text/gtksourceview/gtksourceview-0.2.1.ebuild b/app-text/gtksourceview/gtksourceview-0.2.1.ebuild new file mode 100644 index 000000000000..56edfbcb6eab --- /dev/null +++ b/app-text/gtksourceview/gtksourceview-0.2.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/gtksourceview/gtksourceview-0.2.1.ebuild,v 1.1 2003/06/07 04:28:17 bcowan Exp $ + +IUSE="nls" + +S=${WORKDIR}/${P} + +DESCRIPTION="Text widget that improves GtkTextView by adding syntax highlighting" +HOMEPAGE="http://www.gnome.org" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/gtksourceview/0.2/${P}.tar.bz2" + + +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc" +SLOT="0" + +DEPEND=">=x11-libs/gtk+-2.2* + >=dev-libs/libxml2-2.5* + >=gnome-base/gnome-vfs-2.2*" + +src_compile() { + local myconf="" + + use nls || myconf="${myconf} --disable-nls" + + econf ${myconf} + emake +} + +src_install() { + einstall || die + + dodoc AUTHORS COPYING ChangeLog HACKING INSTALL MAINTAINERS NEWS README TODO +} |