diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-10-29 02:46:52 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-10-29 02:46:52 +0000 |
commit | f4e030783296c3c2cf021506a2775e0d8e6bf6ea (patch) | |
tree | 2d123d9415db1763435ec3494e33cf7cf98192d6 /media-radio/tucnak2 | |
parent | Taking maintainership of this package from darkside, per his request. (diff) | |
download | gentoo-2-f4e030783296c3c2cf021506a2775e0d8e6bf6ea.tar.gz gentoo-2-f4e030783296c3c2cf021506a2775e0d8e6bf6ea.tar.bz2 gentoo-2-f4e030783296c3c2cf021506a2775e0d8e6bf6ea.zip |
Version bump, ebuild by Thomas Beierlein
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'media-radio/tucnak2')
-rw-r--r-- | media-radio/tucnak2/ChangeLog | 7 | ||||
-rw-r--r-- | media-radio/tucnak2/tucnak2-2.28.ebuild | 65 |
2 files changed, 71 insertions, 1 deletions
diff --git a/media-radio/tucnak2/ChangeLog b/media-radio/tucnak2/ChangeLog index 36fc7a547f7f..a75c983e833b 100644 --- a/media-radio/tucnak2/ChangeLog +++ b/media-radio/tucnak2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-radio/tucnak2 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/tucnak2/ChangeLog,v 1.12 2009/08/20 03:28:03 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/tucnak2/ChangeLog,v 1.13 2009/10/29 02:46:52 darkside Exp $ + +*tucnak2-2.28 (29 Oct 2009) + + 29 Oct 2009; Jeremy Olexa <darkside@gentoo.org> +tucnak2-2.28.ebuild: + Version bump, ebuild by Thomas Beierlein 20 Aug 2009; Jeremy Olexa <darkside@gentoo.org> -files/tucnak2-2.16-doc.diff, -files/tucnak2-2.17-appname.diff, diff --git a/media-radio/tucnak2/tucnak2-2.28.ebuild b/media-radio/tucnak2/tucnak2-2.28.ebuild new file mode 100644 index 000000000000..66dfbdca4dfc --- /dev/null +++ b/media-radio/tucnak2/tucnak2-2.28.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/tucnak2/tucnak2-2.28.ebuild,v 1.1 2009/10/29 02:46:52 darkside Exp $ + +EAPI=2 +inherit eutils autotools + +DESCRIPTION="Amateur Radio VHF Contest Logbook" +HOMEPAGE="http://tucnak.nagano.cz" +SRC_URI="http://tucnak.nagano.cz/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="alsa fftw ftdi gpm hamlib suid" + +RDEPEND=">=dev-libs/glib-2 + media-libs/libsndfile + >=media-libs/libsdl-1.2 + alsa? ( media-libs/alsa-lib ) + fftw? ( sci-libs/fftw:3.0 ) + ftdi? ( dev-embedded/libftdi ) + gpm? ( sys-libs/gpm ) + hamlib? ( media-libs/hamlib ) + >=media-libs/libpng-1.2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_prepare() { + epatch "${FILESDIR}/${PN}-2.19-doc.diff" \ + "${FILESDIR}/${PN}-2.25-appname.diff" + eautoreconf +} + +src_configure() { + econf $(use_with alsa) $(use_with ftdi) \ + $(use_with gpm) $(use_with hamlib) \ + $(use_with fftw fftw3) --with-sdl +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + doman debian/tucnak2.1 || die "doman failed" + dodoc AUTHORS ChangeLog TODO doc/NAVOD.pdf || die "dodoc failed" + if use suid ; then + fperms 4711 /usr/bin/soundwrapper || die "fperms failed" + fi +} + +pkg_postinst() { + elog "In order to use sound with tucnak2 add yourself to the 'audio' group" + elog "and to key your rig via the parport add yourself to the 'lp' group" + elog "" + elog "tucnak2 can be used with the following additional packages:" + elog " media-radio/cwdaemon : Morse output via code cwdaemon" + elog " (No need to recompile)" + if use suid ; then + ewarn "You have choosen to install the little helper program 'soundwrapper'" + ewarn "setuid by setting USE=suid. That helper is only needed if you" + ewarn "want to use morse sidetone output via the PC speaker." + ewarn "" + ewarn "While the helper should be safe by design be aware that setting" + ewarn "any program setuid is a security risk." + fi +} |