Gentoo Archives: gentoo-commits

From: "Thomas Beierlein (tomjbe)" <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-radio/tucnak2: tucnak2-2.39.ebuild ChangeLog
Date: Fri, 25 Feb 2011 18:06:26
Message-Id: 20110225180613.DB57720054@flycatcher.gentoo.org
1 tomjbe 11/02/25 18:06:13
2
3 Modified: ChangeLog
4 Added: tucnak2-2.39.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.9.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.27 media-radio/tucnak2/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/tucnak2/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/tucnak2/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/tucnak2/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-radio/tucnak2/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 20 Dec 2010 13:38:34 -0000 1.26
24 +++ ChangeLog 25 Feb 2011 18:06:13 -0000 1.27
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-radio/tucnak2
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-radio/tucnak2/ChangeLog,v 1.26 2010/12/20 13:38:34 c1pher Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-radio/tucnak2/ChangeLog,v 1.27 2011/02/25 18:06:13 tomjbe Exp $
31 +
32 +*tucnak2-2.39 (25 Feb 2011)
33 +
34 + 25 Feb 2011; Thomas Beierlein <tomjbe@g.o> +tucnak2-2.39.ebuild,
35 + +files/tucnak2-2.39-doc.diff:
36 + Version bump.
37
38 20 Dec 2010; Dane Smith <c1pher@g.o> tucnak2-2.37.ebuild:
39 x86 stable wrt bug 349092.
40
41
42
43 1.1 media-radio/tucnak2/tucnak2-2.39.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/tucnak2/tucnak2-2.39.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/tucnak2/tucnak2-2.39.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tucnak2-2.39.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-radio/tucnak2/tucnak2-2.39.ebuild,v 1.1 2011/02/25 18:06:13 tomjbe Exp $
53
54 EAPI=2
55 inherit eutils autotools
56
57 DESCRIPTION="Amateur Radio VHF Contest Logbook"
58 HOMEPAGE="http://tucnak.nagano.cz"
59 SRC_URI="http://tucnak.nagano.cz/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="alsa fftw ftdi gpm hamlib suid"
65
66 RDEPEND=">=dev-libs/glib-2
67 media-libs/libsndfile
68 >=media-libs/libsdl-1.2
69 alsa? ( media-libs/alsa-lib )
70 fftw? ( sci-libs/fftw:3.0 )
71 ftdi? ( dev-embedded/libftdi )
72 gpm? ( sys-libs/gpm )
73 hamlib? ( media-libs/hamlib )
74 >=media-libs/libpng-1.2"
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig"
77
78 src_prepare() {
79 epatch "${FILESDIR}/${PN}-2.39-doc.diff" \
80 "${FILESDIR}/${PN}-2.32-appname.diff"
81 eautoreconf
82 }
83
84 src_configure() {
85 econf $(use_with alsa) $(use_with ftdi) \
86 $(use_with gpm) $(use_with hamlib) \
87 $(use_with fftw fftw3) --with-sdl
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "install failed"
92 doman debian/tucnak2.1 || die "doman failed"
93 dodoc AUTHORS ChangeLog TODO doc/NAVOD.pdf || die "dodoc failed"
94 if use suid ; then
95 fperms 4711 /usr/bin/soundwrapper || die "fperms failed"
96 fi
97 }
98
99 pkg_postinst() {
100 elog "In order to use sound with tucnak2 add yourself to the 'audio' group"
101 elog "and to key your rig via the parport add yourself to the 'lp' group"
102 elog ""
103 elog "tucnak2 can be used with the following additional packages:"
104 elog " media-radio/cwdaemon : Morse output via code cwdaemon"
105 elog " (No need to recompile)"
106 if use suid ; then
107 ewarn "You have choosen to install the little helper program 'soundwrapper'"
108 ewarn "setuid by setting USE=suid. That helper is only needed if you"
109 ewarn "want to use morse sidetone output via the PC speaker."
110 ewarn ""
111 ewarn "While the helper should be safe by design be aware that setting"
112 ewarn "any program setuid is a security risk."
113 fi
114 }