blob: d3f1b92a5c031d582bbf05769b2c0b7146cdc03d (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/scribus/scribus-0.9.4.ebuild,v 1.3 2003/03/01 01:16:08 vapier Exp $
DESCRIPTION="Layout program similar to Adobe� PageMaker, QuarkXPress, or Adobe� InDesign"
HOMEPAGE="http://web2.altmuehlnet.de/fschmid/"
SRC_URI="http://web2.altmuehlnet.de/fschmid/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
IUSE="kde"
DEPEND="=x11-libs/qt-3*
media-libs/freetype
media-libs/lcms
sys-libs/zlib"
src_compile() {
econf || die
emake CXXFLAGS="${CXXFLAGS} -I/usr/include/lcms" || die
mv debian/scribus-debian.xpm debian/scribus.xpm
}
src_install() {
einstall destdir=${D} || die
dodoc AUTHORS ChangeLog README TODO
# Fixing desktop.scribus
if [ `use kde` ] ; then
inherit kde-functions
set-kdedir 3
sed -e 's/local\///' desktop.scribus > desktop.scribus.2
echo "Name=Scribus" >> desktop.scribus.2
cp -f desktop.scribus.2 scribus.desktop
insinto ${PREFIX}/share/applnk/Graphics
doins scribus.desktop
fi
# Copy the pixmaps to the generic place
insinto /usr/share/pixmaps/
doins debian/scribus.xpm
dosym /usr/share/scribus/doc /usr/share/doc/${PF}/html
}
|