blob: 3823f8cf436abb95870fc0fc7a4f5fd06713548b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
MY_P="PTLensDB"
DESCRIPTION="PTLens profiles for lens calibration to use with clens"
SRC_URI="mirror://sourceforge/hugin/${MY_P}_${PV//./-}.zip"
HOMEPAGE="http://hugin.sf.net/"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
src_install() {
dodir /usr/share/ptlens/profiles
insinto /usr/share/ptlens/profiles
doins "${WORKDIR}"/*
}
|