Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xlockmore: ChangeLog xlockmore-5.41.ebuild
Date: Tue, 30 Oct 2012 20:05:57
Message-Id: 20121030200544.0192B21600@flycatcher.gentoo.org
1 jer 12/10/30 20:05:43
2
3 Modified: ChangeLog
4 Added: xlockmore-5.41.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.119 x11-misc/xlockmore/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xlockmore/ChangeLog?rev=1.119&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xlockmore/ChangeLog?rev=1.119&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xlockmore/ChangeLog?r1=1.118&r2=1.119
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/ChangeLog,v
20 retrieving revision 1.118
21 retrieving revision 1.119
22 diff -u -r1.118 -r1.119
23 --- ChangeLog 24 Oct 2012 19:48:19 -0000 1.118
24 +++ ChangeLog 30 Oct 2012 20:05:43 -0000 1.119
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/xlockmore
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/ChangeLog,v 1.118 2012/10/24 19:48:19 ulm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/ChangeLog,v 1.119 2012/10/30 20:05:43 jer Exp $
30 +
31 +*xlockmore-5.41 (30 Oct 2012)
32 +
33 + 30 Oct 2012; Jeroen Roovers <jer@g.o> +xlockmore-5.41.ebuild:
34 + Version bump.
35
36 24 Oct 2012; Ulrich Müller <ulm@g.o> xlockmore-5.38.ebuild,
37 xlockmore-5.39.ebuild, xlockmore-5.40.ebuild:
38
39
40
41 1.1 x11-misc/xlockmore/xlockmore-5.41.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xlockmore/xlockmore-5.41.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xlockmore/xlockmore-5.41.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xlockmore-5.41.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xlockmore/xlockmore-5.41.ebuild,v 1.1 2012/10/30 20:05:43 jer Exp $
51
52 EAPI=4
53 inherit autotools eutils flag-o-matic pam
54
55 DESCRIPTION="Just another screensaver application for X"
56 HOMEPAGE="http://www.tux.org/~bagleyd/xlockmore.html"
57 SRC_URI="http://ftp.tux.org/pub/tux/bagleyd/${PN}/${P}/${P}.tar.bz2"
58
59 LICENSE="BSD GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="crypt debug gtk imagemagick motif nas opengl pam truetype xinerama xlockrc"
63
64 REQUIRED_USE="
65 || ( crypt pam )
66 "
67 RDEPEND="
68 gtk? ( x11-libs/gtk+:2 )
69 imagemagick? ( media-gfx/imagemagick )
70 motif? ( >=x11-libs/motif-2.3:0 )
71 nas? ( media-libs/nas )
72 opengl? (
73 media-libs/mesa
74 truetype? ( >=media-libs/ftgl-2.1.3_rc5 )
75 )
76 pam? ( virtual/pam )
77 truetype? ( media-libs/freetype:2 )
78 x11-libs/libX11
79 x11-libs/libXext
80 x11-libs/libXmu
81 x11-libs/libXpm
82 x11-libs/libXt
83 xinerama? ( x11-libs/libXinerama )
84 "
85 DEPEND="${RDEPEND}
86 virtual/pkgconfig
87 x11-proto/xineramaproto"
88
89 MAKEOPTS="${MAKEOPTS} -j1"
90
91 src_prepare() {
92 epatch \
93 "${FILESDIR}"/${PN}-5.31-configure.in.patch \
94 "${FILESDIR}"/${PN}-5.31-ldflags.patch
95
96 eautoreconf
97 }
98
99 src_configure() {
100 local myconf=""
101
102 if use opengl && use truetype; then
103 myconf="${myconf} --with-ftgl"
104 append-flags -DFTGL213
105 else
106 myconf="${myconf} --without-ftgl"
107 fi
108
109 econf \
110 $(use_enable pam) \
111 $(use_enable xlockrc) \
112 $(use_with crypt) \
113 $(use_with debug editres) \
114 $(use_with gtk gtk2) \
115 $(use_with imagemagick magick) \
116 $(use_with motif) \
117 $(use_with nas) \
118 $(use_with opengl mesa) \
119 $(use_with opengl) \
120 $(use_with truetype freetype) \
121 $(use_with truetype ttf) \
122 $(use_with xinerama) \
123 --disable-use-mb \
124 --enable-appdefaultdir=/usr/share/X11/app-defaults \
125 --enable-syslog \
126 --enable-vtlock \
127 --without-esound \
128 --without-gtk \
129 ${myconf}
130 }
131
132 src_install() {
133 einstall xapploaddir="${D}/usr/share/X11/app-defaults" \
134 mandir="${D}/usr/share/man/man1" INSTPGMFLAGS=""
135
136 pamd_mimic_system xlock auth
137
138 if use pam; then
139 fperms 755 /usr/bin/xlock
140 else
141 fperms 4755 /usr/bin/xlock
142 fi
143
144 dohtml docs/xlock.html
145 dodoc README docs/{3d.howto,cell_automata,HACKERS.GUIDE,Purify,Revisions,TODO}
146 }