diff options
author | Ian Leitch <port001@gentoo.org> | 2003-12-13 23:38:04 +0000 |
---|---|---|
committer | Ian Leitch <port001@gentoo.org> | 2003-12-13 23:38:04 +0000 |
commit | 4053de66e68e7d5dedb65ce12adc394138445ea6 (patch) | |
tree | 757377eb731489f2223cec1d1a21b91ffe31c743 /x11-misc/temperature-app | |
parent | initial commit - #21279 (diff) | |
download | gentoo-2-4053de66e68e7d5dedb65ce12adc394138445ea6.tar.gz gentoo-2-4053de66e68e7d5dedb65ce12adc394138445ea6.tar.bz2 gentoo-2-4053de66e68e7d5dedb65ce12adc394138445ea6.zip |
initial commit - #21279
Diffstat (limited to 'x11-misc/temperature-app')
-rw-r--r-- | x11-misc/temperature-app/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/temperature-app/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/temperature-app/files/digest-temperature-app-1.4 | 1 | ||||
-rw-r--r-- | x11-misc/temperature-app/metadata.xml | 5 | ||||
-rw-r--r-- | x11-misc/temperature-app/temperature-app-1.4.ebuild | 30 |
5 files changed, 48 insertions, 1 deletions
diff --git a/x11-misc/temperature-app/ChangeLog b/x11-misc/temperature-app/ChangeLog new file mode 100644 index 000000000000..af9da68bfa7f --- /dev/null +++ b/x11-misc/temperature-app/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for x11-misc/temperature-app +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/temperature-app/ChangeLog,v 1.1 2003/12/13 23:38:00 port001 Exp $ + +*temperature-app-1.4 (13 Dec 2003) + + 13 Dec 2003; Ian Leitch <port001@gentoo.org> temperature-app-1.4.ebuild: + Initial commit, thanks to Jeff Stuart <jstuart@computer-city.net> - #21279 + diff --git a/x11-misc/temperature-app/Manifest b/x11-misc/temperature-app/Manifest index 8379f80a8a37..72a8d385be62 100644 --- a/x11-misc/temperature-app/Manifest +++ b/x11-misc/temperature-app/Manifest @@ -1,2 +1,4 @@ -MD5 e67e1960642476a090f4552ff57967b9 temperature-app-1.4.ebuild 763 +MD5 46a8c8981472e82caf6bd563e83d6b7c temperature-app-1.4.ebuild 789 +MD5 0db4df0ccd6118e59970e6c9e1fa780e ChangeLog 420 +MD5 fe402b096905cae8dcb4a503d3a838ac metadata.xml 173 MD5 b8e51aded153036aac5f2b5575655adf files/digest-temperature-app-1.4 70 diff --git a/x11-misc/temperature-app/files/digest-temperature-app-1.4 b/x11-misc/temperature-app/files/digest-temperature-app-1.4 new file mode 100644 index 000000000000..1f2d883ea695 --- /dev/null +++ b/x11-misc/temperature-app/files/digest-temperature-app-1.4 @@ -0,0 +1 @@ +MD5 fefedf57fb7ab799202b10a07bec2806 Temperature.app-1.4.tar.gz 16747 diff --git a/x11-misc/temperature-app/metadata.xml b/x11-misc/temperature-app/metadata.xml new file mode 100644 index 000000000000..2518313f5241 --- /dev/null +++ b/x11-misc/temperature-app/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>desktop-misc</herd> +</pkgmetadata> diff --git a/x11-misc/temperature-app/temperature-app-1.4.ebuild b/x11-misc/temperature-app/temperature-app-1.4.ebuild new file mode 100644 index 000000000000..164b58710a2c --- /dev/null +++ b/x11-misc/temperature-app/temperature-app-1.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/temperature-app/temperature-app-1.4.ebuild,v 1.1 2003/12/13 23:38:00 port001 Exp $ + +IUSE="" + +MY_PN=${PN/-/.} +MY_PN=${MY_PN/t/T} +S="${WORKDIR}/${MY_PN}-${PV}" + +DESCRIPTION="Temperature.app is a Window Maker dockapp to display the local temperature in either celsius or farenheit." +SRC_URI="http://www.fukt.bth.se/~per/temperature/${MY_PN}-${PV}.tar.gz" +HOMEPAGE="http://www.fukt.bth.se/~per/temperature/" + +DEPEND="virtual/x11 + net-misc/wget + media-libs/xpm" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +src_compile() { + emake || die "make failed" +} + +src_install () { + dobin Temperature.app + dodoc COPYING README INSTALL ChangeLog +} |