diff options
author | Caleb Tennis <caleb@gentoo.org> | 2007-10-18 13:52:01 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2007-10-18 13:52:01 +0000 |
commit | 18c2d9979642dfb8fc7365d41653d9bd5b4198af (patch) | |
tree | 353a9601f39f546c96eb3d4dbe0fa5928585eb3c /x11-libs | |
parent | Keyworded ~x86-fbsd (diff) | |
download | gentoo-2-18c2d9979642dfb8fc7365d41653d9bd5b4198af.tar.gz gentoo-2-18c2d9979642dfb8fc7365d41653d9bd5b4198af.tar.bz2 gentoo-2-18c2d9979642dfb8fc7365d41653d9bd5b4198af.zip |
version bump
(Portage version: 2.1.3.14)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libqxt/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/libqxt/files/digest-libqxt-0.2.5 | 3 | ||||
-rw-r--r-- | x11-libs/libqxt/libqxt-0.2.5.ebuild | 38 |
3 files changed, 47 insertions, 1 deletions
diff --git a/x11-libs/libqxt/ChangeLog b/x11-libs/libqxt/ChangeLog index 8478c444fb50..c838d67d1ed1 100644 --- a/x11-libs/libqxt/ChangeLog +++ b/x11-libs/libqxt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/libqxt # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.2 2007/09/28 18:16:05 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.3 2007/10/18 13:52:00 caleb Exp $ + +*libqxt-0.2.5 (18 Oct 2007) + + 18 Oct 2007; Caleb Tennis <caleb@gentoo.org> +libqxt-0.2.5.ebuild: + version bump 28 Sep 2007; Caleb Tennis <caleb@gentoo.org> libqxt-0.2.4.ebuild: Fix use flag: openssl -> ssl diff --git a/x11-libs/libqxt/files/digest-libqxt-0.2.5 b/x11-libs/libqxt/files/digest-libqxt-0.2.5 new file mode 100644 index 000000000000..20ac014acb66 --- /dev/null +++ b/x11-libs/libqxt/files/digest-libqxt-0.2.5 @@ -0,0 +1,3 @@ +MD5 7d9e843c28b0166cf795227ec6be8ebf libqxt-0.2.5.tar.gz 715837 +RMD160 55d698d23fe98b12c17efe8c17ac6f02f9cf1031 libqxt-0.2.5.tar.gz 715837 +SHA256 ba4038691458de31282e6dd9377b39b8e466757bdfffb014e05da1f0c02dccbf libqxt-0.2.5.tar.gz 715837 diff --git a/x11-libs/libqxt/libqxt-0.2.5.ebuild b/x11-libs/libqxt/libqxt-0.2.5.ebuild new file mode 100644 index 000000000000..b3a0df88b9c9 --- /dev/null +++ b/x11-libs/libqxt/libqxt-0.2.5.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.2.5.ebuild,v 1.1 2007/10/18 13:52:00 caleb Exp $ + +inherit eutils qt4 + +DESCRIPTION="The Qt eXTension library provides cross-platform utility classes to add functionality ontop of the Qt toolkit" +HOMEPAGE="http://libqxt.org/" +SRC_URI="mirror://sourceforge/libqxt/${P}.tar.gz" + +LICENSE="CPL-1.0" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +IUSE="ssl fastcgi debug" + +DEPEND=">=x11-libs/qt-4.2 + ssl? ( >=dev-libs/openssl-0.9.8 ) + fastcgi? ( >=dev-libs/fcgi-2.4 )" +RDEPEND="${DEPEND}" + +QT4_BUILT_WITH_USE_CHECK="png ssl" + +src_compile() { + local myconf + + use debug && myconf="${myconf} -debug" + use !ssl && myconf="${myconf} -nomake crypto" + use !fastcgi && myconf="${myconf} -nomake web" + + ./configure -prefix /usr ${myconf} + + emake || die "emake failed" +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die "emake install failed" +} |