Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/sxid: sxid-4.2.ebuild ChangeLog
Date: Tue, 26 Jul 2011 21:29:51
Message-Id: 20110726212928.D23862004B@flycatcher.gentoo.org
1 xmw 11/07/26 21:29:28
2
3 Modified: ChangeLog
4 Added: sxid-4.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.25 app-admin/sxid/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sxid/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sxid/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sxid/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/sxid/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 23 Sep 2009 15:02:36 -0000 1.24
24 +++ ChangeLog 26 Jul 2011 21:29:28 -0000 1.25
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-admin/sxid
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sxid/ChangeLog,v 1.24 2009/09/23 15:02:36 patrick Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-admin/sxid/ChangeLog,v 1.25 2011/07/26 21:29:28 xmw Exp $
31 +
32 +*sxid-4.2 (26 Jul 2011)
33 +
34 + 26 Jul 2011; Michael Weber <xmw@g.o> +sxid-4.2.ebuild:
35 + Version bump, thanks to Michael for the report (bug 375893)
36
37 23 Sep 2009; Patrick Lauer <patrick@g.o> sxid-4.0.4-r1.ebuild,
38 sxid-4.0.4-r2.ebuild:
39
40
41
42 1.1 app-admin/sxid/sxid-4.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sxid/sxid-4.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sxid/sxid-4.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: sxid-4.2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-admin/sxid/sxid-4.2.ebuild,v 1.1 2011/07/26 21:29:28 xmw Exp $
52
53 EAPI=3
54
55 inherit base toolchain-funcs
56
57 DESCRIPTION="suid, sgid file and directory checking"
58 SRC_URI="http://linukz.org/download/${P}.tar.gz"
59 HOMEPAGE="http://freshmeat.net/projects/sxid"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE=""
65
66 RDEPEND="virtual/mailx"
67 DEPEND="sys-apps/sed
68 sys-devel/gcc
69 sys-devel/autoconf"
70
71 PATCHES=( "${FILESDIR}/${PN}-64bit-clean.patch" )
72
73 src_prepare() {
74 # this is an admin application and really requires root to run correctly
75 # we need to move the binary to the sbin directory
76 sed -i s/bindir/sbindir/g source/Makefile.in
77 tc-export CC
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die
82 dodoc docs/{sxid.{conf,cron}.example,TODO} || die
83 }
84
85 pkg_postinst() {
86 elog "You will need to configure sxid.conf for your system using the manpage and example"
87 }