diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-07-15 14:26:56 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-07-15 14:26:56 +0000 |
commit | b556b03b960257416802afecb2e9257ed36cebf2 (patch) | |
tree | f0ad3823b236bbdb1784dce88459cc1b0c966637 /dev-libs | |
parent | Set USE=graph dependency on net-analyzer/rrdtool (bug #509682). (diff) | |
download | gentoo-2-b556b03b960257416802afecb2e9257ed36cebf2.tar.gz gentoo-2-b556b03b960257416802afecb2e9257ed36cebf2.tar.bz2 gentoo-2-b556b03b960257416802afecb2e9257ed36cebf2.zip |
dev-libs/quazip: Version Bump, #516962
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/quazip/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/quazip/quazip-0.6.2.ebuild | 50 |
2 files changed, 57 insertions, 2 deletions
diff --git a/dev-libs/quazip/ChangeLog b/dev-libs/quazip/ChangeLog index 7e05d2c204d3..5bde203d84ba 100644 --- a/dev-libs/quazip/ChangeLog +++ b/dev-libs/quazip/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/quazip -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/quazip/ChangeLog,v 1.36 2013/08/19 12:57:28 jlec Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/quazip/ChangeLog,v 1.37 2014/07/15 14:26:56 jlec Exp $ + +*quazip-0.6.2 (15 Jul 2014) + + 15 Jul 2014; Justin Lecher <jlec@gentoo.org> +quazip-0.6.2.ebuild: + Version Bump, #516962 19 Aug 2013; Justin Lecher <jlec@gentoo.org> -quazip-0.4.4.ebuild, -quazip-0.5.ebuild: diff --git a/dev-libs/quazip/quazip-0.6.2.ebuild b/dev-libs/quazip/quazip-0.6.2.ebuild new file mode 100644 index 000000000000..5d82b0e03ffa --- /dev/null +++ b/dev-libs/quazip/quazip-0.6.2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/quazip/quazip-0.6.2.ebuild,v 1.1 2014/07/15 14:26:56 jlec Exp $ + +EAPI=5 + +inherit multilib qt4-r2 + +DESCRIPTION="A simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package" +HOMEPAGE="http://quazip.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + sys-libs/zlib[minizip] + dev-qt/qtcore:4" +DEPEND="${RDEPEND} + test? ( dev-qt/qttest:4 )" + +S="${WORKDIR}"/${P} + +DOCS="NEWS.txt README.txt" +HTML_DOCS=( doc/html/. ) + +PATCHES=( + "${FILESDIR}"/${PN}-0.5.1-prll.patch +) + +src_prepare() { + sed \ + -e "s:\/lib$:\/$(get_libdir):g" \ + -i ${PN}/${PN}.pro || die + use test || sed -e 's:qztest::g' -i ${PN}.pro || die + qt4-r2_src_prepare +} + +src_test() { + cd qztest || die + LD_LIBRARY_PATH="${S}"/${PN} ./qztest || die +} + +src_install() { + insinto /usr/share/cmake/Modules + doins FindQuaZip.cmake + qt4-r2_src_install +} |