diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-07-07 09:06:38 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-07-07 09:06:38 +0000 |
commit | 053d363e1331f1c0a635f5164acbe4983108f7ee (patch) | |
tree | ce05e36184f8d96979a50a4327424bb35416ee91 /sci-misc/oww | |
parent | Update the pkg_postinst message again, so that anybody with DONT_MOUNT_BOOT g... (diff) | |
download | gentoo-2-053d363e1331f1c0a635f5164acbe4983108f7ee.tar.gz gentoo-2-053d363e1331f1c0a635f5164acbe4983108f7ee.tar.bz2 gentoo-2-053d363e1331f1c0a635f5164acbe4983108f7ee.zip |
Version bump, closing bug #231003
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-misc/oww')
-rw-r--r-- | sci-misc/oww/ChangeLog | 9 | ||||
-rw-r--r-- | sci-misc/oww/oww-0.82.1.ebuild | 41 |
2 files changed, 48 insertions, 2 deletions
diff --git a/sci-misc/oww/ChangeLog b/sci-misc/oww/ChangeLog index b6c109e6bae4..c6ad8d737dbf 100644 --- a/sci-misc/oww/ChangeLog +++ b/sci-misc/oww/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-misc/oww -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/oww/ChangeLog,v 1.5 2006/12/21 06:45:51 compnerd Exp $ +# 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 $ + +*oww-0.82.1 (07 Jul 2008) + + 07 Jul 2008; Sébastien Fabbro <bicatali@gentoo.org> +oww-0.82.1.ebuild: + Version bump, closing bug #231003 21 Dec 2006; Saleem Abdulrasool <compnerd@gentoo.org> -oww-0.71.1.ebuild: gnome-1.x removal diff --git a/sci-misc/oww/oww-0.82.1.ebuild b/sci-misc/oww/oww-0.82.1.ebuild new file mode 100644 index 000000000000..9835a9580a65 --- /dev/null +++ b/sci-misc/oww/oww-0.82.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2008 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 $ + +EAPI=1 +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="nls" +KEYWORDS="~amd64 ~x86" + +RDEPEND="x11-libs/gtk+:2 + net-misc/curl" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_unpack() { + unpack ${A} + cd "${S}" + 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_compile() { + econf \ + --enable-interactive \ + $(use_enable nls) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install () { + emake DESTDIR="${D}" install || die "emake install failed" +} |