Ticket #270: libfso-glib-20090623.ebuild

File libfso-glib-20090623.ebuild, 0.7 KB (added by aelia, 3 years ago)

ebuild for libfso-glib-20090623

Line 
1# Copyright 1999-2008 Gentoo Foundation
2# Distributed under the terms of the GNU General Public License v2
3# $Header: $
4
5inherit git autotools
6
7DESCRIPTION="Glib bindings for Freesmartphone Framework APIs."
8HOMEPAGE="http://www.freesmartphone.org/"
9
10EGIT_REPO_URI="git://git.freesmartphone.org/libfso-glib.git"
11EGIT_TREE="b855b0297ff68bb505a02d9b4b13914ca558cd59"
12
13EGIT_PROJECT="libfso-glib"
14
15LICENSE="LGPL-2.1"
16SLOT="0"
17KEYWORDS="~x86 ~amd64 ~arm"
18IUSE=""
19DOCS="README"
20
21DEPEND=""
22RDEPEND="
23         dev-libs/dbus-glib
24                "
25
26src_unpack() {
27        # Fetch and unpack current git sources
28        git_src_unpack
29
30        cd "${S}"
31        eautoreconf
32        glib-gettextize --force --copy || die
33}
34
35src_install() {
36        emake DESTDIR="${D}" install || die
37}