blob: 77d7e253a7211c3a1ae677f479f1ecc2fedd2178 (
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
37
38
39
40
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/scribus/scribus-1.3.4-r1.ebuild,v 1.3 2008/07/27 19:54:02 carlo Exp $
EAPI=5
inherit qt3 eutils
DESCRIPTION="Desktop Publishing (DTP) and Layout program for Linux."
HOMEPAGE="http://www.scribus.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND="dev-qt/qt-meta:3
>=media-libs/freetype-2.1
>=media-libs/lcms-1.09
media-libs/tiff
>=media-libs/libart_lgpl-2.3.8
>=sys-devel/gcc-3.0.0
>=dev-libs/libxml2-2.6.0
>=x11-libs/cairo-1.4.0[X,svg]"
RDEPEND="${DEPEND}
app-text/ghostscript-gpl"
DOCS=( AUTHORS ChangeLog README TODO )
src_configure() {
econf --enable-cairo || die
}
src_install() {
default
domenu scribus.desktop
doicon scribus/icons/scribusicon.png
}
|