diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-05-06 09:43:53 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-05-06 09:43:53 +0000 |
commit | 3cd263f97d959f268773032a899723a99a0ebc4c (patch) | |
tree | 123c02cd0396ccd8bf29b96286579ca01ddf46a1 /net-www/links | |
parent | Version bump closes bug #50102. (Manifest recommit) (diff) | |
download | gentoo-2-3cd263f97d959f268773032a899723a99a0ebc4c.tar.gz gentoo-2-3cd263f97d959f268773032a899723a99a0ebc4c.tar.bz2 gentoo-2-3cd263f97d959f268773032a899723a99a0ebc4c.zip |
version bump. Thanks to Marcin Kryczek <aye@gentoo.pl> in bug #49632
Diffstat (limited to 'net-www/links')
-rw-r--r-- | net-www/links/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/links/files/digest-links-2.1_pre15 | 1 | ||||
-rw-r--r-- | net-www/links/links-2.1_pre15.ebuild | 132 |
3 files changed, 139 insertions, 1 deletions
diff --git a/net-www/links/ChangeLog b/net-www/links/ChangeLog index 5ab893a55a62..b1332e0bc4ee 100644 --- a/net-www/links/ChangeLog +++ b/net-www/links/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-www/links # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/links/ChangeLog,v 1.41 2004/04/26 14:27:38 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/links/ChangeLog,v 1.42 2004/05/06 09:43:53 dragonheart Exp $ + +*links-2.1_pre15 (06 May 2004) + + 06 May 2004; Daniel Black <dragonheart@gentoo.org> +links-2.1_pre15.ebuild: + version bump. Thanks to Marcin Kryczek <aye@gentoo.pl> in bug #49632 26 Apr 2004; Aron Griffis <agriffis@gentoo.org> links-2.1_pre9.ebuild: Add die following econf for bug 48950 diff --git a/net-www/links/files/digest-links-2.1_pre15 b/net-www/links/files/digest-links-2.1_pre15 new file mode 100644 index 000000000000..aa85a2fe9148 --- /dev/null +++ b/net-www/links/files/digest-links-2.1_pre15 @@ -0,0 +1 @@ +MD5 d70a0ad41fba921f04d222d3546827de links-2.1pre15.tar.bz2 3789080 diff --git a/net-www/links/links-2.1_pre15.ebuild b/net-www/links/links-2.1_pre15.ebuild new file mode 100644 index 000000000000..8e07c8bff589 --- /dev/null +++ b/net-www/links/links-2.1_pre15.ebuild @@ -0,0 +1,132 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/links/links-2.1_pre15.ebuild,v 1.1 2004/05/06 09:43:53 dragonheart Exp $ + +IUSE="directfb ssl javascript png X gpm tiff fbcon svga jpeg" + +DESCRIPTION="links is a fast lightweight text tand graphic web-browser" +HOMEPAGE="http://atrey.karlin.mff.cuni.cz/~clock/twibright/links/" + +# To handle pre-version ... +MYP="${P/_/}" +S="${WORKDIR}/${MYP}" +SRC_URI="${HOMEPAGE}/download/${MYP}.tar.bz2" + +SLOT="2" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~amd64 ~ia64" + +# 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? + +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 >=media-libs/libpng-1.2.1 ) + X? ( virtual/x11 >=media-libs/libpng-1.2.1 ) + directfb? ( dev-libs/DirectFB ) + fbcon? ( >=media-libs/libpng-1.2.1 sys-libs/gpm ) + sys-libs/zlib + virtual/glibc + sys-libs/ncurses" + +DEPEND="${RDEPEND} + sys-devel/automake + sys-devel/autoconf + sys-devel/gcc + dev-util/pkgconfig" + +PROVIDE="virtual/textbrowser" + +pkg_setup (){ + + if [ ! `use gpm` ] && [ `use fbcon` ] ; then + einfo + einfo "gpm has been installed since you have included fbcon in your USE flags." + einfo "The links framebuffer driver requires gpm in order to compile." + einfo + fi + +} + +src_compile (){ + + local myconf + myconf="--program-suffix=2" + + use X \ + && myconf="${myconf} --enable-graphics --with-x" \ + || myconf="${myconf} --without-x" + + use png \ + && myconf="${myconf} --with-libpng" \ + || myconf="${myconf} --without-libpng" + + use jpeg \ + && myconf="${myconf} --with-libjpeg" \ + || myconf="${myconf} --without-libjpeg" + + use tiff \ + && myconf="${myconf} --with-libtiff" \ + || myconf="${myconf} --without-libtiff" + + use svga \ + && myconf="${myconf} --enable-graphics --with-svgalib" \ + || myconf="${myconf} --without-svgalib" + + use fbcon \ + && myconf="${myconf} --enable-graphics --with-fb" \ + || myconf="${myconf} --without-fb" + + use directfb \ + && myconf="${myconf} --enable-graphics --with-directfb" \ + || myconf="${myconf} --without-directfb" + + use ssl \ + && myconf="${myconf} --with-ssl" \ + || myconf="${myconf} --without-ssl" + + use javascript \ + && myconf="${myconf} --enable-javascript" \ + || myconf="${myconf} --disable-javascript" + + # Note: --enable-static breaks. + + # Note: ./configure only support 'gpm' features auto-detection, so if + # 'sys-libs/gpm' is compiled on your system, you'll compile links + # with gpm support ... + + econf ${myconf} || die "configure failed" + emake || die "make failed" +} + +src_install (){ + einstall + + if [ ! -f /usr/bin/links ] + then + dosym links2 /usr/bin/links + fi + + # Only install links icon if X driver was compiled in ... + use X && { insinto /usr/share/pixmaps ; doins graphics/links.xpm ; } + + dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README SITES TODO + dohtml doc/links_cal/* +} + + +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 +} |