public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: ChangeLog hamlib-1.2.14.ebuild
@ 2011-09-01 18:42 Thomas Beierlein (tomjbe)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Beierlein (tomjbe) @ 2011-09-01 18:42 UTC (permalink / raw
  To: gentoo-commits

tomjbe      11/09/01 18:42:34

  Modified:             ChangeLog
  Added:                hamlib-1.2.14.ebuild
  Log:
  Version bump
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

Revision  Changes    Path
1.61                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	12 Aug 2011 21:15:44 -0000	1.60
+++ ChangeLog	1 Sep 2011 18:42:33 -0000	1.61
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/hamlib
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.60 2011/08/12 21:15:44 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.61 2011/09/01 18:42:33 tomjbe Exp $
+
+*hamlib-1.2.14 (01 Sep 2011)
+
+  01 Sep 2011; Thomas Beierlein <tomjbe@gentoo.org> +hamlib-1.2.14.ebuild:
+  Version bump
 
   12 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> hamlib-1.2.10.ebuild,
   hamlib-1.2.11.ebuild, hamlib-1.2.12-r2.ebuild, hamlib-1.2.13.ebuild:



1.1                  media-libs/hamlib/hamlib-1.2.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?rev=1.1&content-type=text/plain

Index: hamlib-1.2.14.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v 1.1 2011/09/01 18:42:33 tomjbe Exp $

EAPI="3"
PYTHON_DEPEND="python? 2"

inherit autotools-utils eutils multilib python

DESCRIPTION="Ham radio backend rig control libraries"
HOMEPAGE="http://sourceforge.net/apps/mediawiki/hamlib"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="LGPL-2 GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~x86 ~x86-fbsd"
IUSE="doc python tcl"

RESTRICT="test"

RDEPEND="
	=virtual/libusb-0*
	dev-libs/libxml2
	tcl? ( dev-lang/tcl )"

DEPEND=" ${RDEPEND}
	dev-util/pkgconfig
	dev-lang/swig
	>=sys-devel/libtool-2.2
	doc? ( app-doc/doxygen )"

pkg_setup() {
	if use python; then
		python_set_active_version 2
		python_pkg_setup
	fi
}

src_prepare() {
	# fix hardcoded libdir paths
	sed -i -e "s#fix}/lib#fix}/$(get_libdir)/hamlib#" \
		-e "s#fix}/include#fix}/include/hamlib#" \
		hamlib.pc.in || die "sed failed"

	# fix tcl lib path
	epatch "${FILESDIR}"/${PN}-1.2.11-bindings.diff

	eautoreconf
}

src_configure() {
	econf \
		--libdir=/usr/$(get_libdir)/hamlib \
		--disable-static \
		--with-rpc-backends \
		--without-perl-binding \
		$(use_with python python-binding) \
		$(use_enable tcl tcl-binding)
}

src_compile() {
	emake || 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"
	remove_libtool_files all

	dodoc AUTHORS NEWS PLAN README README.betatester \
		README.developer TODO || die "dodoc failed"

	if use doc; then
		dohtml doc/html/* || die "dohtml failed"
	fi

	insinto /usr/$(get_libdir)/pkgconfig
	doins hamlib.pc || die "doins failed"

	echo "LDPATH=/usr/$(get_libdir)/hamlib" > "${T}"/73hamlib
	doenvd "${T}"/73hamlib || die "doenvd failed"
}

pkg_postinst()  {
	use python && python_mod_optimize Hamlib.py
}

pkg_postrm()  {
	use python && python_mod_cleanup Hamlib.py
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: ChangeLog hamlib-1.2.14.ebuild
@ 2011-12-15  9:01 Thomas Beierlein (tomjbe)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Beierlein (tomjbe) @ 2011-12-15  9:01 UTC (permalink / raw
  To: gentoo-commits

tomjbe      11/12/15 09:01:06

  Modified:             ChangeLog hamlib-1.2.14.ebuild
  Log:
  Use only autotools-utils functions. Bug #392101
  
  (Portage version: 2.1.10.41/cvs/Linux i686)

Revision  Changes    Path
1.62                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	1 Sep 2011 18:42:33 -0000	1.61
+++ ChangeLog	15 Dec 2011 09:01:06 -0000	1.62
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/hamlib
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.61 2011/09/01 18:42:33 tomjbe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.62 2011/12/15 09:01:06 tomjbe Exp $
+
+  15 Dec 2011; Thomas Beierlein <tomjbe@gentoo.org> hamlib-1.2.14.ebuild:
+  Use only autotools-utils functions. Bug #392101
 
 *hamlib-1.2.14 (01 Sep 2011)
 



1.2                  media-libs/hamlib/hamlib-1.2.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?r1=1.1&r2=1.2

Index: hamlib-1.2.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hamlib-1.2.14.ebuild	1 Sep 2011 18:42:33 -0000	1.1
+++ hamlib-1.2.14.ebuild	15 Dec 2011 09:01:06 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v 1.1 2011/09/01 18:42:33 tomjbe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v 1.2 2011/12/15 09:01:06 tomjbe Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2"
@@ -29,6 +29,8 @@
 	>=sys-devel/libtool-2.2
 	doc? ( app-doc/doxygen )"
 
+DOCS=(AUTHORS NEWS PLAN README README.betatester README.developer TODO)
+
 pkg_setup() {
 	if use python; then
 		python_set_active_version 2
@@ -42,6 +44,9 @@
 		-e "s#fix}/include#fix}/include/hamlib#" \
 		hamlib.pc.in || die "sed failed"
 
+	# make building of documentation compatible with autotools-utils
+	sed -i -e "s/doc:/html:/g" doc/Makefile.am || die "sed failed"
+
 	# fix tcl lib path
 	epatch "${FILESDIR}"/${PN}-1.2.11-bindings.diff
 
@@ -49,36 +54,28 @@
 }
 
 src_configure() {
-	econf \
-		--libdir=/usr/$(get_libdir)/hamlib \
-		--disable-static \
-		--with-rpc-backends \
-		--without-perl-binding \
-		$(use_with python python-binding) \
+	local myeconfargs=(
+		--libdir=/usr/$(get_libdir)/hamlib
+		--disable-static
+		--with-rpc-backends
+		--without-perl-binding
+		$(use_with python python-binding)
 		$(use_enable tcl tcl-binding)
+	)
+	autotools-utils_src_configure
 }
 
 src_compile() {
-	emake || die "emake failed"
-
-	if use doc ; then
-		cd doc && make doc || die "make doc failed"
-	fi
+	autotools-utils_src_compile
+	use doc && autotools-utils_src_compile html
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
-	remove_libtool_files all
-
-	dodoc AUTHORS NEWS PLAN README README.betatester \
-		README.developer TODO || die "dodoc failed"
-
-	if use doc; then
-		dohtml doc/html/* || die "dohtml failed"
-	fi
+	use doc && HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/doc/html/")
+	autotools-utils_src_install
 
 	insinto /usr/$(get_libdir)/pkgconfig
-	doins hamlib.pc || die "doins failed"
+	doins "${AUTOTOOLS_BUILD_DIR}"/hamlib.pc || die "doins failed"
 
 	echo "LDPATH=/usr/$(get_libdir)/hamlib" > "${T}"/73hamlib
 	doenvd "${T}"/73hamlib || die "doenvd failed"






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: ChangeLog hamlib-1.2.14.ebuild
@ 2012-01-27 15:58 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-01-27 15:58 UTC (permalink / raw
  To: gentoo-commits

ago         12/01/27 15:58:24

  Modified:             ChangeLog hamlib-1.2.14.ebuild
  Log:
  Stable for amd64, wrt bug #400377
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.63                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	15 Dec 2011 09:01:06 -0000	1.62
+++ ChangeLog	27 Jan 2012 15:58:24 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/hamlib
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.62 2011/12/15 09:01:06 tomjbe Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.63 2012/01/27 15:58:24 ago Exp $
+
+  27 Jan 2012; Agostino Sarubbo <ago@gentoo.org> hamlib-1.2.14.ebuild:
+  Stable for amd64, wrt bug #400377
 
   15 Dec 2011; Thomas Beierlein <tomjbe@gentoo.org> hamlib-1.2.14.ebuild:
   Use only autotools-utils functions. Bug #392101



1.3                  media-libs/hamlib/hamlib-1.2.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?r1=1.2&r2=1.3

Index: hamlib-1.2.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hamlib-1.2.14.ebuild	15 Dec 2011 09:01:06 -0000	1.2
+++ hamlib-1.2.14.ebuild	27 Jan 2012 15:58:24 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v 1.2 2011/12/15 09:01:06 tomjbe Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v 1.3 2012/01/27 15:58:24 ago Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2"
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2 GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~x86 ~x86-fbsd"
 IUSE="doc python tcl"
 
 RESTRICT="test"






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: ChangeLog hamlib-1.2.14.ebuild
@ 2012-01-28 15:35 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-01-28 15:35 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/01/28 15:35:37

  Modified:             ChangeLog hamlib-1.2.14.ebuild
  Log:
  x86 stable wrt bug #400377
  
  (Portage version: 2.1.10.44/cvs/Linux i686)

Revision  Changes    Path
1.64                 media-libs/hamlib/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	27 Jan 2012 15:58:24 -0000	1.63
+++ ChangeLog	28 Jan 2012 15:35:37 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/hamlib
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.63 2012/01/27 15:58:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/ChangeLog,v 1.64 2012/01/28 15:35:37 phajdan.jr Exp $
+
+  28 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> hamlib-1.2.14.ebuild:
+  x86 stable wrt bug #400377
 
   27 Jan 2012; Agostino Sarubbo <ago@gentoo.org> hamlib-1.2.14.ebuild:
   Stable for amd64, wrt bug #400377



1.4                  media-libs/hamlib/hamlib-1.2.14.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild?r1=1.3&r2=1.4

Index: hamlib-1.2.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- hamlib-1.2.14.ebuild	27 Jan 2012 15:58:24 -0000	1.3
+++ hamlib-1.2.14.ebuild	28 Jan 2012 15:35:37 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v 1.3 2012/01/27 15:58:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/hamlib/hamlib-1.2.14.ebuild,v 1.4 2012/01/28 15:35:37 phajdan.jr Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2"
@@ -13,7 +13,7 @@
 
 LICENSE="LGPL-2 GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 x86 ~x86-fbsd"
 IUSE="doc python tcl"
 
 RESTRICT="test"






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-01-28 15:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-27 15:58 [gentoo-commits] gentoo-x86 commit in media-libs/hamlib: ChangeLog hamlib-1.2.14.ebuild Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-01-28 15:35 PaweA Hajdan (phajdan.jr)
2011-12-15  9:01 Thomas Beierlein (tomjbe)
2011-09-01 18:42 Thomas Beierlein (tomjbe)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox