blob: 7975113c996dc6531dd43a26f6c7ab703c637187 (
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
41
42
43
44
45
46
47
48
|
# Copyright 1999-2008 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=1
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="x11-libs/qt: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"
RDEPEND="${DEPEND}
app-text/ghostscript-gpl"
pkg_setup() {
if ! built_with_use 'x11-libs/cairo' 'X' 'svg'; then
eerror "You must build cairo with X and svg support"
die "x11-libs/cairo built without X and/or svg"
fi
}
src_compile() {
econf --enable-cairo || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS ChangeLog README TODO
domenu scribus.desktop
doicon scribus/icons/scribusicon.png
}
|