summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Bickel <mabi@gentoo.org>2007-03-26 12:52:27 +0000
committerMatti Bickel <mabi@gentoo.org>2007-03-26 12:52:27 +0000
commitcfe7068a2caf1652a25bc8f629612679ff81ab7c (patch)
tree60fc5d82c87cb0a3b13b9463e8ea2a7139fc05a9 /x11-libs/fox
parentAdd ~ia64 wrt bug 170650 (diff)
downloadgentoo-2-cfe7068a2caf1652a25bc8f629612679ff81ab7c.tar.gz
gentoo-2-cfe7068a2caf1652a25bc8f629612679ff81ab7c.tar.bz2
gentoo-2-cfe7068a2caf1652a25bc8f629612679ff81ab7c.zip
cleanup (bug #168328)
(Portage version: 2.1.2.2)
Diffstat (limited to 'x11-libs/fox')
-rw-r--r--x11-libs/fox/ChangeLog5
-rw-r--r--x11-libs/fox/files/digest-fox-1.2.6-r23
-rw-r--r--x11-libs/fox/fox-1.2.6-r2.ebuild49
3 files changed, 4 insertions, 53 deletions
diff --git a/x11-libs/fox/ChangeLog b/x11-libs/fox/ChangeLog
index a714512bcfb7..3de0fdb5d409 100644
--- a/x11-libs/fox/ChangeLog
+++ b/x11-libs/fox/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/fox
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/fox/ChangeLog,v 1.83 2007/03/26 12:20:43 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/fox/ChangeLog,v 1.84 2007/03/26 12:52:27 mabi Exp $
+
+ 26 Mar 2007; Matti Bickel <mabi@gentoo.org> -fox-1.2.6-r2.ebuild:
+ cleanup (bug #168328)
26 Mar 2007; Raúl Porcel <armin76@gentoo.org> fox-1.4.34-r1.ebuild,
fox-1.6.19.ebuild:
diff --git a/x11-libs/fox/files/digest-fox-1.2.6-r2 b/x11-libs/fox/files/digest-fox-1.2.6-r2
deleted file mode 100644
index 53bc6768c9c5..000000000000
--- a/x11-libs/fox/files/digest-fox-1.2.6-r2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 a178e70c8ec1422ead2216f6406d3679 fox-1.2.6.tar.gz 3770911
-RMD160 a9bc273f416937114fffcbfcbb7a534103bf1e60 fox-1.2.6.tar.gz 3770911
-SHA256 ac0753937bef12f5fa286f45a100ddcb2b6cc12b108ca133a80b50c8fe6825bb fox-1.2.6.tar.gz 3770911
diff --git a/x11-libs/fox/fox-1.2.6-r2.ebuild b/x11-libs/fox/fox-1.2.6-r2.ebuild
deleted file mode 100644
index 0996110caf20..000000000000
--- a/x11-libs/fox/fox-1.2.6-r2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/fox/fox-1.2.6-r2.ebuild,v 1.12 2005/08/23 21:19:17 agriffis Exp $
-
-IUSE="cups debug truetype opengl"
-DESCRIPTION="C++ based Toolkit for developing Graphical User Interfaces easily and effectively"
-SRC_URI="http://www.fox-toolkit.org/ftp/${P}.tar.gz"
-HOMEPAGE="http://www.fox-toolkit.org"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
-LICENSE="GPL-2"
-
-DEPEND="virtual/libc
- virtual/x11
- truetype? ( >=media-libs/freetype-2.1.5-r1 )
- opengl? ( virtual/opengl )"
-
-
-src_compile() {
- local myconf
-
- use opengl || myconf="$myconf --with-opengl=no" #default enabled
- myconf="$myconf `use_enable cups`" #default disabled
- myconf="$myconf `use_enable debug`" #default disabled
- use truetype && myconf="$myconf --with-xft" #default disabled
-
- # Following line closes #61694
- CPPFLAGS="$CPPFLAGS -I/usr/include/freetype2" \
- ./configure \
- --prefix=/usr \
- --mandir='${prefix}'/share/man \
- --host=${CHOST} \
- ${myconf} || die "Configuration Failed"
-
- emake || die "Parallel Make Failed"
-}
-
-src_install () {
-
- make prefix=${D}/usr/ \
- install || die "Installation Failed"
-
- dodoc README INSTALL LICENSE ADDITIONS AUTHORS TRACING
-
- dodir /usr/share/doc/${PF}/html
- mv ${D}/usr/fox/html/* ${D}/usr/share/doc/${PF}/html/
- rmdir ${D}/usr/fox/html
- rmdir ${D}/usr/fox
-}