blob: b238a7990de13f309e3dd28f381fc3c2c55b26f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit versionator
DESCRIPTION="completion data for ktigcc"
HOMEPAGE="http://tigcc.ticalc.org/"
PATCH_LEVEL="r1-1"
MY_PV=$(get_version_component_range 1-2)b0${PV: -1}
SRC_URI="mirror://sourceforge/tigcc-linux/${PN}-${MY_PV}${PATCH_LEVEL}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="~dev-embedded/tigcc-${PV}"
src_install() {
insinto /usr/share/apps/ktigcc
doins "${WORKDIR}"/completion
}
|