summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-04-12 18:04:45 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-04-12 18:04:45 +0000
commit3e94a5fd132e6e32a611409d41b96bea545b0c5c (patch)
tree26c9fdf502df404d4264dcf6d00667a127d19357 /app-misc/magicpoint
parentadded note (diff)
downloadgentoo-2-3e94a5fd132e6e32a611409d41b96bea545b0c5c.tar.gz
gentoo-2-3e94a5fd132e6e32a611409d41b96bea545b0c5c.tar.bz2
gentoo-2-3e94a5fd132e6e32a611409d41b96bea545b0c5c.zip
Removed ungif USE flag -- only gif flag is needed and added some imlib, truetype, nls USE dependent compilation
Diffstat (limited to 'app-misc/magicpoint')
-rw-r--r--app-misc/magicpoint/ChangeLog9
-rw-r--r--app-misc/magicpoint/files/digest-magicpoint-1.07a1
-rw-r--r--app-misc/magicpoint/magicpoint-1.07a.ebuild39
3 files changed, 8 insertions, 41 deletions
diff --git a/app-misc/magicpoint/ChangeLog b/app-misc/magicpoint/ChangeLog
index 32afeb593ed9..20a39724de24 100644
--- a/app-misc/magicpoint/ChangeLog
+++ b/app-misc/magicpoint/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-misc/magicpoint
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-misc/magicpoint/ChangeLog,v 1.2 2002/03/21 08:46:14 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/magicpoint/ChangeLog,v 1.3 2002/04/12 18:04:45 seemant Exp $
+
+*magicpoint-1.09a-r1 (12 Apr 2002)
+
+ 12 Apr 2002; Seemant Kulleen <seemant@gentoo.org> magicpoint-1.09a-r1.ebuild :
+
+ Removed the ungif USE flag, and added nls and imlib and truetype USE dependent
+ compilation.
*magicpoint-1.09a (21 Mar 2002)
diff --git a/app-misc/magicpoint/files/digest-magicpoint-1.07a b/app-misc/magicpoint/files/digest-magicpoint-1.07a
deleted file mode 100644
index 4ba3c7d7a2a9..000000000000
--- a/app-misc/magicpoint/files/digest-magicpoint-1.07a
+++ /dev/null
@@ -1 +0,0 @@
-MD5 11a5d1a56de56ba8a334b3f14e0f6f50 magicpoint-1.07a.tar.gz 659770
diff --git a/app-misc/magicpoint/magicpoint-1.07a.ebuild b/app-misc/magicpoint/magicpoint-1.07a.ebuild
deleted file mode 100644
index ce8de52fb8f8..000000000000
--- a/app-misc/magicpoint/magicpoint-1.07a.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author AJ Lewis <aj@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/app-misc/magicpoint/magicpoint-1.07a.ebuild,v 1.3 2001/06/17 12:51:07 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="an X11 based presentation tool"
-SRC_URI="ftp://ftp.mew.org/pub/MagicPoint/${A}"
-HOMEPAGE="http://www.mew.org/mgp/"
-
-DEPEND="virtual/glibc virtual/x11
- ungif? ( >=media-libs/libungif-4.0.1 )
- gif? ( >=media-libs/giflib-4.0.1 )"
-
-src_compile() {
-
- export LIBS="-L/usr/lib/ -L/usr/X11R6/lib/ -lX11"
- if [ "`use gif`" ] && [ "`use ungif`" ] ; then
- GIF_FLAG="--enable-gif";
- else
- GIF_FLAG="--disable-gif";
- fi
- try ./configure --with-x $GIF_FLAG
- try xmkmf
- try make Makefiles
- try make clean
- try make ${MAKEOPTS}
-}
-
-src_install() {
- try make DESTDIR=${D} install
- try make DESTDIR=${D} DOCHTMLDIR=/usr/share/doc/${P} \
- MANPATH=/usr/share/man MANSUFFIX=1 install.man
-
- dodoc COPYRIGHT* FAQ README* RELNOTES SYNTAX TODO* USAGE*
-}
-
-