summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schwabbauer <cybersystem@gentoo.org>2002-10-21 17:37:26 +0000
committerSascha Schwabbauer <cybersystem@gentoo.org>2002-10-21 17:37:26 +0000
commit286a1929c239cf6d957d00fc36da42b548d71852 (patch)
tree6d17fc5fb57b75bb49f80a53d20e626f386291f0 /app-editors/zile
parentadded symlink for zipinfo per #9425 (diff)
downloadgentoo-2-286a1929c239cf6d957d00fc36da42b548d71852.tar.gz
gentoo-2-286a1929c239cf6d957d00fc36da42b548d71852.tar.bz2
gentoo-2-286a1929c239cf6d957d00fc36da42b548d71852.zip
initial version in portage now
Diffstat (limited to 'app-editors/zile')
-rw-r--r--app-editors/zile/ChangeLog9
-rw-r--r--app-editors/zile/files/digest-zile-1.7_alpha61
-rw-r--r--app-editors/zile/zile-1.7_alpha6.ebuild41
3 files changed, 51 insertions, 0 deletions
diff --git a/app-editors/zile/ChangeLog b/app-editors/zile/ChangeLog
new file mode 100644
index 000000000000..50c16d09b44a
--- /dev/null
+++ b/app-editors/zile/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-editors/zile
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.1 2002/10/21 17:37:26 cybersystem Exp $
+
+*zile-1.7_alpha6 (21 Oct 2002)
+
+ 21 Oct 2002; Sascha Schwabbauer <cybersystem@gentoo.org> zile-1.7_alpha6.ebuild files/digest-zile-1.7_alpha6 ChangeLog :
+
+ Initial version in portage now, thanks to: stephen@theboulets.net (Stephen Boulet) in bug #7886
diff --git a/app-editors/zile/files/digest-zile-1.7_alpha6 b/app-editors/zile/files/digest-zile-1.7_alpha6
new file mode 100644
index 000000000000..ad698aaf2ea3
--- /dev/null
+++ b/app-editors/zile/files/digest-zile-1.7_alpha6
@@ -0,0 +1 @@
+MD5 034bccac977f562feab4110d57098a62 zile-1.7-a6.tar.gz 268977
diff --git a/app-editors/zile/zile-1.7_alpha6.ebuild b/app-editors/zile/zile-1.7_alpha6.ebuild
new file mode 100644
index 000000000000..a40aab3d76e4
--- /dev/null
+++ b/app-editors/zile/zile-1.7_alpha6.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-1.7_alpha6.ebuild,v 1.1 2002/10/21 17:37:26 cybersystem Exp $
+
+DESCRIPTION="Zile is a tiny emacs clone."
+HOMEPAGE="http://zile.sourceforge.net/"
+SRC_URI="mirror://sourceforge/zile/${P/_alpha/-a}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+
+KEYWORDS="~x86 ~ppc"
+
+RDEPEND=">=sys-libs/ncurses-5.2"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${P/_alpha/-a}"
+
+src_compile() {
+ ./configure --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man || die "./configure failed"
+ make || die
+}
+
+src_install() {
+ dodir /usr/share/man
+ keepdir /var/lib/{exrecover,expreserve}
+ make INSTALL=/usr/bin/install \
+ DESTDIR=${D} \
+ infodir=${D}/usr/share/info\
+ MANDIR=/usr/share/man \
+ TERMLIB=termlib \
+ PRESERVEDIR=${D}/var/lib/expreserve \
+ RECOVER="-DEXRECOVER=\\\"/var/lib/exrecover\\\" \
+ -DEXPRESERVE=\\\"/var/lib/expreserve\\\"" \
+ install || die
+
+ dodoc COPYRIGHT CREDITS HISTORY KNOWNBUGS NEWS README* TODO LICENSE
+}
+