summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Keadle <mkeadle@gentoo.org>2002-10-14 07:45:40 +0000
committerMatt Keadle <mkeadle@gentoo.org>2002-10-14 07:45:40 +0000
commit179e4f2cc9279076c07d3e11ef5ee3b70023b610 (patch)
tree7a1b6538c114b5d64b4d9382ec0d5af187697437 /x11-libs/xforms
parentSecurity update. (diff)
downloadgentoo-2-179e4f2cc9279076c07d3e11ef5ee3b70023b610.tar.gz
gentoo-2-179e4f2cc9279076c07d3e11ef5ee3b70023b610.tar.bz2
gentoo-2-179e4f2cc9279076c07d3e11ef5ee3b70023b610.zip
Correcting DESCRIPTION
Diffstat (limited to 'x11-libs/xforms')
-rw-r--r--x11-libs/xforms/ChangeLog9
-rw-r--r--x11-libs/xforms/files/digest-xforms-1.0_rc4-r11
-rw-r--r--x11-libs/xforms/xforms-1.0_rc4-r1.ebuild46
3 files changed, 55 insertions, 1 deletions
diff --git a/x11-libs/xforms/ChangeLog b/x11-libs/xforms/ChangeLog
index c2fb57092fd9..70631f981a20 100644
--- a/x11-libs/xforms/ChangeLog
+++ b/x11-libs/xforms/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for x11-libs/xforms
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/ChangeLog,v 1.9 2002/08/15 00:07:23 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/ChangeLog,v 1.10 2002/10/14 07:45:40 mkeadle Exp $
+
+*xforms-1.0_rc4-r1 (14 Oct 2002)
+
+ 14 Oct 2002: Matt Keadle <mkeadle@gentoo.org> xforms-1.0_rc4-r1.ebuild
+ files/digest-xforms-1.0_rc4-r1
+
+ DESCRIPTION still help line from skel.ebuild. Updated with proper description.
*xforms-1.0_rc4 (28 Jul 2002)
diff --git a/x11-libs/xforms/files/digest-xforms-1.0_rc4-r1 b/x11-libs/xforms/files/digest-xforms-1.0_rc4-r1
new file mode 100644
index 000000000000..10d2a37941da
--- /dev/null
+++ b/x11-libs/xforms/files/digest-xforms-1.0_rc4-r1
@@ -0,0 +1 @@
+MD5 1166cec00a56754837ea5bb76df97483 xforms-1.0RC4.tgz 1028288
diff --git a/x11-libs/xforms/xforms-1.0_rc4-r1.ebuild b/x11-libs/xforms/xforms-1.0_rc4-r1.ebuild
new file mode 100644
index 000000000000..70b873ea0824
--- /dev/null
+++ b/x11-libs/xforms/xforms-1.0_rc4-r1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/xforms-1.0_rc4-r1.ebuild,v 1.1 2002/10/14 07:45:40 mkeadle Exp $
+
+MY_P=${P/_rc/RC}
+S=${WORKDIR}/${MY_P}
+DESCRIPTION="A graphical user interface toolkit for X"
+HOMEPAGE="http://world.std.com/~xforms/"
+SRC_URI="ftp://ncmir.ucsd.edu/pub/xforms/OpenSource/${MY_P}.tgz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86 ppc sparc64"
+
+DEPEND="virtual/x11"
+
+PROVIDE="virtual/xforms"
+
+src_unpack() {
+
+ unpack $A
+ cd $S
+
+ # use custom CFLAGS
+ cp Imakefile Imakefile.orig
+ sed -e "s:CDEBUGFLAGS =:CDEBUGFLAGS = ${CFLAGS} #:" \
+ -e "s:CDEBUGFLAGS =:CDEBUGFLAGS = ${CFLAGS} #:" Imakefile.orig > Imakefile
+
+}
+
+src_compile() {
+ xmkmf -a
+ cp Makefile Makefile.orig
+ sed -e s/'demos$'// Makefile.orig > Makefile
+
+ # use custom CFLAGS
+ cp Makefile Makefile.orig
+ sed -e "s:CDEBUGFLAGS =:CDEBUGFLAGS = ${CFLAGS} #:" \
+ -e "s:CDEBUGFLAGS =:CDEBUGFLAGS = ${CFLAGS} #:" Makefile.orig > Makefile
+
+ make || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+}