Ticket #269: libgee-20090716.ebuild

File libgee-20090716.ebuild, 0.8 KB (added by aelia, 3 years ago)

ebuild for dev-libs/libgee-20090716

Line 
1# Copyright 1999-2009 Gentoo Foundation
2# Distributed under the terms of the GNU General Public License v2
3# $Header: $
4
5inherit git
6inherit autotools
7
8EGIT_REPO_URI="git://git.gnome.org/libgee.git"
9EGIT_PROJECT="libgee"
10EGIT_TREE="1c9e4d15931d11be11ec9cc59417e36971d0102b"
11DESCRIPTION="GObject-based interfaces and classes for commonly used data structures."
12HOMEPAGE="http://live.gnome.org/Libgee"
13
14LICENSE="LPGL-2.1"
15SLOT="0"
16KEYWORDS="~amd64 ~arm ~x86"
17IUSE=""
18
19DEPEND=">=dev-libs/glib-2.10"
20RDEPEND="${RDEPEND}
21         dev-lang/vala
22                 dev-util/pkgconfig"
23
24
25src_unpack(){
26git_src_unpack
27cd "${S}"
28# don't know why but once my compilation failed because this file was missing...
29touch ./Changelog
30eautoreconf
31}
32
33src_install(){
34einstall || die
35dodoc README ChangeLog-pre-0-1-5 NEWS
36}
37