Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/skippy: skippy-0.5.0.ebuild ChangeLog
Date: Sat, 06 Feb 2010 20:52:18
Message-Id: E1NdrdX-0000l4-Au@stork.gentoo.org
1 ssuominen 10/02/06 20:52:15
2
3 Modified: skippy-0.5.0.ebuild ChangeLog
4 Log:
5 Don't use LDFLAGS to pass libraries. Use CC variable instead of hardcoded gcc. Missing USE depend wrt #248579 by Kacper Kowalik.
6 (Portage version: 2.2_rc62/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.14 x11-misc/skippy/skippy-0.5.0.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/skippy/skippy-0.5.0.ebuild?rev=1.14&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/skippy/skippy-0.5.0.ebuild?rev=1.14&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/skippy/skippy-0.5.0.ebuild?r1=1.13&r2=1.14
14
15 Index: skippy-0.5.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-misc/skippy/skippy-0.5.0.ebuild,v
18 retrieving revision 1.13
19 retrieving revision 1.14
20 diff -u -r1.13 -r1.14
21 --- skippy-0.5.0.ebuild 9 Jan 2009 14:24:15 -0000 1.13
22 +++ skippy-0.5.0.ebuild 6 Feb 2010 20:52:14 -0000 1.14
23 @@ -1,10 +1,9 @@
24 -# Copyright 1999-2009 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/skippy/skippy-0.5.0.ebuild,v 1.13 2009/01/09 14:24:15 remi Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/skippy/skippy-0.5.0.ebuild,v 1.14 2010/02/06 20:52:14 ssuominen Exp $
29
30 -inherit eutils
31 -
32 -IUSE=""
33 +EAPI=2
34 +inherit eutils toolchain-funcs
35
36 DESCRIPTION="A full-screen task-switcher providing Apple Expose-like functionality with various WMs"
37 HOMEPAGE="http://thegraveyard.org/skippy.php"
38 @@ -13,43 +12,38 @@
39 LICENSE="GPL-2"
40 SLOT="0"
41 KEYWORDS="amd64 ppc x86"
42 +IUSE=""
43
44 -RDEPEND="x11-libs/libXext
45 +RDEPEND="media-libs/imlib2[X]
46 + x11-libs/libXext
47 x11-libs/libX11
48 x11-libs/libXinerama
49 x11-libs/libXmu
50 x11-libs/libXft"
51 -
52 DEPEND="${RDEPEND}
53 x11-proto/xproto
54 x11-proto/xineramaproto
55 - dev-util/pkgconfig
56 - >=media-libs/imlib2-1.1.0"
57 + dev-util/pkgconfig"
58
59 -src_unpack() {
60 - unpack ${A}
61 - cd ${S}
62 - epatch ${FILESDIR}/${PN}-pointer-size.patch
63 +src_prepare() {
64 + epatch "${FILESDIR}"/${PN}-pointer-size.patch \
65 + "${FILESDIR}"/${P}-Makefile.patch
66 }
67
68 src_compile() {
69 - emake || die "emake failed"
70 + tc-export CC
71 + emake || die
72 }
73
74 src_install() {
75 - make DESTDIR=${D} BINDIR=/usr/bin install || die
76 -
77 - insinto /usr/share/${P}
78 - doins skippyrc-default
79 -
80 - dodoc CHANGELOG
81 + emake DESTDIR="${D}" install || die
82 + dodoc CHANGELOG skippyrc-default
83 }
84
85 pkg_postinst() {
86 - einfo
87 - einfo "You should copy /usr/share/${P}/skippyrc-default to ~/.skippyrc"
88 - einfo "and edit the keysym used to invoke skippy"
89 - einfo "(Find out the keysym name using 'xev')"
90 - einfo
91 + echo
92 + elog "You should copy skippyrc-default from /usr/share/doc/${PF} to"
93 + elog "~/.skippyrc and edit the keysym used to invoke skippy."
94 + elog "Use x11-apps/xev to find out the keysym."
95 echo
96 }
97
98
99
100 1.15 x11-misc/skippy/ChangeLog
101
102 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/skippy/ChangeLog?rev=1.15&view=markup
103 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/skippy/ChangeLog?rev=1.15&content-type=text/plain
104 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/skippy/ChangeLog?r1=1.14&r2=1.15
105
106 Index: ChangeLog
107 ===================================================================
108 RCS file: /var/cvsroot/gentoo-x86/x11-misc/skippy/ChangeLog,v
109 retrieving revision 1.14
110 retrieving revision 1.15
111 diff -u -r1.14 -r1.15
112 --- ChangeLog 9 Jan 2009 14:24:15 -0000 1.14
113 +++ ChangeLog 6 Feb 2010 20:52:14 -0000 1.15
114 @@ -1,6 +1,11 @@
115 # ChangeLog for x11-misc/skippy
116 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
117 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/skippy/ChangeLog,v 1.14 2009/01/09 14:24:15 remi Exp $
118 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
119 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/skippy/ChangeLog,v 1.15 2010/02/06 20:52:14 ssuominen Exp $
120 +
121 + 06 Feb 2010; Samuli Suominen <ssuominen@g.o> skippy-0.5.0.ebuild,
122 + +files/skippy-0.5.0-Makefile.patch:
123 + Don't use LDFLAGS to pass libraries. Use CC variable instead of hardcoded
124 + gcc. Missing USE depend wrt #248579 by Kacper Kowalik.
125
126 09 Jan 2009; RĂ©mi Cardona <remi@g.o> skippy-0.5.0.ebuild:
127 Change virtual/xft dependency to x11-libs/libXft, bug 253771.