Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/podsleuth: ChangeLog podsleuth-0.6.2.ebuild
Date: Sun, 31 Aug 2008 21:30:34
Message-Id: E1KZuVC-0000tz-Ae@stork.gentoo.org
1 loki_val 08/08/31 21:30:30
2
3 Modified: ChangeLog
4 Added: podsleuth-0.6.2.ebuild
5 Log:
6 I though I had added this ages ago wrt bug 233960 and bug 233710, but apparently that was all in my mind. Bumping.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.25.8 i686)
8
9 Revision Changes Path
10 1.3 dev-dotnet/podsleuth/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/podsleuth/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/podsleuth/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/podsleuth/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/podsleuth/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 27 Jan 2008 23:10:00 -0000 1.2
23 +++ ChangeLog 31 Aug 2008 21:30:29 -0000 1.3
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-dotnet/podsleuth
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/podsleuth/ChangeLog,v 1.2 2008/01/27 23:10:00 opfer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/podsleuth/ChangeLog,v 1.3 2008/08/31 21:30:29 loki_val Exp $
29 +
30 +*podsleuth-0.6.2 (31 Aug 2008)
31 +
32 + 31 Aug 2008; Peter Alfredsen <loki_val@g.o>
33 + +files/podsleuth-0.6.2-sgutils2.patch, +podsleuth-0.6.2.ebuild:
34 + I though I had added this ages ago wrt bug 233960 and bug 233710, but
35 + apparently that was all in my mind. Bumping.
36
37 27 Jan 2008; Christian Faulhammer <opfer@g.o>
38 podsleuth-0.6.1.ebuild:
39
40
41
42 1.1 dev-dotnet/podsleuth/podsleuth-0.6.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/podsleuth/podsleuth-0.6.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/podsleuth/podsleuth-0.6.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: podsleuth-0.6.2.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-dotnet/podsleuth/podsleuth-0.6.2.ebuild,v 1.1 2008/08/31 21:30:29 loki_val Exp $
52
53 inherit base autotools mono
54
55 DESCRIPTION="a tool to discover detailed model information about an Apple (TM) iPod (TM)."
56 HOMEPAGE="http://banshee-project.org/PodSleuth"
57 SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.gz"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 RDEPEND=">=dev-lang/mono-1.1.10
65 dev-dotnet/dbus-glib-sharp
66 >=sys-apps/hal-0.5.6
67 sys-apps/sg3_utils"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70
71 PATCHES=( "${FILESDIR}/${P}-sgutils2.patch" )
72
73 src_unpack() {
74 base_src_unpack
75 cd "${S}"
76 sed -i \
77 -e '/AC_PROG_INSTALL/aAC_PROG_CC' \
78 "${S}"/configure.ac || die "SED 404. FILE NOT FOUND"
79 AT_M4DIR="m4" eautoreconf
80 }
81
82 src_compile() {
83 econf --with-hal-callouts-dir=/usr/libexec
84 emake -j1 || die "emake failed."
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "emake install failed."
89 dodoc AUTHORS ChangeLog NEWS README
90 }