blob: 201e13c233df7aca783f7812854bd03b7832965a (
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
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/bluefish/bluefish-0.12.ebuild,v 1.9 2004/10/05 12:19:43 pvdabeel Exp $
IUSE="nls spell"
DESCRIPTION="A GTK HTML editor for the experienced web designer or programmer."
SRC_URI="http://pkedu.fbt.eitn.wau.nl/~olivier/downloads/${P}.tar.bz2"
HOMEPAGE="http://bluefish.openoffice.nl/"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc ~amd64 alpha ia64 ppc64"
SLOT="0"
RDEPEND=">=x11-libs/gtk+-2
dev-libs/libpcre
spell? ( app-text/aspell )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
src_compile() {
# Fix for icon location (bug #31770)
sed -i -e 's:ICONDIR/::g' data/bluefish.desktop.in
local myconf
myconf=""
# --enable-auto-optimization let bluefish determine optimization
# --disable-splash-screen disables the splash screen
use nls || myconf="${myconf} --disable-nls"
econf ${myconf} || die "configure failed"
emake || die "make failed"
}
src_install() {
dodir /usr/bin
dodir /usr/share/pixmaps
dodir /usr/share/applications
dodir /usr/share/gnome/apps
einstall \
datadir=${D}/usr/share \
pkgdatadir=${D}/usr/share/bluefish \
pixmapsdir=${D}/usr/share/pixmaps \
iconpath=${D}/usr/share/pixmaps \
gnome2menupath=${D}/usr/share/applications \
gnome1menupath=${D}/usr/share/gnome/apps \
|| die "make install failed"
#fix to remove unneeded path
sed -e "s:${D}::" ${D}/usr/share/applications/bluefish.desktop \
> ${S}/tmp.desktop
mv ${S}/tmp.desktop ${D}/usr/share/applications/bluefish.desktop
cp ${D}/usr/share/applications/bluefish.desktop \
${D}/usr/share/gnome/apps/Applications/
}
|