diff options
author | Henrik Brix Andersen <brix@gentoo.org> | 2006-01-15 13:43:35 +0000 |
---|---|---|
committer | Henrik Brix Andersen <brix@gentoo.org> | 2006-01-15 13:43:35 +0000 |
commit | 094286c914deb59fa899b082fe03ab5fec15b65b (patch) | |
tree | 9016d6156e262a1c89f7bd3aea0a88b6b664afd1 /app-laptop | |
parent | Drop old version. (diff) | |
download | historical-094286c914deb59fa899b082fe03ab5fec15b65b.tar.gz historical-094286c914deb59fa899b082fe03ab5fec15b65b.tar.bz2 historical-094286c914deb59fa899b082fe03ab5fec15b65b.zip |
Version bump, bug #118979.
Package-Manager: portage-2.0.53
Diffstat (limited to 'app-laptop')
-rw-r--r-- | app-laptop/tp_smapi/ChangeLog | 9 | ||||
-rw-r--r-- | app-laptop/tp_smapi/Manifest | 4 | ||||
-rw-r--r-- | app-laptop/tp_smapi/files/digest-tp_smapi-0.16 | 1 | ||||
-rw-r--r-- | app-laptop/tp_smapi/tp_smapi-0.16.ebuild | 42 |
4 files changed, 53 insertions, 3 deletions
diff --git a/app-laptop/tp_smapi/ChangeLog b/app-laptop/tp_smapi/ChangeLog index 06b2f32ada69..d6d2e7b543d5 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.4 2005/12/28 10:16:12 brix Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/tp_smapi/ChangeLog,v 1.5 2006/01/15 13:43:35 brix Exp $ + +*tp_smapi-0.16 (15 Jan 2006) + + 15 Jan 2006; Henrik Brix Andersen <brix@gentoo.org> +tp_smapi-0.16.ebuild: + Version bump, bug #118979. *tp_smapi-0.13 (28 Dec 2005) diff --git a/app-laptop/tp_smapi/Manifest b/app-laptop/tp_smapi/Manifest index bfb200c7808c..d18c27215216 100644 --- a/app-laptop/tp_smapi/Manifest +++ b/app-laptop/tp_smapi/Manifest @@ -1,10 +1,12 @@ -MD5 aa10e024e7962f8990e8129df1f48354 ChangeLog 737 +MD5 137dd51639e741108b0fa73d13b4f6c5 ChangeLog 874 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 MD5 998c3b5bb9e1c64b69b5778cd369fac4 files/digest-tp_smapi-0.13 61 +MD5 2569d6577cbb1ba0de79bd96fb04ffdc files/digest-tp_smapi-0.16 61 MD5 b280eebc74d70d85e664debf1adce2c3 metadata.xml 255 MD5 666f60fc9240a3097a5c69f242dfab90 tp_smapi-0.09.ebuild 758 MD5 a321749b92e57b4bc3059af495bae535 tp_smapi-0.10.ebuild 758 MD5 d1a33ec0e5954c109ccc19f52d654cd5 tp_smapi-0.12.ebuild 758 MD5 3794ac7eea9a858ee4ceb7e09334cd12 tp_smapi-0.13.ebuild 893 +MD5 f100ef3eedd8ace5e4213e384448f459 tp_smapi-0.16.ebuild 893 diff --git a/app-laptop/tp_smapi/files/digest-tp_smapi-0.16 b/app-laptop/tp_smapi/files/digest-tp_smapi-0.16 new file mode 100644 index 000000000000..561b7180091f --- /dev/null +++ b/app-laptop/tp_smapi/files/digest-tp_smapi-0.16 @@ -0,0 +1 @@ +MD5 c4ed0ec65eb9f3f04c69979cdbe13aa5 tp_smapi-0.16.tgz 24376 diff --git a/app-laptop/tp_smapi/tp_smapi-0.16.ebuild b/app-laptop/tp_smapi/tp_smapi-0.16.ebuild new file mode 100644 index 000000000000..f214497d1bea --- /dev/null +++ b/app-laptop/tp_smapi/tp_smapi-0.16.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2006 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.16.ebuild,v 1.1 2006/01/15 13:43:35 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="hdaps" + +BUILD_TARGETS="default" + +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 + + MODULE_NAMES="tp_base(extra:) tp_smapi(extra:)" + BUILD_PARAMS="KSRC=${KV_DIR}" + + if use hdaps; then + MODULE_NAMES="${MODULE_NAMES} hdaps(extra:)" + BUILD_PARAMS="${BUILD_PARAMS} HDAPS=1" + fi +} + +src_install() { + linux-mod_src_install + + dodoc CHANGES README +} |