public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-client/links: ChangeLog links-2.1.ebuild
@ 2008-07-14  2:26 Marcelo Goes (vanquirius)
  0 siblings, 0 replies; 7+ messages in thread
From: Marcelo Goes (vanquirius) @ 2008-07-14  2:26 UTC (permalink / raw
  To: gentoo-commits

vanquirius    08/07/14 02:26:43

  Modified:             ChangeLog
  Added:                links-2.1.ebuild
  Log:
  2.1 version bump.
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.106                www-client/links/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	15 May 2008 00:50:51 -0000	1.105
+++ ChangeLog	14 Jul 2008 02:26:43 -0000	1.106
@@ -1,6 +1,11 @@
 # ChangeLog for www-client/links
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.105 2008/05/15 00:50:51 vanquirius Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.106 2008/07/14 02:26:43 vanquirius Exp $
+
+*links-2.1 (14 Jul 2008)
+
+  14 Jul 2008; Marcelo Goes <vanquirius@gentoo.org> +links-2.1.ebuild:
+  2.1 version bump.
 
 *links-2.1_pre36 (14 May 2008)
 



1.1                  www-client/links/links-2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.1&content-type=text/plain

Index: links-2.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.1 2008/07/14 02:26:43 vanquirius Exp $

WANT_AUTOCONF=latest
WANT_AUTOMAKE=none

inherit eutils toolchain-funcs autotools

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.1pre33-utf8.diff.bz2"

LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="bzip2 directfb fbcon gpm jpeg livecd png sdl ssl svga tiff unicode X zlib"

# 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 )
	png? ( >=media-libs/libpng-1.2.1 )
	jpeg? ( >=media-libs/jpeg-6b )
	fbcon? ( >=media-libs/libpng-1.2.1
		>=media-libs/jpeg-6b
		sys-libs/gpm )
	tiff? ( >=media-libs/tiff-3.5.7 )
	svga? ( >=media-libs/svgalib-1.4.3
		>=media-libs/libpng-1.2.1 )
	X? ( x11-libs/libXext
		>=media-libs/libpng-1.2.1 )
	directfb? ( dev-libs/DirectFB )
	sdl? ( >=media-libs/libsdl-1.2.0 )
	sys-libs/ncurses
	livecd? ( >=media-libs/libpng-1.2.1
		>=media-libs/jpeg-6b
		sys-libs/gpm )"

DEPEND="${RDEPEND}
	dev-util/pkgconfig"

src_unpack (){
	unpack ${A}; cd "${S}"

	epatch "${FILESDIR}"/configure-LANG.patch #131440

	if use unicode ; then
		epatch "${WORKDIR}/${PN}-2.1pre33-utf8.diff"
		cd "${S}/intl" && ./gen-intl && cd .. || die "gen-intl failed"
		cd "${S}/intl" && ./synclang && cd .. || die "synclang failed"
	fi
	# Upstream configure produced by broken autoconf-2.13. See #131440 and
	# #103483#c23
	eautoconf || die "autoconf failed"
}

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_with zlib) \
		$(use_with bzip2) \
		${myconf} || die "configure failed"
	emake || die "make failed"
}

