summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-11-25 00:28:00 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-11-25 00:28:00 +0000
commit5904635ba47485d9d49b35ee564a2e937369ebbe (patch)
tree9a06a7398e8244c33a37d646bd70b07ff3fcf961 /www-client
parentAdd patch to replace non-POSIX test. Bug #387087 (diff)
downloadgentoo-2-5904635ba47485d9d49b35ee564a2e937369ebbe.tar.gz
gentoo-2-5904635ba47485d9d49b35ee564a2e937369ebbe.tar.bz2
gentoo-2-5904635ba47485d9d49b35ee564a2e937369ebbe.zip
The binary name is links, not links2. Fix postinst message.
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Diffstat (limited to 'www-client')
-rw-r--r--www-client/links/ChangeLog5
-rw-r--r--www-client/links/links-2.4-r1.ebuild14
2 files changed, 11 insertions, 8 deletions
diff --git a/www-client/links/ChangeLog b/www-client/links/ChangeLog
index 3b2dc62da0b5..b85ac561bd87 100644
--- a/www-client/links/ChangeLog
+++ b/www-client/links/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for www-client/links
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.140 2011/11/25 00:25:43 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/ChangeLog,v 1.141 2011/11/25 00:28:00 ssuominen Exp $
+
+ 25 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> links-2.4-r1.ebuild:
+ The binary name is links, not links2. Fix postinst message.
25 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> -links-2.4.ebuild:
old
diff --git a/www-client/links/links-2.4-r1.ebuild b/www-client/links/links-2.4-r1.ebuild
index 6b91c3ae8842..55491b4071da 100644
--- a/www-client/links/links-2.4-r1.ebuild
+++ b/www-client/links/links-2.4-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.4-r1.ebuild,v 1.1 2011/11/25 00:24:16 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/links/links-2.4-r1.ebuild,v 1.2 2011/11/25 00:28:00 ssuominen Exp $
EAPI=4
inherit autotools eutils
@@ -74,16 +74,16 @@ src_configure() {
# 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"
+ ( use gpm || use fbcon || use livecd ) || export ac_cv_lib_gpm_Gpm_Open=no
- if use fbcon || use livecd ; then
+ 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
+ if use livecd; then
myconf="${myconf} --with-libjpeg"
fi
@@ -116,8 +116,8 @@ src_install() {
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."
+ elog "the links binary is NOT setuid by default. In order to"
+ elog "enable links to work in SVGA, please change the permissions"
+ elog "of /usr/bin/links to enable suid."
fi
}