diff options
author | Henrik Brix Andersen <brix@gentoo.org> | 2005-12-17 15:22:57 +0000 |
---|---|---|
committer | Henrik Brix Andersen <brix@gentoo.org> | 2005-12-17 15:22:57 +0000 |
commit | 7d2df8100de146d54c720b6492572463d41bea37 (patch) | |
tree | 1ea388e222d4b5c0972d4d9607c11b25e8782ec7 /app-laptop | |
parent | Add a notice informing of the default cache format with a suggestion to run `... (diff) | |
download | gentoo-2-7d2df8100de146d54c720b6492572463d41bea37.tar.gz gentoo-2-7d2df8100de146d54c720b6492572463d41bea37.tar.bz2 gentoo-2-7d2df8100de146d54c720b6492572463d41bea37.zip |
Version bump, bug #115766.
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'app-laptop')
-rw-r--r-- | app-laptop/tp_smapi/ChangeLog | 7 | ||||
-rw-r--r-- | app-laptop/tp_smapi/Manifest | 4 | ||||
-rw-r--r-- | app-laptop/tp_smapi/files/digest-tp_smapi-0.12 | 1 | ||||
-rw-r--r-- | app-laptop/tp_smapi/tp_smapi-0.12.ebuild | 37 |
4 files changed, 47 insertions, 2 deletions
diff --git a/app-laptop/tp_smapi/ChangeLog b/app-laptop/tp_smapi/ChangeLog index 8678db435313..589c6f01e112 100644 --- a/app-laptop/tp_smapi/ChangeLog +++ b/app-laptop/tp_smapi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-laptop/tp_smapi # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/tp_smapi/ChangeLog,v 1.2 2005/12/14 09:57:41 brix Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/tp_smapi/ChangeLog,v 1.3 2005/12/17 15:22:57 brix Exp $ + +*tp_smapi-0.12 (17 Dec 2005) + + 17 Dec 2005; Henrik Brix Andersen <brix@gentoo.org> +tp_smapi-0.12.ebuild: + Version bump, bug #115766. *tp_smapi-0.10 (14 Dec 2005) diff --git a/app-laptop/tp_smapi/Manifest b/app-laptop/tp_smapi/Manifest index 49f61e0c6511..ebb09c7c287c 100644 --- a/app-laptop/tp_smapi/Manifest +++ b/app-laptop/tp_smapi/Manifest @@ -1,6 +1,8 @@ MD5 666f60fc9240a3097a5c69f242dfab90 tp_smapi-0.09.ebuild 758 MD5 a321749b92e57b4bc3059af495bae535 tp_smapi-0.10.ebuild 758 -MD5 fb0850290ed7f9227dd4b48607b72d97 ChangeLog 476 +MD5 157481d0aa221a53e7cc7b94e923881e tp_smapi-0.12.ebuild 658 +MD5 3a5e197174da6eb25394eae00fdf9cf9 ChangeLog 613 MD5 b280eebc74d70d85e664debf1adce2c3 metadata.xml 255 MD5 4d7f53e3ed49793eab511c3f2b3bddb4 files/digest-tp_smapi-0.09 61 MD5 f18aaa92ad22a269103dbf2c2e1b456b files/digest-tp_smapi-0.10 61 +MD5 fa7a6dd24bc902e937c5ff2d8a0d0e6d files/digest-tp_smapi-0.12 61 diff --git a/app-laptop/tp_smapi/files/digest-tp_smapi-0.12 b/app-laptop/tp_smapi/files/digest-tp_smapi-0.12 new file mode 100644 index 000000000000..9196fd64825b --- /dev/null +++ b/app-laptop/tp_smapi/files/digest-tp_smapi-0.12 @@ -0,0 +1 @@ +MD5 b4e4bd25f6aa1696f83de2f9416da650 tp_smapi-0.12.tgz 13907 diff --git a/app-laptop/tp_smapi/tp_smapi-0.12.ebuild b/app-laptop/tp_smapi/tp_smapi-0.12.ebuild new file mode 100644 index 000000000000..eab110eafb22 --- /dev/null +++ b/app-laptop/tp_smapi/tp_smapi-0.12.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/tp_smapi/tp_smapi-0.12.ebuild,v 1.1 2005/12/17 15:22:57 brix Exp $ + +inherit linux-mod + +DESCRIPTION="IBM ThinkPad SMAPI BIOS driver" +HOMEPAGE="http://tpctl.sourceforge.net/" +SRC_URI="mirror://sourceforge/tpctl/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" + +BUILD_TARGETS="default" +MODULE_NAMES="tp_smapi(extra:)" + +pkg_setup() { + linux-mod_pkg_setup + + if kernel_is lt 2 6 13; then + eerror + eerror "${P} requires Linux kernel 2.6.13 or above." + eerror + die "Unsupported kernel version" + fi + + BUILD_PARAMS="KDIR=${KV_DIR}" +} + +src_install() { + linux-mod_src_install + + dodoc CHANGES README +} |