diff options
author | Alexis Ballier <aballier@gentoo.org> | 2014-12-19 08:44:08 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2014-12-19 08:44:08 +0000 |
commit | 254a20e796cfc8447d23f29e3f92a571117bcb51 (patch) | |
tree | 8903f6b780ed1e2727ac25317eaaf60bd76babfe /dev-ml/labltk | |
parent | revbump; drop py2.6 add pypy, fixes bug #529842 (diff) | |
download | gentoo-2-254a20e796cfc8447d23f29e3f92a571117bcb51.tar.gz gentoo-2-254a20e796cfc8447d23f29e3f92a571117bcb51.tar.bz2 gentoo-2-254a20e796cfc8447d23f29e3f92a571117bcb51.zip |
Add X useflag, should fix bug #532476
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'dev-ml/labltk')
-rw-r--r-- | dev-ml/labltk/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ml/labltk/labltk-8.06.0.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/dev-ml/labltk/ChangeLog b/dev-ml/labltk/ChangeLog index 99b4f0f86177..ec362896b88c 100644 --- a/dev-ml/labltk/ChangeLog +++ b/dev-ml/labltk/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/labltk # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/labltk/ChangeLog,v 1.4 2014/12/15 16:23:13 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/labltk/ChangeLog,v 1.5 2014/12/19 08:44:08 aballier Exp $ + + 19 Dec 2014; Alexis Ballier <aballier@gentoo.org> labltk-8.06.0.ebuild: + Add X useflag, should fix bug #532476 15 Dec 2014; Alexis Ballier <aballier@gentoo.org> labltk-8.06.0.ebuild: run configure with --verbose, it is not much more verbose but at least tells diff --git a/dev-ml/labltk/labltk-8.06.0.ebuild b/dev-ml/labltk/labltk-8.06.0.ebuild index 71543a7f31c1..1bffe875774f 100644 --- a/dev-ml/labltk/labltk-8.06.0.ebuild +++ b/dev-ml/labltk/labltk-8.06.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/labltk/labltk-8.06.0.ebuild,v 1.4 2014/12/15 16:23:13 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/labltk/labltk-8.06.0.ebuild,v 1.5 2014/12/19 08:44:08 aballier Exp $ EAPI=5 @@ -13,10 +13,10 @@ SRC_URI="https://forge.ocamlcore.org/frs/download.php/1455/${P}.tar.gz" LICENSE="QPL-1.0 LGPL-2" SLOT="0/${PV}" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-fbsd ~x86-linux" -IUSE="+ocamlopt" +IUSE="+ocamlopt X" RDEPEND=">=dev-lang/tk-8.0.3 - >=dev-lang/ocaml-4.02:=[ocamlopt?]" + >=dev-lang/ocaml-4.02:=[ocamlopt?,X?]" DEPEND="${RDEPEND} >=dev-ml/findlib-1.5.5-r1" @@ -25,7 +25,7 @@ src_prepare() { } src_configure() { - ./configure --use-findlib --verbose || die "configure failed!" + ./configure --use-findlib --verbose $(use X || echo "--tk-no-x11") || die "configure failed!" } src_compile() { |