28 lines
582 B
Bash
28 lines
582 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="7"
|
|
|
|
DESCRIPTION="Eselect module to maintain vala compiler symlink"
|
|
HOMEPAGE="http://code.google.com/p/eselect-vala/"
|
|
|
|
SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="app-admin/eselect
|
|
dev-lang/vala"
|
|
DEPEND="${RDEPEND}
|
|
>=sys-devel/m4-1.4.13"
|
|
|
|
DOCS="AUTHORS README"
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
dodoc ${DOCS}
|
|
}
|