Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-im/linpopup: ChangeLog linpopup-2.1.0.ebuild
Date: Wed, 05 Aug 2009 08:38:38
Message-Id: E1MYc0r-0007ok-Lo@stork.gentoo.org
1 ssuominen 09/08/05 08:38:21
2
3 Modified: ChangeLog
4 Added: linpopup-2.1.0.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 net-im/linpopup/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/linpopup/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/linpopup/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/linpopup/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-im/linpopup/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 5 Aug 2009 07:12:04 -0000 1.16
23 +++ ChangeLog 5 Aug 2009 08:38:21 -0000 1.17
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-im/linpopup
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-im/linpopup/ChangeLog,v 1.16 2009/08/05 07:12:04 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-im/linpopup/ChangeLog,v 1.17 2009/08/05 08:38:21 ssuominen Exp $
29 +
30 +*linpopup-2.1.0 (05 Aug 2009)
31 +
32 + 05 Aug 2009; Samuli Suominen <ssuominen@g.o>
33 + +files/2.1.0-link.patch, +linpopup-2.1.0.ebuild:
34 + Version bump.
35
36 05 Aug 2009; Samuli Suominen <ssuominen@g.o>
37 +files/2.0.4-link.patch, linpopup-2.0.4-r1.ebuild,
38
39
40
41 1.1 net-im/linpopup/linpopup-2.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/linpopup/linpopup-2.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/linpopup/linpopup-2.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: linpopup-2.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-im/linpopup/linpopup-2.1.0.ebuild,v 1.1 2009/08/05 08:38:21 ssuominen Exp $
51
52 EAPI=2
53 inherit autotools eutils
54
55 DESCRIPTION="GTK+ port of the LinPopUp messaging client for Samba (including Samba 3)"
56 HOMEPAGE="http://linpopup2.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/linpopup2/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE=""
63
64 RDEPEND="x11-libs/libX11
65 x11-libs/libXmu
66 x11-libs/gtk+:2"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig
69 x11-proto/xproto"
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${PV}-link.patch
73 eautoreconf
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install || die "emake install failed"
78 dodoc AUTHORS ChangeLog README THANKS TODO
79 dosym linpopup /usr/bin/LinPopUp || die "dosym failed"
80 newicon pixmaps/icon_256.xpm ${PN}.xpm
81 make_desktop_entry ${PN} LinPopUp ${PN}
82 }
83
84 pkg_postinst() {
85 echo
86 elog "To be able to receive messages that are sent to you, you will need to"
87 elog "edit your /etc/samba/smb.conf file."
88 elog
89 elog "Add this line to the [global settings] section:"
90 elog
91 elog " message command = /usr/bin/linpopup \"%f\" \"%m\" %s; rm %s"
92 elog
93 elog "PLEASE NOTE that \"%f\" is not the same thing as %f , '%f' or %f"
94 elog "and take care to enter \"%f\" \"%m\" %s exactly as shown above."
95 elog
96 elog "For more information, please refer to the documentation, found in"
97 elog "/usr/share/doc/${P}/"
98 echo
99 }