diff options
author | Karol Wojtaszek <sekretarz@gentoo.org> | 2004-08-04 21:39:54 +0000 |
---|---|---|
committer | Karol Wojtaszek <sekretarz@gentoo.org> | 2004-08-04 21:39:54 +0000 |
commit | e1450324fde479c629a7b0af456cb64094629a1b (patch) | |
tree | a1aa3de11eee44c3b4146a914242e88b23c9cc87 /app-laptop/i8kutils | |
parent | fixed opencdk dep. people should fix the deps rather than leave comments in t... (diff) | |
download | gentoo-2-e1450324fde479c629a7b0af456cb64094629a1b.tar.gz gentoo-2-e1450324fde479c629a7b0af456cb64094629a1b.tar.bz2 gentoo-2-e1450324fde479c629a7b0af456cb64094629a1b.zip |
Version bump, BUG #53895
Diffstat (limited to 'app-laptop/i8kutils')
-rw-r--r-- | app-laptop/i8kutils/ChangeLog | 7 | ||||
-rw-r--r-- | app-laptop/i8kutils/files/digest-i8kutils-1.25 | 1 | ||||
-rw-r--r-- | app-laptop/i8kutils/i8kutils-1.25.ebuild | 41 |
3 files changed, 48 insertions, 1 deletions
diff --git a/app-laptop/i8kutils/ChangeLog b/app-laptop/i8kutils/ChangeLog index ada6481b4661..b6356c567d5f 100644 --- a/app-laptop/i8kutils/ChangeLog +++ b/app-laptop/i8kutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-laptop/i8kutils # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v 1.3 2004/06/24 21:58:24 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v 1.4 2004/08/04 21:39:54 sekretarz Exp $ + +*i8kutils-1.25 (04 Aug 2004) + + 04 Aug 2004; Karol Wojtaszek <sekretarz@gentoo.org> +i8kutils-1.25.ebuild: + Version bump, fixing SRC_URI *i8kutils-1.17 (08 Mar 2004) diff --git a/app-laptop/i8kutils/files/digest-i8kutils-1.25 b/app-laptop/i8kutils/files/digest-i8kutils-1.25 new file mode 100644 index 000000000000..47d2ba6514c9 --- /dev/null +++ b/app-laptop/i8kutils/files/digest-i8kutils-1.25 @@ -0,0 +1 @@ +MD5 50c03dde689c5709406118a7c6c120db i8kutils_1.25.tar.gz 40528 diff --git a/app-laptop/i8kutils/i8kutils-1.25.ebuild b/app-laptop/i8kutils/i8kutils-1.25.ebuild new file mode 100644 index 000000000000..72258b04ed8d --- /dev/null +++ b/app-laptop/i8kutils/i8kutils-1.25.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/i8kutils-1.25.ebuild,v 1.1 2004/08/04 21:39:54 sekretarz Exp $ + + + +DESCRIPTION="Dell Inspiron and Latitude utilities" +HOMEPAGE="http://people.debian.org/~dz/i8k/" +SRC_URI="http://people.debian.org/~dz/i8k/${P/-/_}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="tcltk" + +DEPEND="virtual/libc + virtual/x11 + >=dev-lang/tk-8.3.3" + +src_compile() { + make all || die +} + +src_install() { + dobin i8kbuttons i8kctl i8kfan i8kmon + use tcltk && dobin i8kmon + doman i8kbuttons.1 i8kctl.1 + use tcltk && doman i8kmon.1 + use tcltk && dosym /usr/bin/i8kctl /usr/bin/i8kfan + dodoc README.i8kutils + dodoc i8kmon.conf + dodoc Configure.help.i8k + docinto examples/ + dodoc examples/* + + insinto /etc/init.d + newins ${FILESDIR}/i8k.init i8k + fperms 755 /etc/init.d/i8k + insinto /etc/conf.d + newins ${FILESDIR}/i8k.conf i8k +} |