+++ /dev/null
-# ChangeLog for x11-wm/metisse
-# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/metisse/ChangeLog,v 1.11 2005/07/12 04:53:26 josejx Exp $
-
- 12 Jul 2005; Joseph Jezak <josejx@gentoo.org>
- +files/metisse-0.3.5-mmx-config.patch, metisse-0.3.5.ebuild:
- Added wormo's fix for mmx, see bug #98050.
-
- 23 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> metisse-0.3.5.ebuild:
- Stable on ppc.
-
- 16 Apr 2005; Mamoru KOMACHI <usata@gentoo.org>
- -files/metisse-0.3.1-FvwmGtk.1-DESTDIR.diff, -metisse-0.3.3.ebuild,
- metisse-0.3.5.ebuild:
- Stable on x86.
-
- 05 Mar 2005; Simon Stelling <blubb@gentoo.org> metisse-0.3.5.ebuild:
- won't work until somebody provides a patch for the assembler-parts, see bug
- #83473
-
-*metisse-0.3.5 (20 Feb 2005)
-
- 20 Feb 2005; Mamoru KOMACHI <usata@gentoo.org> metisse-0.3.4.ebuild,
- +metisse-0.3.5.ebuild:
- Version bumped. Changed freetype USE flag to truetype. (bug #74873)
-
-*metisse-0.3.4 (03 Dec 2004)
-
- 03 Dec 2004; Mamoru KOMACHI <usata@gentoo.org> -metisse-0.3.2.ebuild,
- +metisse-0.3.4.ebuild:
- Version bumped.
-
- 03 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> metisse-0.3.3.ebuild:
- Marked as stable.
-
-*metisse-0.3.3 (03 Sep 2004)
-
- 03 Sep 2004; Mamoru KOMACHI <usata@gentoo.org>
- -files/metisse-0.3.1-gcc-3.4.diff, -metisse-0.3.1.ebuild,
- metisse-0.3.2.ebuild, +metisse-0.3.3.ebuild:
- Version bumped; bug #62657. Marked 0.3.2 stable and removed 0.3.1.
-
- 04 Aug 2004; David Holm <dholm@gentoo.org> metisse-0.3.2.ebuild:
- Added to ~ppc.
-
-*metisse-0.3.2 (04 Aug 2004)
-
- 04 Aug 2004; Mamoru KOMACHI <usata@gentoo.org> +metisse-0.3.2.ebuild:
- Version bumped.
-
-*metisse-0.3.1 (26 Jul 2004)
-
- 26 Jul 2004; Mamoru KOMACHI <usata@gentoo.org> +metadata.xml,
- +files/metisse-0.3.1-FvwmGtk.1-DESTDIR.diff,
- +files/metisse-0.3.1-gcc-3.4.diff, +metisse-0.3.1.ebuild:
- Initial import. Thanks to Joseph Booker <joe@neoturbine.net>,
- Leander <leander256@ifrance.com>, and Bel Zebute
- <technojunky@technojunky.com>. This closed bug #55660.
-
+++ /dev/null
-MD5 349cec38fdb4f27b3b0a231d5cb2d828 ChangeLog 2044
-MD5 bd188a43cc088ca73161889614be3035 metisse-0.3.4.ebuild 1112
-MD5 e7307c1653035014c1e36a27ca8ccb45 metadata.xml 163
-MD5 072de6949a16bf1ce0d0a93bc644dbac metisse-0.3.5.ebuild 1316
-MD5 9b064fb7563ea3a27b17c5c02871eba9 files/digest-metisse-0.3.5 67
-MD5 417e224f0ecd4c48bc9f5cffdeaa7787 files/digest-metisse-0.3.4 67
-MD5 ba83f501db0ce112a985289ca34a7bb4 files/metisse-0.3.5-mmx-config.patch 2038
+++ /dev/null
-MD5 a2a3ef747da4fca36c027e0bbd858673 metisse-0.3.4.tar.bz2 4496806
+++ /dev/null
-MD5 755ec7ef77f640fa86fcd6bf6627ecd7 metisse-0.3.5.tar.bz2 4496727
+++ /dev/null
-diff -ur metisse-0.3.5-orig/configure.ac metisse-0.3.5/configure.ac
---- metisse-0.3.5-orig/configure.ac 2005-05-16 21:54:38.566053256 -0700
-+++ metisse-0.3.5/configure.ac 2005-05-15 23:44:29.137041600 -0700
-@@ -46,30 +46,34 @@
-
- AC_C_BIGENDIAN
-
-+AC_ARG_ENABLE(mmx, [ --enable-mmx compile with mmx optimizations],,enable_mmx=no)
-+
- gcc_ok_for_mmx=no
- USE_GCC34_MMX=0
-
--AC_MSG_CHECKING(if we can use gcc mmx code)
--if test "x$GCC" = "xyes"; then
-- CFLAGS="$CFLAGS -Wall" ;
--
-- gcc_major=`$CC -dumpversion | \
-- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
-- gcc_minor=`$CC -dumpversion | \
-- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
-- echo -n " gcc version $gcc_major.$gcc_minor ... "
-- gcc_min_major_for_mmx=3
-- gcc_min_minor_for_mmx=4
-- gcc_ok_for_mmx=no
-- if test $gcc_major -gt $gcc_min_major_for_mmx ; then
-- gcc_ok_for_mmx=yes
-- else
-- if test $gcc_major -eq $gcc_min_major_for_mmx ; then
-- if test $gcc_minor -gt $gcc_min_minor_for_mmx ; then
-- gcc_ok_for_mmx=yes
-- else
-- if test $gcc_minor -eq $gcc_min_minor_for_mmx ; then
-- gcc_ok_for_mmx=yes
-+if test "$enable_mmx" = yes ; then
-+ AC_MSG_CHECKING(if we can use gcc mmx code)
-+ if test "x$GCC" = "xyes"; then
-+ CFLAGS="$CFLAGS -Wall" ;
-+
-+ gcc_major=`$CC -dumpversion | \
-+ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
-+ gcc_minor=`$CC -dumpversion | \
-+ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
-+ echo -n " gcc version $gcc_major.$gcc_minor ... "
-+ gcc_min_major_for_mmx=3
-+ gcc_min_minor_for_mmx=4
-+ gcc_ok_for_mmx=no
-+ if test $gcc_major -gt $gcc_min_major_for_mmx ; then
-+ gcc_ok_for_mmx=yes
-+ else
-+ if test $gcc_major -eq $gcc_min_major_for_mmx ; then
-+ if test $gcc_minor -gt $gcc_min_minor_for_mmx ; then
-+ gcc_ok_for_mmx=yes
-+ else
-+ if test $gcc_minor -eq $gcc_min_minor_for_mmx ; then
-+ gcc_ok_for_mmx=yes
-+ fi
- fi
- fi
- fi
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>desktop-wm</herd>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/metisse/metisse-0.3.4.ebuild,v 1.2 2005/02/20 10:55:13 usata Exp $
-
-# fc is broken
-IUSE="truetype xv opengl"
-
-DESCRIPTION="Experimental X desktop with some OpenGL capacity."
-SRC_URI="http://insitu.lri.fr/~chapuis/software/metisse/${P}.tar.bz2"
-HOMEPAGE="http://insitu.lri.fr/~chapuis/metisse"
-
-DEPEND="virtual/x11
- >=x11-libs/nucleo-0.1_p20041130
- truetype? ( media-libs/freetype )"
-RDEPEND="${DEPEND}
- !x11-wm/fvwm"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ppc"
-
-src_compile() {
- local myconf
- if use opengl && use x86 ; then
- myconf="${myconf} --enable-glx-x86"
- elif use opengl ; then
- myconf="${myconf} --enable-glx --disable-glx-x86"
- else
- myconf="${myconf} --disable-glx --disable-glx-x86"
- fi
-
- econf \
- $(use_enable xv) \
- $(use_enable truetype freetype) \
- ${myconf} \
- || die "configure failed"
- emake -j1 || die "make failed"
-}
-
-src_install() {
- make DESTDIR=${D} install || die "make install failed"
- dodoc AUTHORS ChangeLog NEWS README TODO
-}
+++ /dev/null
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/metisse/metisse-0.3.5.ebuild,v 1.5 2005/07/12 04:53:26 josejx Exp $
-
-inherit eutils
-
-# fc is broken
-IUSE="truetype xv opengl mmx"
-
-DESCRIPTION="Experimental X desktop with some OpenGL capacity."
-SRC_URI="http://insitu.lri.fr/~chapuis/software/metisse/${P}.tar.bz2"
-HOMEPAGE="http://insitu.lri.fr/~chapuis/metisse"
-
-DEPEND="virtual/x11
- >=x11-libs/nucleo-0.1_p20041216
- truetype? ( media-libs/freetype )"
-RDEPEND="${DEPEND}
- !x11-wm/fvwm"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ppc -amd64"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/metisse-0.3.5-mmx-config.patch
- libtoolize --copy --force
-}
-
-src_compile() {
- local myconf
- if use opengl && use x86 ; then
- myconf="${myconf} --enable-glx-x86"
- elif use opengl ; then
- myconf="${myconf} --enable-glx --disable-glx-x86"
- else
- myconf="${myconf} --disable-glx --disable-glx-x86"
- fi
-
- if use mmx ; then
- myconf="${myconf} --enable-mmx"
- fi
-
- econf \
- $(use_enable xv) \
- $(use_enable truetype freetype) \
- ${myconf} \
- || die "configure failed"
- emake -j1 || die "make failed"
-}
-
-src_install() {
- make DESTDIR=${D} install || die "make install failed"
- dodoc AUTHORS ChangeLog NEWS README TODO
-}