diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2005-05-07 19:37:06 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2005-05-07 19:37:06 +0000 |
commit | fb4bce72111a8d366cff1d62d6dc3a2ad7f8f90b (patch) | |
tree | 21ced15bf8ccc62b047812dfc2c85471060db10f /x11-libs/fox/fox-1.0.53.ebuild | |
parent | Added to ~ppc (diff) | |
download | historical-fb4bce72111a8d366cff1d62d6dc3a2ad7f8f90b.tar.gz historical-fb4bce72111a8d366cff1d62d6dc3a2ad7f8f90b.tar.bz2 historical-fb4bce72111a8d366cff1d62d6dc3a2ad7f8f90b.zip |
Added Yaakov Selkowitz's eclass based fox ebuilds for testing.
Fixes #88924
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'x11-libs/fox/fox-1.0.53.ebuild')
-rw-r--r-- | x11-libs/fox/fox-1.0.53.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/x11-libs/fox/fox-1.0.53.ebuild b/x11-libs/fox/fox-1.0.53.ebuild new file mode 100644 index 000000000000..668f501b868e --- /dev/null +++ b/x11-libs/fox/fox-1.0.53.ebuild @@ -0,0 +1,29 @@ +# 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.0.53.ebuild,v 1.1 2005/05/07 19:37:06 rphillips Exp $ + +inherit fox + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~alpha ~hppa ~ia64 ~ppc ~ppc64 ~sparc" +IUSE="cups jpeg opengl png tiff zlib" + +RDEPEND="virtual/x11 + cups? ( net-print/cups ) + jpeg? ( >=media-libs/jpeg-6b ) + opengl? ( virtual/opengl ) + png? ( >=media-libs/libpng-1.2.5 ) + tiff? ( >=media-libs/tiff-3.5.7 ) + zlib? ( >=sys-libs/zlib-1.1.4 )" + +FOXCONF="$(use_enable cups) \ + $(use_enable jpeg) \ + $(use_enable png) \ + $(use_enable tiff) \ + $(use_enable zlib)" + +# fox-1.0 incorrectly detects mesa on xorg-x11-6.8.2 +use opengl \ + && FOXCONF="${FOXCONF} --with-opengl=opengl" \ + || FOXCONF="${FOXCONF} --without-opengl" |