diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2010-01-03 17:48:37 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2010-01-03 17:48:37 +0000 |
commit | 19c1526a9b4e7ef7cf7582e32cb6b3e2658b05c9 (patch) | |
tree | 31e3ec99f8956c57e922f6e10dc5f66bbb40e7be /x11-libs/xforms | |
parent | Make dev-util/mercurial install hgeditor script (bug 297635). (diff) | |
download | gentoo-2-19c1526a9b4e7ef7cf7582e32cb6b3e2658b05c9.tar.gz gentoo-2-19c1526a9b4e7ef7cf7582e32cb6b3e2658b05c9.tar.bz2 gentoo-2-19c1526a9b4e7ef7cf7582e32cb6b3e2658b05c9.zip |
Version bump to 1.0.92 , patch thanks to Justin Lecher <jlec@j-schmitz.net> bug #299408
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'x11-libs/xforms')
-rw-r--r-- | x11-libs/xforms/ChangeLog | 10 | ||||
-rw-r--r-- | x11-libs/xforms/xforms-1.0.92.ebuild | 43 |
2 files changed, 51 insertions, 2 deletions
diff --git a/x11-libs/xforms/ChangeLog b/x11-libs/xforms/ChangeLog index a9b1de2f5700..5d3d734ab1be 100644 --- a/x11-libs/xforms/ChangeLog +++ b/x11-libs/xforms/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-libs/xforms -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/ChangeLog,v 1.42 2008/07/05 10:20:07 loki_val Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/ChangeLog,v 1.43 2010/01/03 17:48:37 vostorga Exp $ + +*xforms-1.0.92 (03 Jan 2010) + + 03 Jan 2010; Víctor Ostorga <vostorga@gentoo.org> +xforms-1.0.92.ebuild: + Version bump to 1.0.92 , patch thanks to Justin Lecher + <jlec@j-schmitz.net> bug #299408 05 Jul 2008; Peter Alfredsen <loki_val@gentoo.org> xforms-1.0.90-r1.ebuild: diff --git a/x11-libs/xforms/xforms-1.0.92.ebuild b/x11-libs/xforms/xforms-1.0.92.ebuild new file mode 100644 index 000000000000..673ae0a2d30a --- /dev/null +++ b/x11-libs/xforms/xforms-1.0.92.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xforms/xforms-1.0.92.ebuild,v 1.1 2010/01/03 17:48:37 vostorga Exp $ + +EAPI="2" + +inherit autotools + +DESCRIPTION="A graphical user interface toolkit for X" +HOMEPAGE="http://www.nongnu.org/xforms/" +SRC_URI="http://savannah.nongnu.org/download/xforms/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="doc opengl" + +RDEPEND=" + media-libs/jpeg + x11-libs/libX11 + x11-libs/libXpm + x11-libs/libSM + x11-proto/xproto + opengl? ( virtual/opengl )" +DEPEND="${RDEPEND}" + +src_prepare() { + rm "${S}"/config/libtool.m4 "${S}"/acinclude.m4 + AT_M4DIR=config eautoreconf +} + +src_configure() { + local myopts + use opengl || myopts="--disable-gl" + use doc && myopts="${myopts} --enable-docs" + + econf ${myopts} || die "econf failed" +} + +src_install () { + emake DESTDIR="${D}" install || die + dodoc ChangeLog NEWS README +} |