28 lines
530 B
Bash
28 lines
530 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=4
|
|
|
|
DESCRIPTION="Eselect module to maintain vala compiler symlink"
|
|
HOMEPAGE="http://code.google.com/p/eselect-vala/"
|
|
|
|
SRC_URI="http://${PN}.googlecode.com/files/${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}
|
|
}
|