src_install() {
	einstall || die

	# 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
		elog "You had the svga USE flag enabled, but for security reasons"
		elog "the links2 binary is NOT setuid by default. In order to"
		elog "enable links2 to work in SVGA, please change the permissions"
		elog "of /usr/bin/links2 to enable suid."
	fi
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-client/links: ChangeLog links-2.1.ebuild
@ 2008-07-16 15:34 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2008-07-16 15:34 UTC (permalink / raw
  To: gentoo-commits

jer         08/07/16 15:34:22

  Modified:             ChangeLog links-2.1.ebuild
  Log:
  Stable for HPPA (bug #231737).
  (Portage version: 2.2_rc1/cvs/Linux 2.6.24-gentoo-r2-JeR i686)

Revision  Changes    Path
1.107                www-client/links/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	14 Jul 2008 02:26:43 -0000	1.106
+++ ChangeLog	16 Jul 2008 15:34:22 -0000	1.107
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/links
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.106 2008/07/14 02:26:43 vanquirius Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.107 2008/07/16 15:34:22 jer Exp $
+
+  16 Jul 2008; Jeroen Roovers <jer@gentoo.org> links-2.1.ebuild:
+  Stable for HPPA (bug #231737).
 
 *links-2.1 (14 Jul 2008)
 



1.2                  www-client/links/links-2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?r1=1.1&r2=1.2

Index: links-2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- links-2.1.ebuild	14 Jul 2008 02:26:43 -0000	1.1
+++ links-2.1.ebuild	16 Jul 2008 15:34:22 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.1 2008/07/14 02:26:43 vanquirius Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.2 2008/07/16 15:34:22 jer Exp $
 
 WANT_AUTOCONF=latest
 WANT_AUTOMAKE=none
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="bzip2 directfb fbcon gpm jpeg livecd png sdl ssl svga tiff unicode X zlib"
 
 # Note: if X or fbcon usegflag are enabled, links will be built in graphic



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-client/links: ChangeLog links-2.1.ebuild
@ 2008-07-16 15:51 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 7+ messages in thread
From: Ferris McCormick (fmccor) @ 2008-07-16 15:51 UTC (permalink / raw
  To: gentoo-commits

fmccor      08/07/16 15:51:35

  Modified:             ChangeLog links-2.1.ebuild
  Log:
  Sparc stable, security bug #231737.
  (Portage version: 2.2_rc1/cvs/Linux 2.6.22-gentoo-r9-ail-simulation-sensors x86_64)

Revision  Changes    Path
1.108                www-client/links/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	16 Jul 2008 15:34:22 -0000	1.107
+++ ChangeLog	16 Jul 2008 15:51:35 -0000	1.108
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/links
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.107 2008/07/16 15:34:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.108 2008/07/16 15:51:35 fmccor Exp $
+
+  16 Jul 2008; Ferris McCormick <fmccor@gentoo.org> links-2.1.ebuild:
+  Sparc stable, security bug #231737.
 
   16 Jul 2008; Jeroen Roovers <jer@gentoo.org> links-2.1.ebuild:
   Stable for HPPA (bug #231737).



1.3                  www-client/links/links-2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?r1=1.2&r2=1.3

Index: links-2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- links-2.1.ebuild	16 Jul 2008 15:34:22 -0000	1.2
+++ links-2.1.ebuild	16 Jul 2008 15:51:35 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.2 2008/07/16 15:34:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.3 2008/07/16 15:51:35 fmccor Exp $
 
 WANT_AUTOCONF=latest
 WANT_AUTOMAKE=none
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x86-fbsd"
 IUSE="bzip2 directfb fbcon gpm jpeg livecd png sdl ssl svga tiff unicode X zlib"
 
 # Note: if X or fbcon usegflag are enabled, links will be built in graphic



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-client/links: ChangeLog links-2.1.ebuild
@ 2008-07-16 16:24 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2008-07-16 16:24 UTC (permalink / raw
  To: gentoo-commits

armin76     08/07/16 16:24:25

  Modified:             ChangeLog links-2.1.ebuild
  Log:
  alpha/ia64/x86 stable wrt #231737
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.109                www-client/links/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?r1=1.108&r2=1.109

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog	16 Jul 2008 15:51:35 -0000	1.108
+++ ChangeLog	16 Jul 2008 16:24:24 -0000	1.109
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/links
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.108 2008/07/16 15:51:35 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.109 2008/07/16 16:24:24 armin76 Exp $
+
+  16 Jul 2008; Raúl Porcel <armin76@gentoo.org> links-2.1.ebuild:
+  alpha/ia64/x86 stable wrt #231737
 
   16 Jul 2008; Ferris McCormick <fmccor@gentoo.org> links-2.1.ebuild:
   Sparc stable, security bug #231737.



1.4                  www-client/links/links-2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?r1=1.3&r2=1.4

Index: links-2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- links-2.1.ebuild	16 Jul 2008 15:51:35 -0000	1.3
+++ links-2.1.ebuild	16 Jul 2008 16:24:24 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.3 2008/07/16 15:51:35 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.4 2008/07/16 16:24:24 armin76 Exp $
 
 WANT_AUTOCONF=latest
 WANT_AUTOMAKE=none
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
 IUSE="bzip2 directfb fbcon gpm jpeg livecd png sdl ssl svga tiff unicode X zlib"
 
 # Note: if X or fbcon usegflag are enabled, links will be built in graphic



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-client/links: ChangeLog links-2.1.ebuild
@ 2008-07-17 14:59 Kenneth Prugh (ken69267)
  0 siblings, 0 replies; 7+ messages in thread
From: Kenneth Prugh (ken69267) @ 2008-07-17 14:59 UTC (permalink / raw
  To: gentoo-commits

ken69267    08/07/17 14:59:17

  Modified:             ChangeLog links-2.1.ebuild
  Log:
  amd64 stable, bug #231737
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r4 x86_64)

Revision  Changes    Path
1.110                www-client/links/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?r1=1.109&r2=1.110

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog	16 Jul 2008 16:24:24 -0000	1.109
+++ ChangeLog	17 Jul 2008 14:59:17 -0000	1.110
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/links
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.109 2008/07/16 16:24:24 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.110 2008/07/17 14:59:17 ken69267 Exp $
+
+  17 Jul 2008; Kenneth Prugh <ken69267@gentoo.org> links-2.1.ebuild:
+  amd64 stable, bug #231737
 
   16 Jul 2008; Raúl Porcel <armin76@gentoo.org> links-2.1.ebuild:
   alpha/ia64/x86 stable wrt #231737



1.5                  www-client/links/links-2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?r1=1.4&r2=1.5

Index: links-2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- links-2.1.ebuild	16 Jul 2008 16:24:24 -0000	1.4
+++ links-2.1.ebuild	17 Jul 2008 14:59:17 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.4 2008/07/16 16:24:24 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.5 2008/07/17 14:59:17 ken69267 Exp $
 
 WANT_AUTOCONF=latest
 WANT_AUTOMAKE=none
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="alpha ~amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
 IUSE="bzip2 directfb fbcon gpm jpeg livecd png sdl ssl svga tiff unicode X zlib"
 
 # Note: if X or fbcon usegflag are enabled, links will be built in graphic



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-client/links: ChangeLog links-2.1.ebuild
@ 2008-07-17 19:17 Markus Rothe (corsair)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Rothe (corsair) @ 2008-07-17 19:17 UTC (permalink / raw
  To: gentoo-commits

corsair     08/07/17 19:17:22

  Modified:             ChangeLog links-2.1.ebuild
  Log:
  Stable on ppc64; bug #231737
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.111                www-client/links/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?r1=1.110&r2=1.111

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog	17 Jul 2008 14:59:17 -0000	1.110
+++ ChangeLog	17 Jul 2008 19:17:22 -0000	1.111
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/links
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.110 2008/07/17 14:59:17 ken69267 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.111 2008/07/17 19:17:22 corsair Exp $
+
+  17 Jul 2008; Markus Rothe <corsair@gentoo.org> links-2.1.ebuild:
+  Stable on ppc64; bug #231737
 
   17 Jul 2008; Kenneth Prugh <ken69267@gentoo.org> links-2.1.ebuild:
   amd64 stable, bug #231737



1.6                  www-client/links/links-2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?r1=1.5&r2=1.6

Index: links-2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- links-2.1.ebuild	17 Jul 2008 14:59:17 -0000	1.5
+++ links-2.1.ebuild	17 Jul 2008 19:17:22 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.5 2008/07/17 14:59:17 ken69267 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.6 2008/07/17 19:17:22 corsair Exp $
 
 WANT_AUTOCONF=latest
 WANT_AUTOMAKE=none
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
 IUSE="bzip2 directfb fbcon gpm jpeg livecd png sdl ssl svga tiff unicode X zlib"
 
 # Note: if X or fbcon usegflag are enabled, links will be built in graphic



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-client/links: ChangeLog links-2.1.ebuild
@ 2008-07-18 17:16 Tobias Scherbaum (dertobi123)
  0 siblings, 0 replies; 7+ messages in thread
From: Tobias Scherbaum (dertobi123) @ 2008-07-18 17:16 UTC (permalink / raw
  To: gentoo-commits

dertobi123    08/07/18 17:16:55

  Modified:             ChangeLog links-2.1.ebuild
  Log:
  ppc stable, bug #231737
  (Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r6 x86_64)

Revision  Changes    Path
1.112                www-client/links/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.112&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?rev=1.112&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/ChangeLog?r1=1.111&r2=1.112

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- ChangeLog	17 Jul 2008 19:17:22 -0000	1.111
+++ ChangeLog	18 Jul 2008 17:16:55 -0000	1.112
@@ -1,6 +1,9 @@
 # ChangeLog for www-client/links
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.111 2008/07/17 19:17:22 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.112 2008/07/18 17:16:55 dertobi123 Exp $
+
+  18 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org> links-2.1.ebuild:
+  ppc stable, bug #231737
 
   17 Jul 2008; Markus Rothe <corsair@gentoo.org> links-2.1.ebuild:
   Stable on ppc64; bug #231737



1.7                  www-client/links/links-2.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/links/links-2.1.ebuild?r1=1.6&r2=1.7

Index: links-2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- links-2.1.ebuild	17 Jul 2008 19:17:22 -0000	1.6
+++ links-2.1.ebuild	18 Jul 2008 17:16:55 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.6 2008/07/17 19:17:22 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.1.ebuild,v 1.7 2008/07/18 17:16:55 dertobi123 Exp $
 
 WANT_AUTOCONF=latest
 WANT_AUTOMAKE=none
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ~ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd"
 IUSE="bzip2 directfb fbcon gpm jpeg livecd png sdl ssl svga tiff unicode X zlib"
 
 # Note: if X or fbcon usegflag are enabled, links will be built in graphic



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-07-18 17:16 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-16 16:24 [gentoo-commits] gentoo-x86 commit in www-client/links: ChangeLog links-2.1.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2008-07-18 17:16 Tobias Scherbaum (dertobi123)
2008-07-17 19:17 Markus Rothe (corsair)
2008-07-17 14:59 Kenneth Prugh (ken69267)
2008-07-16 15:51 Ferris McCormick (fmccor)
2008-07-16 15:34 Jeroen Roovers (jer)
2008-07-14  2:26 Marcelo Goes (vanquirius)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox