summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Beierlein <tomjbe@gentoo.org>2010-04-30 20:33:41 +0000
committerThomas Beierlein <tomjbe@gentoo.org>2010-04-30 20:33:41 +0000
commit845b876d8a7a1a0c124b660cc7e4b2c92ed13595 (patch)
treebded7ad0412f33f46acfd9599acb45da7a9ed781 /media-radio
parentDeal with github changing their tarball generation. (diff)
downloadgentoo-2-845b876d8a7a1a0c124b660cc7e4b2c92ed13595.tar.gz
gentoo-2-845b876d8a7a1a0c124b660cc7e4b2c92ed13595.tar.bz2
gentoo-2-845b876d8a7a1a0c124b660cc7e4b2c92ed13595.zip
Version bump. Fixed Homepage and SRC_URI.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'media-radio')
-rw-r--r--media-radio/xdx/ChangeLog7
-rw-r--r--media-radio/xdx/xdx-2.4.2.ebuild32
2 files changed, 38 insertions, 1 deletions
diff --git a/media-radio/xdx/ChangeLog b/media-radio/xdx/ChangeLog
index 32cdaf77087b..c13e7b6ab377 100644
--- a/media-radio/xdx/ChangeLog
+++ b/media-radio/xdx/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-radio/xdx
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-radio/xdx/ChangeLog,v 1.16 2010/04/29 16:53:07 tomjbe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-radio/xdx/ChangeLog,v 1.17 2010/04/30 20:33:41 tomjbe Exp $
+
+*xdx-2.4.2 (30 Apr 2010)
+
+ 30 Apr 2010; Thomas Beierlein <tomjbe@gentoo.org> +xdx-2.4.2.ebuild:
+ Version bump. Fixed Homepage and SRC_URI.
29 Apr 2010; Thomas Beierlein <tomjbe@gentoo.org> metadata.xml:
I take over maintainership. Darkside, thanks for proxying.
diff --git a/media-radio/xdx/xdx-2.4.2.ebuild b/media-radio/xdx/xdx-2.4.2.ebuild
new file mode 100644
index 000000000000..938f2fc911c2
--- /dev/null
+++ b/media-radio/xdx/xdx-2.4.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-radio/xdx/xdx-2.4.2.ebuild,v 1.1 2010/04/30 20:33:41 tomjbe Exp $
+
+DESCRIPTION="a GTK+ TCP/IP DX-cluster and ON4KST chat client."
+HOMEPAGE="http://www.ibiblio.org/pub/linux/apps/ham"
+SRC_URI="http://www.ibiblio.org/pub/linux/apps/ham/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="nls"
+
+RDEPEND=">=x11-libs/gtk+-2.12"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig
+ nls? ( sys-devel/gettext )"
+
+src_compile() {
+ econf $(use_enable nls)
+ emake || die "emake failed."
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed."
+ dodoc AUTHORS ChangeLog NEWS README TODO || die
+}
+
+pkg_postinst() {
+ elog "To use the rig control feature, install media-libs/hamlib"
+ elog "and enable hamlib in the Preferences dialog. (no need for recompile)"
+}