diff options
author | Rob Romans <killsoft@gentoo.org> | 2004-12-09 01:11:39 +0000 |
---|---|---|
committer | Rob Romans <killsoft@gentoo.org> | 2004-12-09 01:11:39 +0000 |
commit | 328bd51a94a196b15e48d4a62c76c858bdc1a97d (patch) | |
tree | 02b12a4208f860da0f6ac49e63a54657db12170c /media-radio/tlf | |
parent | Version bump (Manifest recommit) (diff) | |
download | gentoo-2-328bd51a94a196b15e48d4a62c76c858bdc1a97d.tar.gz gentoo-2-328bd51a94a196b15e48d4a62c76c858bdc1a97d.tar.bz2 gentoo-2-328bd51a94a196b15e48d4a62c76c858bdc1a97d.zip |
new upstream version
Diffstat (limited to 'media-radio/tlf')
-rw-r--r-- | media-radio/tlf/ChangeLog | 16 | ||||
-rw-r--r-- | media-radio/tlf/Manifest | 4 | ||||
-rw-r--r-- | media-radio/tlf/files/digest-tlf-0.9.21 | 1 | ||||
-rw-r--r-- | media-radio/tlf/tlf-0.9.21.ebuild | 31 |
4 files changed, 50 insertions, 2 deletions
diff --git a/media-radio/tlf/ChangeLog b/media-radio/tlf/ChangeLog index 238bf1b2879c..cae00878ddb9 100644 --- a/media-radio/tlf/ChangeLog +++ b/media-radio/tlf/ChangeLog @@ -1,6 +1,20 @@ # ChangeLog for media-radio/tlf # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/tlf/ChangeLog,v 1.5 2004/08/04 23:15:10 killsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/tlf/ChangeLog,v 1.6 2004/12/09 01:11:39 killsoft Exp $ + + 08 Dec 2004; Robb Romans <killsoft@gentoo.org> : + Changes: + (0.9.21) + * The cw sidetone setting (TONE) in logcfg.dat has become CWTONE= + * A new parameter LOWBANDS_DOUBLE has been introduced + * A new parameter CLUSTER_LOG has been intgroduced. When set + the cluster messages are written to a 'clusterlog' file... this can be tailed + to a terminal window (tail -f clusterlog) for people who are on a dead band, + so they can watch the game. + * The initial exchange function now also recognises embedded + calls (CT3/PA0R/QRP) + * The logcfg.dat template has been updated to version 0.9.21. + * The manpage has been updated to version 0.9.21. 04 Aug 2004; Robb Romans <killsoft@gentoo.org> tlf-0.9.19.ebuild: Mark stable on x86. diff --git a/media-radio/tlf/Manifest b/media-radio/tlf/Manifest index c8bf058dc817..ace3b5f7a402 100644 --- a/media-radio/tlf/Manifest +++ b/media-radio/tlf/Manifest @@ -1,6 +1,8 @@ MD5 825a2ac4a7bf177baa8451f342a6ae65 tlf-0.9.20.ebuild 745 MD5 0b1c6c819c1d1db43f631d9e6f287da6 tlf-0.9.19.ebuild 745 -MD5 6cc66a5721b3843bb14705ba54693bfe ChangeLog 819 +MD5 fa9ff15e131df797f21fd96d812547d3 ChangeLog 1390 MD5 28d0c3bb6c80425620241cff231da8d3 metadata.xml 224 +MD5 2e8d08501997e12c38ee810e1bf39999 tlf-0.9.21.ebuild 658 MD5 c0e39249a77a318de45e2dbcf775a9f6 files/digest-tlf-0.9.19 62 +MD5 6e150896796f133d7c283079e6ef7b17 files/digest-tlf-0.9.21 62 MD5 16c4bb832d86bf9c3928b9ca48da860d files/digest-tlf-0.9.20 62 diff --git a/media-radio/tlf/files/digest-tlf-0.9.21 b/media-radio/tlf/files/digest-tlf-0.9.21 new file mode 100644 index 000000000000..2e96e437a704 --- /dev/null +++ b/media-radio/tlf/files/digest-tlf-0.9.21 @@ -0,0 +1 @@ +MD5 d14308ab2874f063340751fb4e0804bd tlf-0.9.21.tar.gz 361648 diff --git a/media-radio/tlf/tlf-0.9.21.ebuild b/media-radio/tlf/tlf-0.9.21.ebuild new file mode 100644 index 000000000000..f95cd135b7e4 --- /dev/null +++ b/media-radio/tlf/tlf-0.9.21.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/tlf/tlf-0.9.21.ebuild,v 1.1 2004/12/09 01:11:39 killsoft Exp $ + +inherit flag-o-matic + +DESCRIPTION="Console-mode amateur radio contest logger" +HOMEPAGE="http://home.iae.nl/users/reinc/TLF-0.2.html" +SRC_URI="http://sharon.esrac.ele.tue.nl/pub/linux/ham/tlf/${P}.tar.gz" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~x86 ~ppc ~alpha" +IUSE="" + +RDEPEND="virtual/libc + sys-libs/ncurses + media-libs/hamlib" + +DEPEND="sys-apps/gawk" + +src_compile() { + append-flags -L/usr/lib/hamlib + econf --enable-hamlib \ + || die "configure failed" + emake || die "emake failed" +} + +src_install() { + einstall || die "install failed" +} |