net-libs/liquid-dsp: add live ebuild for testing
authorZero_Chaos <zerochaos@gentoo.org>
Thu, 23 Mar 2017 15:52:16 +0000 (11:52 -0400)
committerZero_Chaos <zerochaos@gentoo.org>
Thu, 23 Mar 2017 15:52:16 +0000 (11:52 -0400)
Package-Manager: Portage-2.3.4, Repoman-2.3.2

net-libs/liquid-dsp/liquid-dsp-1.3.0.ebuild
net-libs/liquid-dsp/liquid-dsp-9999.ebuild [new file with mode: 0644]

index 12ab22a06f3188a1b67b97cb37395721a92cd0b9..fcd3127de23e429e7646ab944a2d4d627c302e04 100644 (file)
@@ -7,11 +7,19 @@ inherit autotools multilib
 
 DESCRIPTION="digital signal processing library for software-defined radios"
 HOMEPAGE="http://liquidsdr.org"
-SRC_URI="https://github.com/jgaeddert/liquid-dsp/archive/v1.3.0.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+
+if [ "${PV}" = "9999" ]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/jgaeddert/liquid-dsp.git"
+       KEYWORDS=""
+else
+       KEYWORDS="~amd64 ~x86"
+       SRC_URI="https://github.com/jgaeddert/liquid-dsp/archive/v1.3.0.tar.gz -> ${P}.tar.gz"
+fi
+
 IUSE="static-libs"
 
 DEPEND="sci-libs/fftw:3.0="
diff --git a/net-libs/liquid-dsp/liquid-dsp-9999.ebuild b/net-libs/liquid-dsp/liquid-dsp-9999.ebuild
new file mode 100644 (file)
index 0000000..fcd3127
--- /dev/null
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools multilib
+
+DESCRIPTION="digital signal processing library for software-defined radios"
+HOMEPAGE="http://liquidsdr.org"
+
+LICENSE="MIT"
+SLOT="0"
+
+if [ "${PV}" = "9999" ]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/jgaeddert/liquid-dsp.git"
+       KEYWORDS=""
+else
+       KEYWORDS="~amd64 ~x86"
+       SRC_URI="https://github.com/jgaeddert/liquid-dsp/archive/v1.3.0.tar.gz -> ${P}.tar.gz"
+fi
+
+IUSE="static-libs"
+
+DEPEND="sci-libs/fftw:3.0="
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+       eapply_user
+       eautoreconf
+}
+
+src_configure() {
+       #without this rather odd looking bit, it installs libraries into /usr/usr/$(get_libdir)
+       #what is super special is that if exec-prefix is unset, libdir is lib64...
+       #but if exec-prefix is default then libdir ends up as /usr/lib64 in makefile...
+       econf --exec-prefix="" --libdir="/usr/$(get_libdir)"
+}
+
+src_install() {
+       default
+       ! use static-libs && rm "${ED}"/usr/"$(get_libdir)"/libliquid.a
+}