Gentoo Archives: gentoo-commits

From: "Krzysiek Pawlik (nelchael)" <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xnots: ChangeLog xnots-0.2.1.ebuild
Date: Tue, 13 Jan 2009 00:58:46
Message-Id: E1LMXcB-0001ON-3S@stork.gentoo.org
1 nelchael 09/01/13 00:58:43
2
3 Modified: ChangeLog
4 Added: xnots-0.2.1.ebuild
5 Log:
6 Version bump, bug #254594, ebuild improved by Gautam Iyer.
7 (Portage version: 2.1.6.5/cvs/Linux 2.6.28-tuxonice x86_64)
8
9 Revision Changes Path
10 1.4 x11-misc/xnots/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnots/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnots/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnots/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xnots/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 8 Jan 2009 22:30:26 -0000 1.3
23 +++ ChangeLog 13 Jan 2009 00:58:43 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/xnots
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnots/ChangeLog,v 1.3 2009/01/08 22:30:26 nelchael Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnots/ChangeLog,v 1.4 2009/01/13 00:58:43 nelchael Exp $
29 +
30 +*xnots-0.2.1 (13 Jan 2009)
31 +
32 + 13 Jan 2009; <nelchael@g.o> +xnots-0.2.1.ebuild:
33 + Version bump, bug #254594, ebuild improved by Gautam Iyer.
34
35 08 Jan 2009; <nelchael@g.o> xnots-0.2.ebuild:
36 Depend on pango with X use flag enabled.
37
38
39
40 1.1 x11-misc/xnots/xnots-0.2.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnots/xnots-0.2.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xnots/xnots-0.2.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: xnots-0.2.1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xnots/xnots-0.2.1.ebuild,v 1.1 2009/01/13 00:58:43 nelchael Exp $
50
51 EAPI="2"
52
53 inherit linux-info
54
55 DESCRIPTION="A desktop sticky note program for the unix geek"
56 HOMEPAGE="http://xnots.sourceforge.net"
57 SRC_URI="mirror://sourceforge/xnots/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="vim-syntax"
63
64 RDEPEND="x11-libs/libX11
65 x11-libs/libXext
66 x11-libs/libXrender
67 x11-libs/libXrandr
68 x11-libs/pango[X]"
69
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig
72 x11-proto/xextproto
73 x11-proto/renderproto
74 x11-proto/randrproto"
75
76 src_compile() {
77 NO_DEBUG=1 emake || die
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" prefix=/usr mandir=/usr/share/man install || die
82 if use vim-syntax; then
83 insinto /usr/share/vim/vimfiles/syntax
84 doins etc/xnots.vim
85 fi
86 }
87
88 pkg_postinst() {
89 if ! linux_chkconfig_present INOTIFY; then
90 ewarn "Your kernel is compiled without INOTIFY support."
91 ewarn "xNots requires INOTIFY support to run."
92 ewarn "Please enable CONFIG_INOTIFY in your kernel config."
93 fi
94 }