Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/flickrnet-bin: metadata.xml ChangeLog flickrnet-bin-2.2.ebuild
Date: Thu, 10 Sep 2009 12:22:30
Message-Id: E1MlifV-0000vV-2h@stork.gentoo.org
1 flameeyes 09/09/10 12:22:29
2
3 Added: metadata.xml ChangeLog flickrnet-bin-2.2.ebuild
4 Log:
5 Initial import of a flicrnet binary install; this is needed for the Flickr Exporter of f-spot. Since MonoDevelop 2.0 cannot handle the VS2k3 project used by the sources, until 2.2 the binary version will be used.
6 (Portage version: 2.2_rc40/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-dotnet/flickrnet-bin/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/flickrnet-bin/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/flickrnet-bin/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>no-herd</herd>
20 <maintainer>
21 <email>flameeyes@g.o</email>
22 </maintainer>
23 </pkgmetadata>
24
25
26
27 1.1 dev-dotnet/flickrnet-bin/ChangeLog
28
29 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/flickrnet-bin/ChangeLog?rev=1.1&view=markup
30 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/flickrnet-bin/ChangeLog?rev=1.1&content-type=text/plain
31
32 Index: ChangeLog
33 ===================================================================
34 # ChangeLog for dev-dotnet/flickrnet-bin
35 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
36 # $Header: /var/cvsroot/gentoo-x86/dev-dotnet/flickrnet-bin/ChangeLog,v 1.1 2009/09/10 12:22:28 flameeyes Exp $
37
38 *flickrnet-bin-2.2 (10 Sep 2009)
39
40 10 Sep 2009; Diego E. Pettenò <flameeyes@g.o>
41 +flickrnet-bin-2.2.ebuild, +metadata.xml:
42 Initial import of a flicrnet binary install; this is needed for the Flickr
43 Exporter of f-spot. Since MonoDevelop 2.0 cannot handle the VS2k3 project
44 used by the sources, until 2.2 the binary version will be used.
45
46
47
48
49 1.1 dev-dotnet/flickrnet-bin/flickrnet-bin-2.2.ebuild
50
51 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/flickrnet-bin/flickrnet-bin-2.2.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/flickrnet-bin/flickrnet-bin-2.2.ebuild?rev=1.1&content-type=text/plain
53
54 Index: flickrnet-bin-2.2.ebuild
55 ===================================================================
56 # Copyright 1999-2009 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/dev-dotnet/flickrnet-bin/flickrnet-bin-2.2.ebuild,v 1.1 2009/09/10 12:22:28 flameeyes Exp $
59
60 EAPI=2
61
62 MY_PN="FlickrNet"
63
64 inherit mono
65
66 DESCRIPTION="A .Net Library for accessing the Flickr API - Binary version"
67 HOMEPAGE="http://www.codeplex.com/FlickrNet"
68
69 # Upstream download require click-through LGPL-2.1.
70 # Since the license allows us to do that, just redistribute
71 # it in a decent format.
72 SRC_URI="mirror://gentoo/${MY_PN}${PV}.zip"
73
74 LICENSE="LGPL-2.1"
75 SLOT="0"
76 KEYWORDS="~amd64"
77 IUSE=""
78
79 RDEPEND=">=dev-lang/mono-2.4"
80 DEPEND="${RDEPEND}"
81
82 S="${WORKDIR}"
83
84 src_compile() {
85 :
86 }
87
88 src_install() {
89 egacinstall Release/${MY_PN}.dll ${MY_PN} || die
90 }