diff options
author | Thomas Beierlein <tomjbe@gentoo.org> | 2011-06-10 05:56:45 +0000 |
---|---|---|
committer | Thomas Beierlein <tomjbe@gentoo.org> | 2011-06-10 05:56:45 +0000 |
commit | 256ae41c7283582f7dcf7325b230884abc443414 (patch) | |
tree | d4ead125929a7c414fef84720c3d9461cc88a94b /media-radio | |
parent | Add sys-power/acpi_call-9999, bug #356605 (diff) | |
download | gentoo-2-256ae41c7283582f7dcf7325b230884abc443414.tar.gz gentoo-2-256ae41c7283582f7dcf7325b230884abc443414.tar.bz2 gentoo-2-256ae41c7283582f7dcf7325b230884abc443414.zip |
Version bump. Fix wrong documentation entry
(Portage version: 2.1.9.50/cvs/Linux i686)
Diffstat (limited to 'media-radio')
-rw-r--r-- | media-radio/tlf/ChangeLog | 7 | ||||
-rw-r--r-- | media-radio/tlf/tlf-1.0.5.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/media-radio/tlf/ChangeLog b/media-radio/tlf/ChangeLog index b7762a4eb79c..6bb9dcc1501b 100644 --- a/media-radio/tlf/ChangeLog +++ b/media-radio/tlf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-radio/tlf # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/tlf/ChangeLog,v 1.23 2011/05/26 18:56:55 tomjbe Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/tlf/ChangeLog,v 1.24 2011/06/10 05:56:45 tomjbe Exp $ + +*tlf-1.0.5 (10 Jun 2011) + + 10 Jun 2011; Thomas Beierlein <tomjbe@gentoo.org> +tlf-1.0.5.ebuild: + Version bump. Fix wrong documentation entry *tlf-1.0.4 (26 May 2011) diff --git a/media-radio/tlf/tlf-1.0.5.ebuild b/media-radio/tlf/tlf-1.0.5.ebuild new file mode 100644 index 000000000000..6461a28b7d09 --- /dev/null +++ b/media-radio/tlf/tlf-1.0.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/tlf/tlf-1.0.5.ebuild,v 1.1 2011/06/10 05:56:45 tomjbe Exp $ + +inherit flag-o-matic multilib + +DESCRIPTION="Console-mode amateur radio contest logger" +HOMEPAGE="http://home.iae.nl/users/reinc/TLF-0.2.html" +SRC_URI="http://www.hs-mittweida.de/tb/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="sys-libs/ncurses + media-libs/hamlib" +DEPEND="${RDEPEND} + sys-apps/gawk" + +src_compile() { + append-flags -L/usr/$(get_libdir)/hamlib + econf --enable-hamlib + emake || die "emake failed." +} + +src_install() { + einstall || die "einstall failed." + rm -fR "${D}"/usr/share/doc/${PN} + dodoc AUTHORS ChangeLog NEWS doc/README +} |