From a2ee462f395c1265e4869b6b3a1624b0b3006c37 Mon Sep 17 00:00:00 2001 From: Tim Yamin Date: Tue, 10 Feb 2004 07:54:39 +0000 Subject: Version bump; closes bug #41043. --- sys-apps/lm-sensors/ChangeLog | 8 +- .../files/digest-lm-sensors-2.8.3.20040202 | 1 - sys-apps/lm-sensors/files/digest-lm-sensors-2.8.4 | 1 + .../lm-sensors/lm-sensors-2.8.3.20040202.ebuild | 138 --------------------- sys-apps/lm-sensors/lm-sensors-2.8.4.ebuild | 138 +++++++++++++++++++++ 5 files changed, 146 insertions(+), 140 deletions(-) delete mode 100644 sys-apps/lm-sensors/files/digest-lm-sensors-2.8.3.20040202 create mode 100644 sys-apps/lm-sensors/files/digest-lm-sensors-2.8.4 delete mode 100644 sys-apps/lm-sensors/lm-sensors-2.8.3.20040202.ebuild create mode 100644 sys-apps/lm-sensors/lm-sensors-2.8.4.ebuild (limited to 'sys-apps/lm-sensors') diff --git a/sys-apps/lm-sensors/ChangeLog b/sys-apps/lm-sensors/ChangeLog index 309d1f26ee3f..20c1f5e48ef8 100644 --- a/sys-apps/lm-sensors/ChangeLog +++ b/sys-apps/lm-sensors/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/lm-sensors # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm-sensors/ChangeLog,v 1.19 2004/02/03 23:34:00 plasmaroo Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm-sensors/ChangeLog,v 1.20 2004/02/10 07:54:39 plasmaroo Exp $ + +*lm-sensors-2.8.4 (10 Feb 2004) + + 10 Feb 2004; lm-sensors-2.8.3.20040202.ebuild, + lm-sensors-2.8.4.ebuild: + Version bump; closes bug #41043. *lm-sensors-2.8.3.20040202 (03 Feb 2004) diff --git a/sys-apps/lm-sensors/files/digest-lm-sensors-2.8.3.20040202 b/sys-apps/lm-sensors/files/digest-lm-sensors-2.8.3.20040202 deleted file mode 100644 index f8b430a61f66..000000000000 --- a/sys-apps/lm-sensors/files/digest-lm-sensors-2.8.3.20040202 +++ /dev/null @@ -1 +0,0 @@ -MD5 b29e4db0adce852220ff9aaa939cc928 lm_sensors-2.8.3.20040202.tar.bz2 566758 diff --git a/sys-apps/lm-sensors/files/digest-lm-sensors-2.8.4 b/sys-apps/lm-sensors/files/digest-lm-sensors-2.8.4 new file mode 100644 index 000000000000..253a64e6623d --- /dev/null +++ b/sys-apps/lm-sensors/files/digest-lm-sensors-2.8.4 @@ -0,0 +1 @@ +MD5 e1c317d116234f3767d0bcd6817bf7a4 lm_sensors-2.8.4.tar.gz 725164 diff --git a/sys-apps/lm-sensors/lm-sensors-2.8.3.20040202.ebuild b/sys-apps/lm-sensors/lm-sensors-2.8.3.20040202.ebuild deleted file mode 100644 index 2fcc5c46f80d..000000000000 --- a/sys-apps/lm-sensors/lm-sensors-2.8.3.20040202.ebuild +++ /dev/null @@ -1,138 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm-sensors/lm-sensors-2.8.3.20040202.ebuild,v 1.1 2004/02/03 23:34:00 plasmaroo Exp $ - -inherit flag-o-matic - -MY_P=${PN/-/_}-${PV} -S="${WORKDIR}/${MY_P}" -MYI2C="${WORKDIR}/i2c-headers" - -DESCRIPTION="Hardware Sensors Monitoring by lm_sensors" -SRC_URI="http://dev.gentoo.org/~plasmaroo/patches/${PN}/${MY_P}.tar.bz2" -HOMEPAGE="http://www2.lm-sensors.nu/~lm78" - -SLOT="${KV}" - -KEYWORDS="~x86 ~amd64 -ppc -sparc" -LICENSE="GPL-2" - -DEPEND="" - -src_unpack() { - unpack ${A} || die - cd ${S} || die - epatch ${FILESDIR}/${PN}-2.8.2-sensors-detect-gentoo.diff > /dev/null || die - - # Get the right I2C includes without dropping the kernel includes - mkdir -p ${MYI2C}/linux - cp /usr/include/linux/i2c* ${MYI2C}/linux/ -} - -src_compile() { - echo - einfo "*****************************************************************" - einfo - einfo "This ebuild assumes your /usr/src/linux kernel is the one you" - einfo "used to build i2c-2.8.2." - einfo - einfo "For 2.5+ series kernels, use the support already in the kernel" - einfo "under 'Character devices' -> 'I2C support' and then merge this" - einfo "ebuild." - einfo - einfo "To cross-compile, 'export LINUX=\"/lib/modules//build\"'" - einfo "or symlink /usr/src/linux to another kernel." - einfo - einfo "*****************************************************************" - echo - - UserModeOnly=false - if [ "$LINUX" != "" ]; then - einfo "Cross-compiling using:- $LINUX" - LINUX=`echo $LINUX | sed 's/build\//build/'` - KV=`cut -d\ -f3 ${LINUX}include/linux/version.h | grep \" | sed -e 's/"//' -e 's/"//'` - if [ "${KV}" == "" ]; then - die "Could not get kernel version; make sure ${LINUX}include/linux/version.h is there!" - fi - else - LINUX='/usr/src/linux' - check_KV || die "Cannot find kernel in /usr/src/linux!" - einfo "Using kernel in /usr/src/linux/:- ${KV}" - fi - if [ `echo ${KV} | grep 2\.[56]\.` ]; then - einfo "You are using a 2.5 / 2.6 series kernel; only building utilities..." - UserModeOnly=true - else - einfo "You are using a `echo ${KV} | cut -d. -f-2` series kernel; building everything..." - fi - if [ "${KV}" != "${SLOT}" ]; then - echo - ewarn "WARNING:- Specified and running kernels do not match!" - ewarn "WARNING:- This package will be slotted as ${SLOT}!" - fi - - if [ ! -e ${MYI2C}/linux/i2c.h ]; then - cp $LINUX/include/linux/i2c* ${MYI2C}/linux || die "No I2C Includes! Install I2C!" - fi - - echo; einfo "You may safely ignore any errors from compilation" - einfo "that contain 'No such file' references." - - echo - filter-flags -fPIC -fstack-protector - - cd ${S} - emake clean - - if [ ${UserModeOnly} == true ]; then - emake CC=${CC} I2C_HEADERS=${MYI2C} user || die "Could not compile user-mode utilities!" - else - emake CC=${CC} I2C_HEADERS=${MYI2C} LINUX=$LINUX || die "lm_sensors requires the source of a compatible kernel version in /usr/src/linux or specified in \$LINUX and >=i2c-2.8.1 support built as modules. Make sure that I2C >=2.8.1 is on your system before filing a bug." - fi -} - -src_install() { - - mkdir -p ${D}/usr/bin - mkdir -p ${D}/usr/sbin - if [ ${UserModeOnly} == true ]; then - emake DESTDIR=${D} PREFIX=${D}/usr MANDIR=${D}/usr/share/man user_install || die "Install failed!" - else - emake LINUX=$LINUX DESTDIR=${D} PREFIX=${D}/usr MANDIR=${D}/usr/share/man install || die "Install failed!" - fi - cp ${D}/${D}* ${D} -Rf - rm ${D}/var -Rf - - exeinto /etc/init.d - newexe ${FILESDIR}/rc lm_sensors - dodoc BACKGROUND BUGS CHANGES CONTRIBUTORS COPYING INSTALL QUICKSTART \ - README* TODO - cp -a doc/* ${D}/usr/share/doc/${PF} - -} - -pkg_postinst() { - [ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules - - echo - einfo - einfo "The lm_sensors hardware sensors package has been installed." - einfo - einfo "It is recommended that you read the lm_sensors documentation." - einfo "To enable lm_sensors you will need to compile i2c support in" - einfo "your kernel as a module and run /usr/sbin/sensors-detect to" - einfo "detect the hardware in your system." - einfo - einfo "Be warned, the probing of hardware in your system performed by" - einfo "sensors-detect could freeze your system. Also do not use" - einfo "lm_sensors on certain laptop models from IBM. See the lm_sensors" - einfo "documentation and website for more information." - einfo - einfo "IMPORTANT: When you merge this package it installs kernel modules" - einfo "that can only be used with the specific kernel version whose" - einfo "source is located in /usr/src/linux. If you upgrade to a new" - einfo "kernel, you will need to remerge the lm_sensors package to build" - einfo "new kernel modules." - einfo - echo -} diff --git a/sys-apps/lm-sensors/lm-sensors-2.8.4.ebuild b/sys-apps/lm-sensors/lm-sensors-2.8.4.ebuild new file mode 100644 index 000000000000..20626159cdf3 --- /dev/null +++ b/sys-apps/lm-sensors/lm-sensors-2.8.4.ebuild @@ -0,0 +1,138 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm-sensors/lm-sensors-2.8.4.ebuild,v 1.1 2004/02/10 07:54:39 plasmaroo Exp $ + +inherit flag-o-matic + +MY_P=${PN/-/_}-${PV} +S="${WORKDIR}/${MY_P}" +MYI2C="${WORKDIR}/i2c-headers" + +DESCRIPTION="Hardware Sensors Monitoring by lm_sensors" +SRC_URI="http://www.lm-sensors.nu/archive/${MY_P}.tar.gz" +HOMEPAGE="http://www2.lm-sensors.nu/~lm78" + +SLOT="${KV}" + +KEYWORDS="~x86 ~amd64 -ppc -sparc" +LICENSE="GPL-2" + +DEPEND="" + +src_unpack() { + unpack ${A} || die + cd ${S} || die + epatch ${FILESDIR}/${PN}-2.8.2-sensors-detect-gentoo.diff > /dev/null || die + + # Get the right I2C includes without dropping the kernel includes + mkdir -p ${MYI2C}/linux + cp /usr/include/linux/i2c* ${MYI2C}/linux/ +} + +src_compile() { + echo + einfo "*****************************************************************" + einfo + einfo "This ebuild assumes your /usr/src/linux kernel is the one you" + einfo "used to build i2c-2.8.2." + einfo + einfo "For 2.5+ series kernels, use the support already in the kernel" + einfo "under 'Character devices' -> 'I2C support' and then merge this" + einfo "ebuild." + einfo + einfo "To cross-compile, 'export LINUX=\"/lib/modules//build\"'" + einfo "or symlink /usr/src/linux to another kernel." + einfo + einfo "*****************************************************************" + echo + + UserModeOnly=false + if [ "$LINUX" != "" ]; then + einfo "Cross-compiling using:- $LINUX" + LINUX=`echo $LINUX | sed 's/build\//build/'` + KV=`cut -d\ -f3 ${LINUX}include/linux/version.h | grep \" | sed -e 's/"//' -e 's/"//'` + if [ "${KV}" == "" ]; then + die "Could not get kernel version; make sure ${LINUX}include/linux/version.h is there!" + fi + else + LINUX='/usr/src/linux' + check_KV || die "Cannot find kernel in /usr/src/linux!" + einfo "Using kernel in /usr/src/linux/:- ${KV}" + fi + if [ `echo ${KV} | grep 2\.[56]\.` ]; then + einfo "You are using a 2.5 / 2.6 series kernel; only building utilities..." + UserModeOnly=true + else + einfo "You are using a `echo ${KV} | cut -d. -f-2` series kernel; building everything..." + fi + if [ "${KV}" != "${SLOT}" ]; then + echo + ewarn "WARNING:- Specified and running kernels do not match!" + ewarn "WARNING:- This package will be slotted as ${SLOT}!" + fi + + if [ ! -e ${MYI2C}/linux/i2c.h ]; then + cp $LINUX/include/linux/i2c* ${MYI2C}/linux || die "No I2C Includes! Install I2C!" + fi + + echo; einfo "You may safely ignore any errors from compilation" + einfo "that contain 'No such file' references." + + echo + filter-flags -fPIC -fstack-protector + + cd ${S} + emake clean + + if [ ${UserModeOnly} == true ]; then + emake CC=${CC} I2C_HEADERS=${MYI2C} user || die "Could not compile user-mode utilities!" + else + emake CC=${CC} I2C_HEADERS=${MYI2C} LINUX=$LINUX || die "lm_sensors requires the source of a compatible kernel version in /usr/src/linux or specified in \$LINUX and >=i2c-2.8.1 support built as modules. Make sure that I2C >=2.8.1 is on your system before filing a bug." + fi +} + +src_install() { + + mkdir -p ${D}/usr/bin + mkdir -p ${D}/usr/sbin + if [ ${UserModeOnly} == true ]; then + emake DESTDIR=${D} PREFIX=${D}/usr MANDIR=${D}/usr/share/man user_install || die "Install failed!" + else + emake LINUX=$LINUX DESTDIR=${D} PREFIX=${D}/usr MANDIR=${D}/usr/share/man install || die "Install failed!" + fi + cp ${D}/${D}* ${D} -Rf + rm ${D}/var -Rf + + exeinto /etc/init.d + newexe ${FILESDIR}/rc lm_sensors + dodoc BACKGROUND BUGS CHANGES CONTRIBUTORS COPYING INSTALL QUICKSTART \ + README* TODO + cp -a doc/* ${D}/usr/share/doc/${PF} + +} + +pkg_postinst() { + [ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules + + echo + einfo + einfo "The lm_sensors hardware sensors package has been installed." + einfo + einfo "It is recommended that you read the lm_sensors documentation." + einfo "To enable lm_sensors you will need to compile i2c support in" + einfo "your kernel as a module and run /usr/sbin/sensors-detect to" + einfo "detect the hardware in your system." + einfo + einfo "Be warned, the probing of hardware in your system performed by" + einfo "sensors-detect could freeze your system. Also do not use" + einfo "lm_sensors on certain laptop models from IBM. See the lm_sensors" + einfo "documentation and website for more information." + einfo + einfo "IMPORTANT: When you merge this package it installs kernel modules" + einfo "that can only be used with the specific kernel version whose" + einfo "source is located in /usr/src/linux. If you upgrade to a new" + einfo "kernel, you will need to remerge the lm_sensors package to build" + einfo "new kernel modules." + einfo + echo +} -- cgit v1.2.3-65-gdbad