diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-02-11 15:43:51 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-02-11 15:43:51 +0000 |
commit | 35cf022745a0114d6dd308b1376309e24aa47ad7 (patch) | |
tree | ca5b49f35dd640970f4b35d30a2db9b8149b8f02 /www-client/links | |
parent | Version bump. (diff) | |
download | gentoo-2-35cf022745a0114d6dd308b1376309e24aa47ad7.tar.gz gentoo-2-35cf022745a0114d6dd308b1376309e24aa47ad7.tar.bz2 gentoo-2-35cf022745a0114d6dd308b1376309e24aa47ad7.zip |
Convert export to ac_cv_lib_gpm_Gpm_Open usex from eutils.eclass and USE_REQUIRED for gpm in USE fbcon and livecd.
(Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
Diffstat (limited to 'www-client/links')
-rw-r--r-- | www-client/links/ChangeLog | 6 | ||||
-rw-r--r-- | www-client/links/links-2.5.ebuild | 22 |
2 files changed, 14 insertions, 14 deletions
diff --git a/www-client/links/ChangeLog b/www-client/links/ChangeLog index be348fedc278..7e01b26ebe47 100644 --- a/www-client/links/ChangeLog +++ b/www-client/links/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-client/links # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.155 2012/02/11 15:33:48 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.156 2012/02/11 15:43:51 ssuominen Exp $ + + 11 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> links-2.5.ebuild: + Convert export to ac_cv_lib_gpm_Gpm_Open usex from eutils.eclass and + USE_REQUIRED for gpm in USE fbcon and livecd. 11 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> -links-2.3_pre1-r1.ebuild, -files/links-2.3_pre1-libpng-1.5.patch, diff --git a/www-client/links/links-2.5.ebuild b/www-client/links/links-2.5.ebuild index 1395538f9ea7..1741c705b185 100644 --- a/www-client/links/links-2.5.ebuild +++ b/www-client/links/links-2.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.5.ebuild,v 1.4 2012/01/08 11:47:19 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.5.ebuild,v 1.5 2012/02/11 15:43:51 ssuominen Exp $ EAPI=4 inherit autotools eutils fdo-mime @@ -21,19 +21,14 @@ IUSE="bzip2 directfb fbcon gpm jpeg livecd lzma ssl suid svga tiff unicode X zli # We've also made USE=livecd compile in graphics mode. This closes bug #75685. PNG_DEPEND=">=media-libs/libpng-1.2:0" + RDEPEND=">=sys-libs/ncurses-5.7-r7 bzip2? ( app-arch/bzip2 ) directfb? ( dev-libs/DirectFB ) - fbcon? ( - ${PNG_DEPEND} - sys-libs/gpm - ) + fbcon? ( ${PNG_DEPEND} ) gpm? ( sys-libs/gpm ) jpeg? ( virtual/jpeg ) - livecd? ( - ${PNG_DEPEND} - sys-libs/gpm - ) + livecd? ( ${PNG_DEPEND} ) lzma? ( app-arch/xz-utils ) ssl? ( dev-libs/openssl:0 ) svga? ( @@ -46,11 +41,12 @@ RDEPEND=">=sys-libs/ncurses-5.7-r7 x11-libs/libXext ) zlib? ( sys-libs/zlib )" + DEPEND="${RDEPEND} dev-util/pkgconfig" -REQUIRED_USE="fbcon? ( jpeg ) - livecd? ( jpeg ) +REQUIRED_USE="fbcon? ( jpeg gpm ) + livecd? ( jpeg gpm ) svga? ( suid )" DOCS=( AUTHORS BRAILLE_HOWTO BUGS ChangeLog KEYS NEWS README SITES TODO ) @@ -74,14 +70,14 @@ src_prepare() { } src_configure() { + export ac_cv_lib_gpm_Gpm_Open=$(usex gpm) + local myconf if use X || use fbcon || use directfb || use svga || use livecd; then myconf="${myconf} --enable-graphics" fi - ( use gpm || use fbcon || use livecd ) || export ac_cv_lib_gpm_Gpm_Open=no - if use fbcon || use livecd; then myconf="${myconf} --with-fb" else |