diff options
author | 2002-08-23 11:31:56 +0000 | |
---|---|---|
committer | 2002-08-23 11:31:56 +0000 | |
commit | 8c107bd2c60eca8dbaffb6b12fc82e762ceed4cb (patch) | |
tree | 85d794f31b44984a3237c11fde2e4f9313178d4c /app-misc/magicpoint | |
parent | slight fix0r to accomodate new supersed binary (diff) | |
download | gentoo-2-8c107bd2c60eca8dbaffb6b12fc82e762ceed4cb.tar.gz gentoo-2-8c107bd2c60eca8dbaffb6b12fc82e762ceed4cb.tar.bz2 gentoo-2-8c107bd2c60eca8dbaffb6b12fc82e762ceed4cb.zip |
fix0rs
Diffstat (limited to 'app-misc/magicpoint')
-rw-r--r-- | app-misc/magicpoint/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/magicpoint/magicpoint-1.09a-r1.ebuild | 35 |
2 files changed, 24 insertions, 19 deletions
diff --git a/app-misc/magicpoint/ChangeLog b/app-misc/magicpoint/ChangeLog index 20a39724de24..2a60eb10f22a 100644 --- a/app-misc/magicpoint/ChangeLog +++ b/app-misc/magicpoint/ChangeLog @@ -1,9 +1,15 @@ # 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.3 2002/04/12 18:04:45 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/magicpoint/ChangeLog,v 1.4 2002/08/23 11:31:56 seemant Exp $ *magicpoint-1.09a-r1 (12 Apr 2002) + 23 Aug 2002; Seemant Kulleen <seemant@gentoo.org> magicpoint-1.09a-r1.ebuild : + + For some silly upstream reason, --enable-freetype disables it. So, this + is removed. Thanks to: jherfurth@arafox.com (Julien Herfurth) in bug + #6856. + 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 diff --git a/app-misc/magicpoint/magicpoint-1.09a-r1.ebuild b/app-misc/magicpoint/magicpoint-1.09a-r1.ebuild index dc9045890d72..e839f725569a 100644 --- a/app-misc/magicpoint/magicpoint-1.09a-r1.ebuild +++ b/app-misc/magicpoint/magicpoint-1.09a-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-misc/magicpoint/magicpoint-1.09a-r1.ebuild,v 1.4 2002/07/26 01:52:49 kabau Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/magicpoint/magicpoint-1.09a-r1.ebuild,v 1.5 2002/08/23 11:31:56 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="an X11 based presentation tool" @@ -27,26 +27,25 @@ src_compile() { local myconf - use gif \ - && myconf="${myconf} --enable-gif" \ + use gif \ + && myconf="${myconf} --enable-gif" \ || myconf="${myconf} --disable-gif" - use imlib \ - && myconf="${myconf} --enable-imlib" \ + use imlib \ + && myconf="${myconf} --enable-imlib" \ || myconf="${myconf} --disable-imlib" - use truetype \ - && myconf="${myconf} --enable-freetype" \ + use truetype \ || myconf="${myconf} --disable-freetype" - use nls \ - && myconf="${myconf} --enable-locale" \ + use nls \ + && myconf="${myconf} --enable-locale" \ || myconf="${myconf} --disable-locale" export LIBS="-L/usr/lib/ -L/usr/X11R6/lib/ -lX11" - ./configure \ - --with-xa \ + ./configure \ + --with-xa \ ${myconf} || die xmkmf || die @@ -56,15 +55,15 @@ src_compile() { } src_install() { - make \ - DESTDIR=${D} \ + make \ + DESTDIR=${D} \ install || die - make \ - DESTDIR=${D} \ - DOCHTMLDIR=/usr/share/doc/${P} \ - MANPATH=/usr/share/man \ - MANSUFFIX=1 \ + make \ + DESTDIR=${D} \ + DOCHTMLDIR=/usr/share/doc/${P} \ + MANPATH=/usr/share/man \ + MANSUFFIX=1 \ install.man || die dodoc COPYRIGHT* FAQ README* RELNOTES SYNTAX TODO* USAGE* |