blob: efc5aa4d7a9db9859d3335143d7901db5f0ff4b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/qcomicbook/qcomicbook-0.8.2.ebuild,v 1.5 2013/03/02 23:51:19 hwoarang Exp $
EAPI=4
CMAKE_IN_SOURCE_BUILD=1
inherit cmake-utils flag-o-matic
DESCRIPTION="A viewer for comic book archives containing jpeg/png images."
HOMEPAGE="http://qcomicbook.org/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="debug"
DEPEND="dev-qt/qtgui:4
app-text/poppler[qt4]"
RDEPEND="${DEPEND}"
DOCS="AUTHORS ChangeLog NEWS README THANKS TODO"
src_configure() {
use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT
cmake-utils_src_configure
}
pkg_postinst() {
elog "For using QComicBook with compressed archives you may want to install:"
elog " app-arch/p7zip"
elog " app-arch/unace"
elog " app-arch/unrar or app-arch/rar"
elog " app-arch/unzip"
}
|