Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/hamlib/
Date: Tue, 03 Jan 2017 10:16:55
Message-Id: 1483438576.84f9ad65546b616ce0b4ef538fba80c446108fe7.tomjbe@gentoo
1 commit: 84f9ad65546b616ce0b4ef538fba80c446108fe7
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 3 10:16:16 2017 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 10:16:16 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84f9ad65
7
8 media-libs/hamlib: Version bump
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 media-libs/hamlib/Manifest | 1 +
13 media-libs/hamlib/hamlib-3.1.ebuild | 83 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 84 insertions(+)
15
16 diff --git a/media-libs/hamlib/Manifest b/media-libs/hamlib/Manifest
17 index dcc0f3f..985cbbd 100644
18 --- a/media-libs/hamlib/Manifest
19 +++ b/media-libs/hamlib/Manifest
20 @@ -1,3 +1,4 @@
21 DIST hamlib-1.2.15.3.tar.gz 1675879 SHA256 a2ca4549e4fd99d6e5600e354ebcb57502611aa63c6921c1b8a825289833f75e SHA512 88f9cb8d82d813ac02944def0adf6eada0e4ed1407f60e344d51172462d51ab0c3ddd9cbf9ef8cbd61efba6c4158a77acb7c23b886e174c9a082bf1dd11f5baa WHIRLPOOL 33f8e114d05c778e30c1b634e2494cd3f9d89213ccc58b34b4d195bb4f1c803c5451f54c8e232bf276a1daebe6c0a01bae73a51fa90538fe537d3b5bf4ce91de
22 DIST hamlib-3.0.1.tar.gz 2074254 SHA256 3fec97ea326d02aa8f35834c4af34194a3f544e6212f391397d788c566b44e32 SHA512 c71d76343092da03dd3bd8470494fe9bd2789597ab3c83a5c98e007c94016c59de21cdbfb461fa6093e27ca8f300cfed65b4ba7e579b3070c6ed0bf6a4de38b2 WHIRLPOOL 95b2ac3d692461085009dc3c45a699c106e0a49e4367d138d18238b32444ffc0a160281c146eb53721ff2e4f12daad3262cf4c772bab318a3b20328d84732adb
23 DIST hamlib-3.0.tar.gz 2074188 SHA256 bc16546161a47e21a44a710a40aeb0bce478f112bffcc4f253eb27e150f1c21e SHA512 16ac66ab91d44c364054aa6ba8292a6538886744d83a83eb0887f55407f836e1d4a402cc7a41576594bea8100c2eefa26bae212f767a68b2a4db7a709166cbd2 WHIRLPOOL 31f96037260160e83f376e87f35669cac73772b73d4b50bf78b32893de17d36e02d41d71ab393ac6fa27efbb387a88d71bdc8cb4a7c02c7251b141afea6d82a9
24 +DIST hamlib-3.1.tar.gz 2130615 SHA256 682304c3e88ff6ccfd6a5fc28b33bcc95d2d0a54321973fef015ff62570c994e SHA512 befc5c407379e30711bde2affb9c191add6dbb04a36c1309f8771170cf04156c48609a094775638036282e085de6c78d09ef8d2760d69c595471e16e985e0885 WHIRLPOOL d73b54161cf452db1edcf32d01caccb153ce332682f92ef2e4c6e9092febd801242dd19ffa87626b24d07cc11e4f8745f2872dc900692dd7d1ef759110399c6b
25
26 diff --git a/media-libs/hamlib/hamlib-3.1.ebuild b/media-libs/hamlib/hamlib-3.1.ebuild
27 new file mode 100644
28 index 00000000..3d87ba0
29 --- /dev/null
30 +++ b/media-libs/hamlib/hamlib-3.1.ebuild
31 @@ -0,0 +1,83 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +PYTHON_COMPAT=( python2_7 )
39 +
40 +inherit autotools-utils eutils multilib python-single-r1
41 +
42 +DESCRIPTION="Ham radio backend rig control libraries"
43 +HOMEPAGE="https://sourceforge.net/apps/mediawiki/hamlib"
44 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="LGPL-2 GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86 ~x86-fbsd"
49 +IUSE="doc perl python tcl"
50 +
51 +RESTRICT="test"
52 +
53 +RDEPEND="
54 + =virtual/libusb-0*
55 + dev-libs/libxml2
56 + sys-libs/readline:0
57 + perl? ( dev-lang/perl )
58 + python? ( ${PYTHON_DEPS} )
59 + tcl? ( dev-lang/tcl:0= )"
60 +
61 +DEPEND=" ${RDEPEND}
62 + virtual/pkgconfig
63 + dev-lang/swig
64 + >=sys-devel/libtool-2.2
65 + doc? ( app-doc/doxygen )"
66 +
67 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
68 +
69 +DOCS=(AUTHORS NEWS PLAN README README.betatester README.developer TODO)
70 +
71 +pkg_setup() {
72 + use python && python-single-r1_pkg_setup
73 +}
74 +
75 +src_prepare() {
76 + # fix hardcoded libdir paths
77 + sed -i -e "s#fix}/lib#fix}/$(get_libdir)/hamlib#" \
78 + -e "s#fix}/include#fix}/include/hamlib#" \
79 + hamlib.pc.in || die "sed failed"
80 +
81 + # make building of documentation compatible with autotools-utils
82 + sed -i -e "s/doc:/html:/g" doc/Makefile.am || die "sed failed"
83 +
84 + eautoreconf
85 +}
86 +
87 +src_configure() {
88 + local myeconfargs=(
89 + --libdir=/usr/$(get_libdir)/hamlib
90 + --disable-static
91 + --with-xml-support
92 + $(use_with perl perl-binding)
93 + $(use_with python python-binding)
94 + $(use_with tcl tcl-binding)
95 + --disable-silent-rules
96 + )
97 + autotools-utils_src_configure
98 +}
99 +
100 +src_compile() {
101 + autotools-utils_src_compile
102 + use doc && autotools-utils_src_compile html
103 +}
104 +
105 +src_install() {
106 + use doc && HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/doc/html/")
107 + autotools-utils_src_install
108 +
109 + insinto /usr/$(get_libdir)/pkgconfig
110 + doins "${AUTOTOOLS_BUILD_DIR}"/hamlib.pc || die "doins failed"
111 +
112 + echo "LDPATH=/usr/$(get_libdir)/hamlib" > "${T}"/73hamlib
113 + doenvd "${T}"/73hamlib || die "doenvd failed"
114 +}