diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-04-19 13:40:04 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-04-19 13:40:04 +0000 |
commit | 53ca93422dbd0480224d8cc838a51a7accacfc44 (patch) | |
tree | 05d302f19c8ea103d32ce852e41b0823c71a846f /app-misc | |
parent | repoman cleanups (diff) | |
download | gentoo-2-53ca93422dbd0480224d8cc838a51a7accacfc44.tar.gz gentoo-2-53ca93422dbd0480224d8cc838a51a7accacfc44.tar.bz2 gentoo-2-53ca93422dbd0480224d8cc838a51a7accacfc44.zip |
disable lockdev in 3.3.1 and some cleanups
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/digitemp/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/digitemp/digitemp-3.3.1.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/app-misc/digitemp/ChangeLog b/app-misc/digitemp/ChangeLog index 815bc348246a..3f4d74b307d1 100644 --- a/app-misc/digitemp/ChangeLog +++ b/app-misc/digitemp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/digitemp # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/ChangeLog,v 1.7 2005/04/19 13:38:14 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/ChangeLog,v 1.8 2005/04/19 13:40:04 seemant Exp $ + + 19 Apr 2005; Seemant Kulleen <seemant@gentoo.org> digitemp-3.3.1.ebuild: + disable lockdev in 3.3.1 and some cleanups *digitemp-3.3.2 (19 Apr 2005) diff --git a/app-misc/digitemp/digitemp-3.3.1.ebuild b/app-misc/digitemp/digitemp-3.3.1.ebuild index a6fc46199c05..3850046be5ba 100644 --- a/app-misc/digitemp/digitemp-3.3.1.ebuild +++ b/app-misc/digitemp/digitemp-3.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/digitemp-3.3.1.ebuild,v 1.6 2005/01/01 14:58:51 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/digitemp/digitemp-3.3.1.ebuild,v 1.7 2005/04/19 13:40:04 seemant Exp $ DESCRIPTION="Temperature logging and reporting using Dallas Semiconductor's iButtons and 1-Wire protocol" HOMEPAGE="http://www.digitemp.com http://www.ibutton.com" @@ -13,11 +13,13 @@ IUSE="" DEPEND="virtual/libc" +exampledir="/usr/share/doc/${PF}" +target="ds9097u" + src_compile() { # default is to compile to the ds9097u. local use flag takes care of # passive ds9097. the ds9097u setting is what i have, so probably a safe # default - nothing special here. - local target="ds9097u" [ "${SERIAL_DRIVER}" = ds9097 ] && target="ds9097" make clean @@ -27,7 +29,7 @@ src_compile() { ewarn "SERIAL_DRIVER=\"ds9097\" as appropriate" ewarn "" - make ${target} + make ${target} LOCK="no" || die } src_install() { @@ -38,7 +40,6 @@ src_install() { # then tell the user where to find this stuff. suitable alternative: # specify exampledir="/usr/share/doc/${PF}" - local exampledir="/usr/share/${PN}" local perldir="${exampledir}/perl_examples" insinto ${perldir} doins perl/* |