diff options
author | 2009-06-11 11:14:30 +0000 | |
---|---|---|
committer | 2009-06-11 11:14:30 +0000 | |
commit | b29d6c520d7d855361b8b8196ac83efaeeb474aa (patch) | |
tree | 6f0e8ff1d9074334f956ca003d01b1dd3746ad04 /app-laptop | |
parent | Remove unused eclasses, whitespace, cleanup. (diff) | |
download | sunrise-b29d6c520d7d855361b8b8196ac83efaeeb474aa.tar.gz sunrise-b29d6c520d7d855361b8b8196ac83efaeeb474aa.tar.bz2 sunrise-b29d6c520d7d855361b8b8196ac83efaeeb474aa.zip |
Cleanup, remove unused inherit. Add missing die statement.
(Portage version: 2.2_rc33/svn/Linux x86_64)
svn path=/sunrise/; revision=8644
Diffstat (limited to 'app-laptop')
-rw-r--r-- | app-laptop/toshset/ChangeLog | 3 | ||||
-rw-r--r-- | app-laptop/toshset/Manifest | 4 | ||||
-rw-r--r-- | app-laptop/toshset/toshset-1.75.ebuild | 6 |
3 files changed, 7 insertions, 6 deletions
diff --git a/app-laptop/toshset/ChangeLog b/app-laptop/toshset/ChangeLog index c39a7028a..6d22a9152 100644 --- a/app-laptop/toshset/ChangeLog +++ b/app-laptop/toshset/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 11 Jun 2009; Christian Ruppert <idl0r@gentoo.org> toshset-1.75.ebuild: + Cleanup, remove unused inherit. Add missing die statement. + *toshset-1.75 (10 Jun 2009) 10 Jun 2009; Markos Chandras <hwoarang@gentoo.org> -toshset-1.72.ebuild, diff --git a/app-laptop/toshset/Manifest b/app-laptop/toshset/Manifest index 4afca95a4..16cd3e35d 100644 --- a/app-laptop/toshset/Manifest +++ b/app-laptop/toshset/Manifest @@ -1,4 +1,4 @@ DIST toshset-1.75.tgz 78926 RMD160 2fea1245495a358af3305e62571db016a4bd18ee SHA1 7ac0cf76a673f6eec56ef884eb80ae0d7d7260db SHA256 5ee6470ac11a7b9647e8d1cee0c017f9d35dc827983907dd8058db56a5db5fc8 -EBUILD toshset-1.75.ebuild 720 RMD160 70d688ece274743fc3cdc5dd4c38af900d384cd8 SHA1 437fa7ae6637a570c16fdeb63d3d93c34bd971d2 SHA256 c2825185319a26c1c9d37e4d5d08f34489ca47b5ef5308423a51e002cba2d9b9 -MISC ChangeLog 651 RMD160 76b9492b84bb6564494054271c27ca662eb3dc55 SHA1 01eebe052e0be5ecee8616abd558d430f300fa42 SHA256 4965b3cbbd4399ec8ffcbbb2654de580b35f4ae9a0023d528f10118abe9800d6 +EBUILD toshset-1.75.ebuild 699 RMD160 7cd789606bd672f3ceadf0c0626801e8c7664837 SHA1 8c55a5b99301d98634a0ff2678cf862fe34ed376 SHA256 e78d112171b64b103b579344ad4e3f657b4bbb8376f63d09af4ee069963c642b +MISC ChangeLog 786 RMD160 08fe24f1d0d10baad5b5f3a203a57f70c19c8b6b SHA1 962027321a9c5d7602bf3db764b30d2ace423a32 SHA256 340c042db02a9a060b7692d1ba9605b6f874a1d0c0eaecabaa6e7236b01038a2 MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/app-laptop/toshset/toshset-1.75.ebuild b/app-laptop/toshset/toshset-1.75.ebuild index f15ca85f7..baa32806f 100644 --- a/app-laptop/toshset/toshset-1.75.ebuild +++ b/app-laptop/toshset/toshset-1.75.ebuild @@ -4,8 +4,6 @@ EAPI="2" -inherit eutils - DESCRIPTION="Utility to modify HCI/SCI controls on Toshiba Laptops" HOMEPAGE="http://www.schwieters.org/toshset/" SRC_URI="http://dev.gentooexperimental.org/~hwoarang/distfiles/${P}.tgz" @@ -23,10 +21,10 @@ src_prepare() { } src_configure(){ - econf "${myconf} $(use_enable debug)" + econf $(use_enable debug) } src_install() { emake DESTDIR="${D}" install || die "emake install failed" - dodoc README + dodoc README || die } |