| 1 | # Copyright 1999-2008 Gentoo Foundation |
|---|
| 2 | # Distributed under the terms of the GNU General Public License v2 |
|---|
| 3 | # $Header: $ |
|---|
| 4 | |
|---|
| 5 | inherit git autotools |
|---|
| 6 | |
|---|
| 7 | DESCRIPTION="Glib bindings for Freesmartphone Framework APIs." |
|---|
| 8 | HOMEPAGE="http://www.freesmartphone.org/" |
|---|
| 9 | |
|---|
| 10 | EGIT_REPO_URI="git://git.freesmartphone.org/libfso-glib.git" |
|---|
| 11 | EGIT_TREE="b855b0297ff68bb505a02d9b4b13914ca558cd59" |
|---|
| 12 | |
|---|
| 13 | EGIT_PROJECT="libfso-glib" |
|---|
| 14 | |
|---|
| 15 | LICENSE="LGPL-2.1" |
|---|
| 16 | SLOT="0" |
|---|
| 17 | KEYWORDS="~x86 ~amd64 ~arm" |
|---|
| 18 | IUSE="" |
|---|
| 19 | DOCS="README" |
|---|
| 20 | |
|---|
| 21 | DEPEND="" |
|---|
| 22 | RDEPEND=" |
|---|
| 23 | dev-libs/dbus-glib |
|---|
| 24 | " |
|---|
| 25 | |
|---|
| 26 | src_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 | |
|---|
| 35 | src_install() { |
|---|
| 36 | emake DESTDIR="${D}" install || die |
|---|
| 37 | } |
|---|