| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can | |
| 3 # be found in the LICENSE file. | |
| 4 | |
| 5 EAPI="2" | |
| 6 | |
| 7 DESCRIPTION="Install stubs for USB server from www.incentivespro.com" | |
| 8 | |
| 9 # This package is all BSD, but it contains a locally-written installer | |
| 10 # script that downloads and installs a free-as-in-beer EULA'd package | |
| 11 # from www.incentivespro.com. This is only run by the end-user (and | |
| 12 # only for test systems); we do not distribute it as part of CrOS. | |
| 13 # The license for the software that is downloaded is in | |
| 14 # files/LICENSE.incentivespro | |
| 15 | |
| 16 LICENSE="BSD" | |
| 17 SLOT="0" | |
| 18 KEYWORDS="x86" | |
| 19 IUSE="" | |
| 20 | |
| 21 RDEPEND="" | |
| 22 DEPEND="${RDEPEND}" | |
| 23 | |
| 24 src_install() { | |
| 25 dobin "${FILESDIR}"/install-usbsrv | |
| 26 dobin "${FILESDIR}"/usbsrv | |
| 27 } | |
| OLD | NEW |