diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2008-12-08 14:04:46 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2008-12-08 14:04:46 +0000 |
commit | b55cdce1ef9750b8dbb5d79574ce9a94e1af5934 (patch) | |
tree | 851d81e9b91cbe1f05ecf037a3c0b544e3700ed8 /media-radio | |
parent | Fixed xorg build issue, bug #250211. (diff) | |
download | gentoo-2-b55cdce1ef9750b8dbb5d79574ce9a94e1af5934.tar.gz gentoo-2-b55cdce1ef9750b8dbb5d79574ce9a94e1af5934.tar.bz2 gentoo-2-b55cdce1ef9750b8dbb5d79574ce9a94e1af5934.zip |
version bump, tested by Thomas Beierlein
(Portage version: 2.2_rc17/cvs/Linux 2.6.27.7 x86_64)
Diffstat (limited to 'media-radio')
-rw-r--r-- | media-radio/tucnak2/ChangeLog | 7 | ||||
-rw-r--r-- | media-radio/tucnak2/tucnak2-2.20.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/media-radio/tucnak2/ChangeLog b/media-radio/tucnak2/ChangeLog index 87298121e80e..367cd8a9ec7b 100644 --- a/media-radio/tucnak2/ChangeLog +++ b/media-radio/tucnak2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-radio/tucnak2 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/tucnak2/ChangeLog,v 1.3 2008/11/25 16:46:39 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/tucnak2/ChangeLog,v 1.4 2008/12/08 14:04:46 darkside Exp $ + +*tucnak2-2.20 (08 Dec 2008) + + 08 Dec 2008; Jeremy Olexa <darkside@gentoo.org> +tucnak2-2.20.ebuild: + version bump, tested by Thomas Beierlein 25 Nov 2008; Jeremy Olexa <darkside@gentoo.org> files/tucnak2-2.19-appname.diff, files/tucnak2-2.19-doc.diff: diff --git a/media-radio/tucnak2/tucnak2-2.20.ebuild b/media-radio/tucnak2/tucnak2-2.20.ebuild new file mode 100644 index 000000000000..7199cfaac305 --- /dev/null +++ b/media-radio/tucnak2/tucnak2-2.20.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/tucnak2/tucnak2-2.20.ebuild,v 1.1 2008/12/08 14:04:46 darkside Exp $ + +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 ftdi gpm hamlib" + +RDEPEND=">=dev-libs/glib-2 + media-libs/libsndfile + >=media-libs/libsdl-1.2 + alsa? ( media-libs/alsa-lib ) + ftdi? ( dev-embedded/libftdi ) + gpm? ( sys-libs/gpm ) + hamlib? ( media-libs/hamlib ) + >=media-libs/libpng-1.2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-2.19-doc.diff" \ + "${FILESDIR}/${PN}-2.19-appname.diff" + eautoreconf +} + + +src_compile() { + econf $(use_with alsa) $(use_with ftdi) \ + $(use_with gpm) $(use_with hamlib) --with-sdl + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + doman debian/tucnak2.1 || die "doman failed" + dodoc AUTHORS ChangeLog TODO doc/NAVOD.sxw doc/NAVOD.pdf || die "dodoc failed" +} + +pkg_postinst() { + elog "In order to use sound with tucnak2 add yourself to the audio 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)" +} |