summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Alberto Suarez Lopez <bass@gentoo.org>2002-05-31 18:16:16 +0000
committerJose Alberto Suarez Lopez <bass@gentoo.org>2002-05-31 18:16:16 +0000
commit0e3dbe1959809882b7b964a708c3c5ffd41de7a8 (patch)
tree389aa9ff698abf1e91734443bf5b03c9c1281fb1 /app-editors/xwpe
parentminor bug fixed (diff)
downloadhistorical-0e3dbe1959809882b7b964a708c3c5ffd41de7a8.tar.gz
historical-0e3dbe1959809882b7b964a708c3c5ffd41de7a8.tar.bz2
historical-0e3dbe1959809882b7b964a708c3c5ffd41de7a8.zip
first relase
Diffstat (limited to 'app-editors/xwpe')
-rw-r--r--app-editors/xwpe/ChangeLog11
-rw-r--r--app-editors/xwpe/files/digest-xwpe-1.5.26a1
-rw-r--r--app-editors/xwpe/xwpe-1.5.26a.ebuild32
3 files changed, 44 insertions, 0 deletions
diff --git a/app-editors/xwpe/ChangeLog b/app-editors/xwpe/ChangeLog
new file mode 100644
index 000000000000..ca4832aea1ae
--- /dev/null
+++ b/app-editors/xwpe/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for app-editors/xwpe
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# Author: Francisco Gimeno <kikov@fco-gimeno.com>
+# Maintainer: José Alberto Suárez López <bass@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/app-editors/xwpe/ChangeLog,v 1.1 2002/05/31 18:16:16 bass Exp $
+
+*xwpe-1.5.26a (25 May 20002)
+
+ 25 May 2002; Francisco Gimeno <kikov@fco-gimeno.com> xwpe-1.5.26a.ebuild:
+ New package.
+
diff --git a/app-editors/xwpe/files/digest-xwpe-1.5.26a b/app-editors/xwpe/files/digest-xwpe-1.5.26a
new file mode 100644
index 000000000000..24692433fcb2
--- /dev/null
+++ b/app-editors/xwpe/files/digest-xwpe-1.5.26a
@@ -0,0 +1 @@
+MD5 dbdf635f722b71d80ab04dd6fa1386c9 xwpe-1.5.26a.tar.gz 305902
diff --git a/app-editors/xwpe/xwpe-1.5.26a.ebuild b/app-editors/xwpe/xwpe-1.5.26a.ebuild
new file mode 100644
index 000000000000..63ca344c816e
--- /dev/null
+++ b/app-editors/xwpe/xwpe-1.5.26a.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/xwpe/xwpe-1.5.26a.ebuild,v 1.1 2002/05/31 18:16:16 bass Exp $
+
+DESCRIPTION="An IDE to Develop in text and graphical mode"
+HOMEPAGE="http://www.identicalsoftware.com/xwpe/"
+
+LICENSE="GPL"
+
+DEPEND="gpm \
+ ncurses \
+ zlib "
+RDEPEND="${DEPEND}"
+SLOT="0"
+
+SRC_URI="http://www.identicalsoftware.com/xwpe/${P}.tar.gz"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=${D}/usr/share/info \
+ --mandir=${D}/usr/share/man || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ make prefix=${D}/usr install || die
+ dodoc INSTALL README CHANGELOG
+}