blob: 7fd286369a0a3c6a7aed43db324b1f8d784b53fb (
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1_pre20.ebuild,v 1.2 2005/12/11 18:05:15 cardoe Exp $
inherit eutils toolchain-funcs
DESCRIPTION="links is a fast lightweight text and graphic web-browser"
HOMEPAGE="http://links.twibright.com/"
# To handle pre-version ...
MY_P="${P/_/}"
S="${WORKDIR}/${MY_P}"
SRC_URI="http://links.twibright.com/download/${MY_P}.tar.bz2
mirror://gentoo/${PN}-2.1pre20-utf8.diff.bz2
http://dev.gentoo.org/~vanquirius/files/${PN}-2.1pre20-utf8.diff.bz2"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="directfb fbcon gpm javascript jpeg livecd png sdl ssl svga tiff unicode X"
# Note: if X or fbcon usegflag are enabled, links will be built in graphic
# mode. libpng is required to compile links in graphic mode
# (not required in text mode), so let's add libpng for X? and fbcon?
# We've also made USE=livecd compile in graphics mode. This closes bug #75685.
RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6c )
gpm? ( sys-libs/gpm )
javascript? ( >=sys-devel/flex-2.5.4a )
png? ( >=media-libs/libpng-1.2.1 )
jpeg? ( >=media-libs/jpeg-6b )
tiff? ( >=media-libs/tiff-3.5.7 )
svga? ( >=media-libs/svgalib-1.4.3 )
X? ( || ( ( x11-libs/libX11
x11-libs/libXext )
virtual/x11 ) )
directfb? ( dev-libs/DirectFB )
sdl? ( >=media-libs/libsdl-1.2.0 )
sys-libs/zlib
virtual/libc
sys-libs/ncurses"
DEPEND="${RDEPEND}
X? ( || ( x11-proto/xproto virtual/x11 ) )
sys-devel/automake
sys-devel/autoconf
sys-devel/gcc
dev-util/pkgconfig"
PROVIDE="virtual/textbrowser"
pkg_setup (){
if use fbcon && ( ! use png || ! use gpm ); then
eerror "You have set the fbcon USE flag. You must also set the png & gpm USE flags"
eerror "to be able to use fbcon."
die "fbcon set without png & gpm set"
fi
if use X && ! use png; then
eerror "You have set the X USE flag, you must also set the png USE flag"
die "X set without png"
fi
if use svga && ! use png; then
eerror "You have set the svga USE flag, you must also set the png USE flag"
die "svga set without png"
fi
}
src_unpack (){
unpack ${A}; cd "${S}"
if use unicode ; then
epatch "${WORKDIR}/${PN}-2.1pre20-utf8.diff"
export LANG=C
cd "${S}/intl" && ./gen-intl && cd .. || die "gen-intl filed"
fi
}
src_compile (){
local myconf
if use X || use fbcon || use directfb || use svga || use livecd; then
myconf="${myconf} --enable-graphics"
fi
# Note: --enable-static breaks.
# Note: ./configure only support 'gpm' features auto-detection, so
# we use the autoconf trick
( use gpm || use fbcon || use livecd ) || export ac_cv_lib_gpm_Gpm_Open="no"
export LANG=C
if use fbcon || use livecd; then
myconf="${myconf} --with-fb"
else
myconf="${myconf} --without-fb"
fi
# force --with-libjpeg if livecd flag is set
if use livecd; then
myconf="${myconf} --with-libjpeg"
fi
# hack to allow cross-compilation
export CC="$(tc-getCC)"
econf \
$(use_with X x) \
$(use_with png libpng) \
$(use_with jpeg libjpeg) \
$(use_with tiff libtiff) \
$(use_with svga svgalib) \
$(use_with directfb) \
$(use_with ssl) \
$(use_with sdl) \
$(use_enable javascript) \
${myconf} || die "configure failed"
emake || die "make failed"
}
src_install (){
einstall
# Only install links icon if X driver was compiled in ...
use X && doicon graphics/links.xpm
dodoc AUTHORS BUGS ChangeLog NEWS README SITES TODO
dohtml doc/links_cal/*
# Install a compatibility symlink links2:
dosym links /usr/bin/links2
}
pkg_postinst() {
if use svga
then
einfo "You had the svga USE flag enabled, but for security reasons"
einfo "the links2 binary is NOT setuid by default. In order to"
einfo "enable links2 to work in SVGA, please change the permissions"
einfo "of /usr/bin/links2 to enable suid."
fi
}
|