| 1 | # Copyright 1999-2009 Gentoo Foundation |
|---|
| 2 | # Distributed under the terms of the GNU General Public License v2 |
|---|
| 3 | # $Header: $ |
|---|
| 4 | |
|---|
| 5 | inherit autotools base |
|---|
| 6 | |
|---|
| 7 | DESCRIPTION="Vala API for communication with frameworkd2 (cornucopia)." |
|---|
| 8 | HOMEPAGE="http://www.freesmartphone.org" |
|---|
| 9 | SRC_URI="http://gnusrv.epfl.ch/~abelenda/freesmartphone-vapi-0.0.20090627.tar.lzma |
|---|
| 10 | http://212.147.52.64/gentoo-distfiles/freesmartphone-vapi-0.0.20090627.tar.lzma" |
|---|
| 11 | |
|---|
| 12 | LICENSE="GPL-2" |
|---|
| 13 | SLOT="0" |
|---|
| 14 | KEYWORDS="~arm ~amd64" |
|---|
| 15 | IUSE="" |
|---|
| 16 | |
|---|
| 17 | RDEPEND=" |
|---|
| 18 | dev-libs/glib:2 |
|---|
| 19 | " |
|---|
| 20 | |
|---|
| 21 | DEPEND=" |
|---|
| 22 | $RDEPEND |
|---|
| 23 | >=dev-lang/vala-0.7.2 |
|---|
| 24 | " |
|---|
| 25 | |
|---|
| 26 | src_unpack() { |
|---|
| 27 | unpack ${A} |
|---|
| 28 | cd "${WORKDIR}" |
|---|
| 29 | # Caution! , this is only because I did my tarball by taking only |
|---|
| 30 | # the misc-vapi folder in the repository |
|---|
| 31 | mv misc-vapi ${P} |
|---|
| 32 | cd "${S}" |
|---|
| 33 | eautoreconf |
|---|
| 34 | } |
|---|