diff options
author | 2014-06-23 07:43:49 +0000 | |
---|---|---|
committer | 2014-06-23 07:43:49 +0000 | |
commit | 236816ab139d9c6cfaf077c2a70e11a9bf1e7051 (patch) | |
tree | 87a4e8d3960d6840028a120db692a7c953ba1291 /x11-misc | |
parent | Enable multilib support, required for dev-qt/qtsql. Remove obsolete dependenc... (diff) | |
download | gentoo-2-236816ab139d9c6cfaf077c2a70e11a9bf1e7051.tar.gz gentoo-2-236816ab139d9c6cfaf077c2a70e11a9bf1e7051.tar.bz2 gentoo-2-236816ab139d9c6cfaf077c2a70e11a9bf1e7051.zip |
Version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/andromeda/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/andromeda/andromeda-0.3.ebuild | 38 |
2 files changed, 45 insertions, 2 deletions
diff --git a/x11-misc/andromeda/ChangeLog b/x11-misc/andromeda/ChangeLog index 3a24ba1075bf..ca053005a1a0 100644 --- a/x11-misc/andromeda/ChangeLog +++ b/x11-misc/andromeda/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/andromeda -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/andromeda/ChangeLog,v 1.4 2013/03/02 23:47:01 hwoarang Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/andromeda/ChangeLog,v 1.5 2014/06/23 07:43:49 kensington Exp $ + +*andromeda-0.3 (23 Jun 2014) + + 23 Jun 2014; Michael Palimaka <kensington@gentoo.org> +andromeda-0.3.ebuild: + Version bump. 02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> andromeda-0.2.1.ebuild: Move Qt dependencies to the new category diff --git a/x11-misc/andromeda/andromeda-0.3.ebuild b/x11-misc/andromeda/andromeda-0.3.ebuild new file mode 100644 index 000000000000..cd4f0ae1b3c6 --- /dev/null +++ b/x11-misc/andromeda/andromeda-0.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/andromeda/andromeda-0.3.ebuild,v 1.1 2014/06/23 07:43:49 kensington Exp $ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="Qt4-based filemanager" +HOMEPAGE="https://gitorious.org/andromeda/pages/Home" +SRC_URI="https://gitorious.org/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64" +IUSE="pdf" + +RDEPEND=">=dev-qt/qtcore-4.8.0:4 + >=dev-qt/qtdbus-4.8.0:4 + >=dev-qt/qtgui-4.8.0:4 + >=dev-qt/qtopengl-4.8.0:4 + >=dev-qt/qtwebkit-4.8.0:4 + pdf? ( app-text/poppler )" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${PN}-${PN} + +DOCS="TODO.txt dist/changes-*" + +src_configure() { + # avoid building manual-only tests + local mycmakeargs=( + -DDISABLE_TESTS=true + $(cmake-utils_use_find_package pdf PopplerQt4) + ) + + cmake-utils_src_configure +} |