You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
792 B
33 lines
792 B
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-gnat/eselect-gnat-1.3-r1.ebuild,v 1.4 2008/03/05 19:40:41 coldwind Exp $
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="gnat module for eselect."
|
|
HOMEPAGE="http://www.gentoo.org"
|
|
SRC_URI=""
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
|
|
IUSE=""
|
|
RDEPEND="app-admin/eselect"
|
|
|
|
MODULEDIR="/usr/share/eselect/modules"
|
|
|
|
# NOTE!!
|
|
# This path is duplicated in gnat-eselect module,
|
|
# adjust in both locations!
|
|
LIBDIR="/usr/share/gnat/lib"
|
|
|
|
src_install() {
|
|
dodir ${MODULEDIR}
|
|
insinto ${MODULEDIR}
|
|
newins "${FILESDIR}"/gnat.eselect-${PV} gnat.eselect
|
|
dodir ${LIBDIR}
|
|
insinto ${LIBDIR}
|
|
newins "${FILESDIR}"/gnat-common-${PVR}.bash gnat-common.bash
|
|
}
|