diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2008-12-04 17:58:18 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2008-12-04 17:58:18 +0000 |
commit | 538c4c362d16cdf1b2469b4b763782d8479e64c4 (patch) | |
tree | 23855a1772dbdec5dd3df2b7d20a8e64df3a2cd0 /media-libs/hamlib | |
parent | Version bump and remove old version. (diff) | |
download | gentoo-2-538c4c362d16cdf1b2469b4b763782d8479e64c4.tar.gz gentoo-2-538c4c362d16cdf1b2469b4b763782d8479e64c4.tar.bz2 gentoo-2-538c4c362d16cdf1b2469b4b763782d8479e64c4.zip |
version bump, Thomas Beierlein as maintainer, bug #249714
(Portage version: 2.2_rc16/cvs/Linux 2.6.28-rc6-wl-dirty x86_64)
Diffstat (limited to 'media-libs/hamlib')
-rw-r--r-- | media-libs/hamlib/ChangeLog | 16 | ||||
-rw-r--r-- | media-libs/hamlib/hamlib-1.2.8.ebuild | 72 | ||||
-rw-r--r-- | media-libs/hamlib/metadata.xml | 16 |
3 files changed, 97 insertions, 7 deletions
diff --git a/media-libs/hamlib/ChangeLog b/media-libs/hamlib/ChangeLog index bc4439786b3d..e6acf353a94e 100644 --- a/media-libs/hamlib/ChangeLog +++ b/media-libs/hamlib/ChangeLog @@ -1,6 +1,20 @@ # ChangeLog for media-libs/hamlib # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.28 2008/06/18 03:16:47 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.29 2008/12/04 17:58:18 darkside Exp $ + +*hamlib-1.2.8 (04 Dec 2008) + + 04 Dec 2008; Jeremy Olexa <darkside@gentoo.org> metadata.xml, + +hamlib-1.2.8.ebuild: + Version bump, bug #249714: + New features: + * Some new rig models supported + * New rotator backend + * Fixes for a lot of radios + * Numerous bindings fixes, esp. for memory channel works + * New commands available in rigctl + * New rotctld to go with rigctld rig daemon. + Added Thomas Beierlein as maintainer, I'll be proxy committer. 18 Jun 2008; Jeremy Olexa <darkside@gentoo.org> -hamlib-1.2.4.ebuild: removed old. fixes bug #200597 diff --git a/media-libs/hamlib/hamlib-1.2.8.ebuild b/media-libs/hamlib/hamlib-1.2.8.ebuild new file mode 100644 index 000000000000..9c94e3a287a7 --- /dev/null +++ b/media-libs/hamlib/hamlib-1.2.8.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.8.ebuild,v 1.1 2008/12/04 17:58:18 darkside Exp $ + +inherit eutils multilib libtool + +DESCRIPTION="Ham radio backend rig control libraries" +HOMEPAGE="http://hamlib.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2 GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="doc python tcl" + +RESTRICT="test" + +RDEPEND="virtual/libc + python? ( dev-lang/python + dev-lang/tcl ) + tcl? ( dev-lang/tcl )" + +DEPEND=" ${RDEPEND} + >=sys-devel/libtool-1.5 + >=dev-util/pkgconfig-0.15 + >=dev-lang/swig-1.3.14 + dev-libs/libxml2 + doc? ( >=app-doc/doxygen-1.3.5 )" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${PN}-pkgconfig-fix.diff + + # Needed for FreeBSD - Please do not remove + elibtoolize +} + +src_compile() { + econf \ + --libdir=/usr/$(get_libdir)/hamlib \ + --disable-static \ + --with-microtune \ + --with-rpc-backends \ + --without-perl-binding \ + $(use_with python python-binding) \ + $(use_with tcl tcl-binding) + + emake -j1 || die "emake failed" + + if use doc ; then + cd doc && make doc || die "make doc failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc AUTHORS PLAN README README.betatester \ + README.developer LICENSE NEWS TODO + + if use doc; then + dohtml doc/html/* + fi + + insinto /usr/$(get_libdir)/pkgconfig + doins hamlib.pc + + echo "LDPATH=/usr/$(get_libdir)/hamlib" > "${T}"/73hamlib + doenvd "${T}"/73hamlib +} diff --git a/media-libs/hamlib/metadata.xml b/media-libs/hamlib/metadata.xml index 0d8b28444e78..6877160ab12c 100644 --- a/media-libs/hamlib/metadata.xml +++ b/media-libs/hamlib/metadata.xml @@ -1,10 +1,14 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>no-herd</herd> -<maintainer> -<email>maintainer-needed@gentoo.org</email> -<name>your friendly neighbour</name> -</maintainer> + <herd>no-herd</herd> + <maintainer> + <email>tb@forth-ev.de</email> + <name>Thomas Beierlein</name> + <description>Proxy maintainer, please assign bugs</description> + </maintainer> + <maintainer> + <email>darkside@gentoo.org</email> + <description>Proxy committer, CC on bugs</description> + </maintainer> </pkgmetadata> - |