blob: b1bce5fb343029dd37863300237118211848ef7d (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/nvu/nvu-1.0-r4.ebuild,v 1.10 2007/03/02 09:22:52 armin76 Exp $
inherit eutils mozconfig flag-o-matic multilib
DESCRIPTION="A WYSIWYG 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="amd64 ppc sparc x86"
IUSE=""
DEPEND="x11-proto/printproto
sys-apps/gawk
dev-lang/perl
>=media-libs/freetype-2.1.9-r1"
S=${WORKDIR}/mozilla
src_unpack() {
unpack ${A}
cd ${S}
# Fix those darn directories! Make something more "standard"
# That can extend to future versions with much more ease. - Chris
epatch ${FILESDIR}/1.0/nvu-0.50-dir.patch || die "failed to apply dir. patch"
epatch ${FILESDIR}/1.0/nvu-0.50-freetype-compile.patch || die "failed to patch for freetype"
epatch ${FILESDIR}/1.0/mozilla-rpath-3.patch || die "failed to apply rpath patch"
epatch ${FILESDIR}/1.0/${P}-gcc4-1.patch || die "failed to apply gcc-4 patch"
epatch "${FILESDIR}/010_glibc-2.4.patch" || die "failed to apply glibc-2.4 patch"
epatch ${FILESDIR}/1.0/mozilla-1.7.13-as-needed.patch || die "failed to apply as-needed patch"
# >freetype-2.1* compile patch #166401
if has_version '>=media-libs/freetype-2.2'; then
epatch "${FILESDIR}/1.0/${P}-const.patch"
fi
# 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
# remove --enable-optimize and let the code below
# add the appropriate one - basic
# Also set mozilla-five-home (and libdir) below - herbs
grep -v 'enable-optimize\|mozilla-five-home' \
${FILESDIR}/1.0/mozconfig-1.0 > .mozconfig
# Set the lib directory
echo "ac_add_options --libdir=/usr/$(get_libdir)" >> .mozconfig
echo "ac_add_options --with-default-mozilla-five-home=/usr/$(get_libdir)/nvu" >> .mozconfig
# copied from mozilla.eclass (modified slightly),
# otherwise it defaults to -O which crashes on startup for me - basic
# Set optimization level based on CFLAGS
if is-flag -O0; then
echo 'ac_add_options --enable-optimize=-O0' >> .mozconfig
elif is-flag -O1; then
echo 'ac_add_options --enable-optimize=-O1' >> .mozconfig
else
# mozilla fallback
echo 'ac_add_options --enable-optimize=-O2' >> .mozconfig
fi
}
src_compile() {
# 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*'
# epatch ${FILESDIR}/nvu-0.80-mozconfig.patch
make -f client.mk build_all || die "Make failed"
}
src_install() {
# patch the final nvu binary to workaround bug #67658
epatch ${FILESDIR}/1.0/nvu-0.50-nvu.patch
make -f client.mk DESTDIR=${D} install || die
#menu entry for gnome/kde
insinto /usr/share/applications
sed -e "s:/usr/lib/nvu:/usr/$(get_libdir)/nvu:" \
${FILESDIR}/1.0/nvu.desktop > ${T}/nvu.desktop
doins ${T}/nvu.desktop
}
pkg_postinst() {
elog "If you choose to setup the webbrowser feature to execute urls"
elog "under the HELP section please refer to"
elog "http://www.nvu.com/Building_From_Source.php#tipsandhints ."
elog "Make sure you follow the instructions to the letter if you have"
elog "any problems email me at anarchy@gentoo.org I will be more then"
elog "happy to assist you. DO NOT file a bug report on this issue."
}
|