summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-07-11 21:51:42 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-07-11 21:51:42 +0000
commita66b2adc7f5f82ca80553e288263e1a04b508075 (patch)
treeac51519a1f772a48db87fc77c3b67abf6bbcff82 /x11-misc/xlockmore
parentVersion bump, which apparently fixes bug #273834. Fixed LDFLAGS. (diff)
downloadgentoo-2-a66b2adc7f5f82ca80553e288263e1a04b508075.tar.gz
gentoo-2-a66b2adc7f5f82ca80553e288263e1a04b508075.tar.bz2
gentoo-2-a66b2adc7f5f82ca80553e288263e1a04b508075.zip
Remove USE unicode wrt #277061. Introduce --enable-ttf back because it can't find fonts wrt #272232.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/xlockmore')
-rw-r--r--x11-misc/xlockmore/ChangeLog6
-rw-r--r--x11-misc/xlockmore/xlockmore-5.28.ebuild15
2 files changed, 16 insertions, 5 deletions
diff --git a/x11-misc/xlockmore/ChangeLog b/x11-misc/xlockmore/ChangeLog
index 7a6b731b4c59..de89400a2397 100644
--- a/x11-misc/xlockmore/ChangeLog
+++ b/x11-misc/xlockmore/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-misc/xlockmore
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/ChangeLog,v 1.73 2009/06/29 12:28:54 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/ChangeLog,v 1.74 2009/07/11 21:51:42 ssuominen Exp $
+
+ 11 Jul 2009; Samuli Suominen <ssuominen@gentoo.org> xlockmore-5.28.ebuild:
+ Remove USE unicode wrt #277061. Introduce --enable-ttf back because it
+ can't find fonts wrt #272232.
29 Jun 2009; Ferris McCormick <fmccor@gentoo.org> xlockmore-5.28.ebuild:
Sparc stable, bug #255229.
diff --git a/x11-misc/xlockmore/xlockmore-5.28.ebuild b/x11-misc/xlockmore/xlockmore-5.28.ebuild
index 8210f45c74c6..07fb0f2178a6 100644
--- a/x11-misc/xlockmore/xlockmore-5.28.ebuild
+++ b/x11-misc/xlockmore/xlockmore-5.28.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/xlockmore-5.28.ebuild,v 1.4 2009/06/29 12:28:54 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/xlockmore-5.28.ebuild,v 1.5 2009/07/11 21:51:42 ssuominen Exp $
EAPI=2
inherit flag-o-matic pam
@@ -12,7 +12,7 @@ SRC_URI="http://ftp.tux.org/pub/tux/bagleyd/${PN}/${P}/${P}.tar.bz2"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64 hppa ~ppc ~ppc64 sparc x86"
-IUSE="crypt debug esd gtk motif nas opengl pam truetype unicode xlockrc"
+IUSE="crypt debug esd gtk motif nas opengl pam truetype xlockrc"
RDEPEND="x11-libs/libX11
x11-libs/libXext
@@ -43,15 +43,17 @@ src_configure() {
myconf+=" --without-ftgl"
fi
- econf --enable-vtlock \
+ econf \
+ --enable-vtlock \
--enable-syslog \
$(use_enable xlockrc) \
$(use_enable pam) \
- $(use_enable unicode use-mb) \
+ --disable-use-mb \
--enable-appdefaultdir=/usr/share/X11/app-defaults \
$(use_with motif) \
$(use_with debug editres) \
$(use_with truetype freetype) \
+ $(use_with truetype ttf) \
$(use_with opengl) \
$(use_with opengl mesa) \
$(use_with esd esound) \
@@ -72,3 +74,8 @@ src_install() {
dohtml docs/xlock.html
dodoc README docs/{3d.howto,cell_automata,HACKERS.GUIDE,Purify,Revisions,TODO}
}
+
+pkg_postinst() {
+ ewarn "xlockmore doesn't support multibyte or unicode password(s)"
+ ewarn "see http://bugs.gentoo.org/277061 for more information"
+}