diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-10-30 09:44:21 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-10-30 09:44:21 +0000 |
commit | 6bc9467b84ac9a97dff2df636023cc2da2efb609 (patch) | |
tree | ae7942b1a1b811bc258a3329b0f1753515aa0ed8 /app-misc | |
parent | Bump (diff) | |
download | gentoo-2-6bc9467b84ac9a97dff2df636023cc2da2efb609.tar.gz gentoo-2-6bc9467b84ac9a97dff2df636023cc2da2efb609.tar.bz2 gentoo-2-6bc9467b84ac9a97dff2df636023cc2da2efb609.zip |
Version bump.
(Portage version: 2.2.0_alpha141/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/fslurp/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/fslurp/files/fslurp-2.1.2-makefile.patch | 41 | ||||
-rw-r--r-- | app-misc/fslurp/fslurp-2.1.2.ebuild | 29 |
3 files changed, 77 insertions, 1 deletions
diff --git a/app-misc/fslurp/ChangeLog b/app-misc/fslurp/ChangeLog index 88dbe0fb1630..e4b80dbeee22 100644 --- a/app-misc/fslurp/ChangeLog +++ b/app-misc/fslurp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-misc/fslurp # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/fslurp/ChangeLog,v 1.3 2012/09/05 04:48:04 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/fslurp/ChangeLog,v 1.4 2012/10/30 09:44:20 radhermit Exp $ + +*fslurp-2.1.2 (30 Oct 2012) + + 30 Oct 2012; Tim Harder <radhermit@gentoo.org> +fslurp-2.1.2.ebuild, + +files/fslurp-2.1.2-makefile.patch: + Version bump. *fslurp-0.9 (05 Sep 2012) diff --git a/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch b/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch new file mode 100644 index 000000000000..487bb1fc0e6a --- /dev/null +++ b/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch @@ -0,0 +1,41 @@ +--- fslurp-2.1.2/Makefile ++++ fslurp-2.1.2/Makefile +@@ -46,31 +46,31 @@ + SIMINCLUDES = simulator.h + + #DEBUGFLAGS = -g +-CFLAGS = -c -Wall $(DEBUGFLAGS) ++CFLAGS += -c -Wall $(DEBUGFLAGS) + +-LDFLAGS = -lm ++LIBS = -lm + + VERSION := fslurp-$(shell tail -1 version) + + all: $(TARGETS) + + fslurp: $(FSLURP_OBJS) +- $(CC) $(LDFLAGS) $^ -o $@ ++ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS) + + simSolarNet2i1s: \ + $(SIMSOLARNET2I1S_OBJS) +- $(CC) $(LDFLAGS) $^ -o $@ ++ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS) + + simSolarNet1i0s: \ + $(SIMSOLARNET1I0S_OBJS) +- $(CC) $(LDFLAGS) $^ -o $@ ++ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS) + + simSolarNet0i0s: \ + $(SIMSOLARNET0I0S_OBJS) +- $(CC) $(LDFLAGS) $^ -o $@ ++ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS) + + simIFCEasy: $(SIMIFCEASY_OBJS) +- $(CC) $(LDFLAGS) $^ -o $@ ++ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS) + + test: $(TARGETS) clean + ./testcase.sh diff --git a/app-misc/fslurp/fslurp-2.1.2.ebuild b/app-misc/fslurp/fslurp-2.1.2.ebuild new file mode 100644 index 000000000000..a6558620568a --- /dev/null +++ b/app-misc/fslurp/fslurp-2.1.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/fslurp/fslurp-2.1.2.ebuild,v 1.1 2012/10/30 09:44:21 radhermit Exp $ + +EAPI=5 + +inherit eutils toolchain-funcs + +DESCRIPTION="Read and display data from Fronius IG and IG Plus inverters" +HOMEPAGE="http://fslurp.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_prepare() { + epatch "${FILESDIR}"/${P}-makefile.patch +} + +src_compile() { + emake CC="$(tc-getCXX)" +} + +src_install() { + dobin ${PN} + dodoc History README TODO +} |