blob: 24d402dde64837f628b8a643dd78371d4c8de827 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/nvu/nvu-0.50.ebuild,v 1.7 2004/10/23 01:38:03 blubb Exp $
inherit eutils mozilla flag-o-matic
DESCRIPTION="A WYSIWG web editor for linux similiar to Dreamweaver"
HOMEPAGE="http://www.nvu.com/"
SRC_URI="http://cvs.nvu.com/download/${P}-sources.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
IUSE=""
DEPEND="sys-apps/gawk
dev-lang/perl
app-doc/doxygen"
S=${WORKDIR}/mozilla
src_compile() {
# I had to manually edit the mozconfig.linux file as it
# has some quirks... just copy the darn thing over :) - Chris
cp ${FILESDIR}/mozconfig ${S}/.mozconfig
# Fix those darn directories! Make something more "standard"
# That can extend to future versions with much more ease. - Chris
epatch ${FILESDIR}/${P}-dir.patch
# The build system is a weeee bit sensitive to naughty -O flags.
# filter them out and let the build system figure out what
# won't let it die :) - Chris
filter-flags '-O*'
make -f client.mk build_all
}
src_install() {
# patch the final nvu binary to workaround bug #67658
epatch ${FILESDIR}/${P}-nvu.patch
make -f client.mk DESTDIR=${D} install || die
#menu entry for gnome/kde
insinto /usr/share/applications
doins ${FILESDIR}/nvu.desktop
}
|