summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Goodyear <g2boojum@gentoo.org>2002-05-14 20:15:09 +0000
committerGrant Goodyear <g2boojum@gentoo.org>2002-05-14 20:15:09 +0000
commit27699d5a3df9678fece3dbe556a84db0dd7914d1 (patch)
tree6c1bc2faca86c45ed5beeeae4ad4eb464400cc44 /app-text/yudit
parenthtml-tree first relase (diff)
downloadgentoo-2-27699d5a3df9678fece3dbe556a84db0dd7914d1.tar.gz
gentoo-2-27699d5a3df9678fece3dbe556a84db0dd7914d1.tar.bz2
gentoo-2-27699d5a3df9678fece3dbe556a84db0dd7914d1.zip
New package.
Diffstat (limited to 'app-text/yudit')
-rw-r--r--app-text/yudit/ChangeLog26
-rw-r--r--app-text/yudit/files/digest-yudit-2.61
-rw-r--r--app-text/yudit/yudit-2.6.ebuild32
3 files changed, 59 insertions, 0 deletions
diff --git a/app-text/yudit/ChangeLog b/app-text/yudit/ChangeLog
new file mode 100644
index 000000000000..7ddf8e12edd3
--- /dev/null
+++ b/app-text/yudit/ChangeLog
@@ -0,0 +1,26 @@
+# ChangeLog for <CATEGORY>/<PACKAGE_NAME>
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/ChangeLog,v 1.1 2002/05/14 20:12:00 g2boojum Exp $
+
+*yudit-2.6 (14 May 2002)
+
+ 14 May 2002; Grant Goodyear <g2boojum@gentoo.org> :
+
+ New package. Thanks to Nicolas Fugier.
+
+-- Explanation of ChangeLog format:
+
+ Every new version or revision of the package should be marked by a '*'
+ seperator line as above. Changes since the last revision have to be added to
+ the top of the file, underneath the initial copyright and cvs header
+ comments, in exactly the same format as this comment.
+
+ This means that you start with header line that has the following format,
+ indented two spaces:
+
+ DD MMM YYYY; your_name <your_email> changed_file1, changed_file2: Your
+ explanation should follow. It should be indented and wrapped at a line width
+ of 80 characters. The changed_files can be omitted if they are obvious; for
+ example, if you are only modifying the .ebuild file and committing a new rev
+ of a package. Any details about what exactly changed in the code should be
+ added as a message when the changes are committed to cvs, not in this file.
diff --git a/app-text/yudit/files/digest-yudit-2.6 b/app-text/yudit/files/digest-yudit-2.6
new file mode 100644
index 000000000000..b79ee9c91a23
--- /dev/null
+++ b/app-text/yudit/files/digest-yudit-2.6
@@ -0,0 +1 @@
+MD5 c7fa86fd9b31cba235df79bac8f504d0 yudit-2.6.tar.gz 2062901
diff --git a/app-text/yudit/yudit-2.6.ebuild b/app-text/yudit/yudit-2.6.ebuild
new file mode 100644
index 000000000000..6da1d19e86c1
--- /dev/null
+++ b/app-text/yudit/yudit-2.6.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author: Nicolas Fugier <nicolas.fugier@laposte.net>
+# Maintainer: Nicolas Fugier <nicolas.fugier@laposte.net>
+# $Header: /var/cvsroot/gentoo-x86/app-text/yudit/yudit-2.6.ebuild,v 1.1 2002/05/14 20:12:00 g2boojum Exp $
+
+S=${WORKDIR}/${P}
+
+DESCRIPTION="Yudit is a free (Y)unicode text editor for all unices"
+
+SRC_URI="http://yudit.org/download/${P}.tar.gz"
+
+HOMEPAGE="http://www.yudit.org"
+
+LICENSE="GPL-2"
+
+DEPEND="virtual/x11
+ >=sys-devel/gettext-0.10"
+RDEPEND=
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+}