blob: ba9be99432d16314b5d88db1c70f6604723c04f9 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/dymo-cups-drivers/dymo-cups-drivers-1.4.0.ebuild,v 1.2 2012/12/31 02:37:14 flameeyes Exp $
EAPI=5
inherit eutils autotools
DESCRIPTION="Dymo SDK for LabelWriter/LabelManager printers"
HOMEPAGE="http://sites.dymo.com/DeveloperProgram/Pages/LW_SDK_Linux.aspx"
SRC_URI="http://download.dymo.com/Download%20Drivers/Linux/Download/${P}.tar.gz"
S="${WORKDIR}/${P}.5"
LICENSE="GPL-2"
SLOT="0"
IUSE="test"
KEYWORDS="~amd64 ~x86"
RDEPEND="net-print/cups"
DEPEND="${RDEPEND}
test? ( dev-util/cppunit )"
# tests fail but needs to be investigated
RESTRICT=test
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.2.0-cxxflags.patch
eautoreconf
}
DOCS=( AUTHORS README ChangeLog docs/SAMPLES )
src_install() {
default
insinto /usr/share/doc/${PF}
doins docs/*.{txt,rtf,ps,png}
}
|