diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-06-24 20:58:10 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-06-24 20:58:10 +0000 |
commit | 1d0482d8ea792a79e45507af8624174d29092977 (patch) | |
tree | 738cf42e1449c7f5149f34210e3faf33d3b738ef /sci-misc/oww | |
parent | stable amd64, bug 317931 (diff) | |
download | gentoo-2-1d0482d8ea792a79e45507af8624174d29092977.tar.gz gentoo-2-1d0482d8ea792a79e45507af8624174d29092977.tar.bz2 gentoo-2-1d0482d8ea792a79e45507af8624174d29092977.zip |
Version Bump, removed old version, included updates for 286165
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-misc/oww')
-rw-r--r-- | sci-misc/oww/ChangeLog | 10 | ||||
-rw-r--r-- | sci-misc/oww/oww-0.81.9.ebuild | 32 | ||||
-rw-r--r-- | sci-misc/oww/oww-0.82.1.ebuild | 23 | ||||
-rw-r--r-- | sci-misc/oww/oww-0.83.2.ebuild | 40 |
4 files changed, 59 insertions, 46 deletions
diff --git a/sci-misc/oww/ChangeLog b/sci-misc/oww/ChangeLog index c6ad8d737dbf..992c1c934a6b 100644 --- a/sci-misc/oww/ChangeLog +++ b/sci-misc/oww/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-misc/oww -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/oww/ChangeLog,v 1.6 2008/07/07 09:06:38 bicatali Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/oww/ChangeLog,v 1.7 2010/06/24 20:58:10 jlec Exp $ + +*oww-0.83.2 (24 Jun 2010) + + 24 Jun 2010; Justin Lecher <jlec@gentoo.org> -oww-0.81.9.ebuild, + oww-0.82.1.ebuild, +oww-0.83.2.ebuild: + Version Bump, removed old version, included updates for 286165 *oww-0.82.1 (07 Jul 2008) diff --git a/sci-misc/oww/oww-0.81.9.ebuild b/sci-misc/oww/oww-0.81.9.ebuild deleted file mode 100644 index 940ed55614d0..000000000000 --- a/sci-misc/oww/oww-0.81.9.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/oww/oww-0.81.9.ebuild,v 1.1 2006/11/30 00:02:40 markusle Exp $ - -DESCRIPTION="A one-wire weather station for Dallas Semiconductor" -HOMEPAGE="http://oww.sourceforge.net/" - -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="Artistic" -SLOT="0" -IUSE="" -KEYWORDS="~x86" - -DEPEND=">=x11-libs/gtk+-2.6 - net-misc/curl" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -e "s:doc/oww:doc/${P}/:" -i Makefile.in || \ - die "Failed to fix doc install path" -} - -src_compile() { - econf --enable-interactive || die "Failed during configure" - emake || die "Failed during make." -} - -src_install () { - make DESTDIR="${D}" install || die "Failed during install." -} diff --git a/sci-misc/oww/oww-0.82.1.ebuild b/sci-misc/oww/oww-0.82.1.ebuild index 9835a9580a65..d0229fe5d711 100644 --- a/sci-misc/oww/oww-0.82.1.ebuild +++ b/sci-misc/oww/oww-0.82.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/oww/oww-0.82.1.ebuild,v 1.1 2008/07/07 09:06:38 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/oww/oww-0.82.1.ebuild,v 1.2 2010/06/24 20:58:10 jlec Exp $ -EAPI=1 +EAPI="3" DESCRIPTION="A one-wire weather station for Dallas Semiconductor" HOMEPAGE="http://oww.sourceforge.net/" @@ -10,17 +10,16 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="Artistic" SLOT="0" -IUSE="nls" +IUSE="gtk nls usb" KEYWORDS="~amd64 ~x86" -RDEPEND="x11-libs/gtk+:2 - net-misc/curl" +RDEPEND=" + net-misc/curl + x11-libs/gtk+:2" DEPEND="${RDEPEND} dev-util/pkgconfig" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { sed -i \ -e "s:doc/oww:share/doc/${PF}/:" \ -e '/COPYING\\/d' \ @@ -28,12 +27,12 @@ src_unpack() { Makefile.in || die "Failed to fix doc install path" } -src_compile() { +src_configure() { econf \ --enable-interactive \ $(use_enable nls) \ - || die "econf failed" - emake || die "emake failed" + $(use_enable gtk gui) \ + $(use_with usb) } src_install () { diff --git a/sci-misc/oww/oww-0.83.2.ebuild b/sci-misc/oww/oww-0.83.2.ebuild new file mode 100644 index 000000000000..e801d524b661 --- /dev/null +++ b/sci-misc/oww/oww-0.83.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/oww/oww-0.83.2.ebuild,v 1.1 2010/06/24 20:58:10 jlec Exp $ + +EAPI="3" + +DESCRIPTION="A one-wire weather station for Dallas Semiconductor" +HOMEPAGE="http://oww.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="Artistic" +SLOT="0" +IUSE="gtk nls usb" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + net-misc/curl + x11-libs/gtk+:2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_prepare() { + sed -i \ + -e "s:doc/oww:share/doc/${PF}/:" \ + -e '/COPYING\\/d' \ + -e '/INSTALL\\/d' \ + Makefile.in || die "Failed to fix doc install path" +} + +src_configure() { + econf \ + --enable-interactive \ + $(use_enable nls) \ + $(use_enable gtk gui) \ + $(use_with usb) +} + +src_install () { + emake DESTDIR="${D}" install || die "emake install failed" +} |