summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Moc <jakub@gentoo.org>2008-01-26 09:11:30 +0000
committerJakub Moc <jakub@gentoo.org>2008-01-26 09:11:30 +0000
commit739e4ae5ea4eec3f304814364ccbc9595fb0c54d (patch)
tree4665af136e5dc5c3fe1a1ad233ed22bab686a412 /app-laptop
parentgames-util/bsp: Remove redundant die on eautoreconf; also remove filter-flags... (diff)
downloadsunrise-739e4ae5ea4eec3f304814364ccbc9595fb0c54d.tar.gz
sunrise-739e4ae5ea4eec3f304814364ccbc9595fb0c54d.tar.bz2
sunrise-739e4ae5ea4eec3f304814364ccbc9595fb0c54d.zip
app-laptop/linux-phc: Fix autotools handling
svn path=/sunrise/; revision=5518
Diffstat (limited to 'app-laptop')
-rw-r--r--app-laptop/linux-phc/ChangeLog5
-rw-r--r--app-laptop/linux-phc/Manifest4
-rw-r--r--app-laptop/linux-phc/linux-phc-0.2.9.ebuild9
3 files changed, 11 insertions, 7 deletions
diff --git a/app-laptop/linux-phc/ChangeLog b/app-laptop/linux-phc/ChangeLog
index a311569c0..47bfda57c 100644
--- a/app-laptop/linux-phc/ChangeLog
+++ b/app-laptop/linux-phc/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for app-laptop/linux-phc
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 26 Jan 2008; Jakub Moc <jakub@gentoo.org> linux-phc-0.2.9.ebuild:
+ Fix autotools handling
+
18 Apr 2007; Markus Ullmann <jokey@gentoo.org> -linux-phc-0.2.8.ebuild,
linux-phc-0.2.9.ebuild:
Drop old and some cosmetics
diff --git a/app-laptop/linux-phc/Manifest b/app-laptop/linux-phc/Manifest
index 92d95ece0..8312ab438 100644
--- a/app-laptop/linux-phc/Manifest
+++ b/app-laptop/linux-phc/Manifest
@@ -1,5 +1,5 @@
AUX linux-phc-0.2.9-msr_h-fix.patch 582 RMD160 ae6d1c11d6315b338c521e028e98e8be0399d313 SHA1 0409144009027c500e497f1b18e325df462ece20 SHA256 5bd050c990dbc85d8ba4eeee8ca4953d7f6a531b791bdd337fc9e0960d1e16fe
DIST linux-phc-0.2.9.tar.gz 379295 RMD160 b5cb5648747ed84ea6c0ca7d5979a36cd9e55a99 SHA1 dceef12ecc2583f6280413ce0677c8161d5451d0 SHA256 457347b8c2d71a68c15dcb9bf21871771fa0b222a8997bf91f93920f29e3aacf
-EBUILD linux-phc-0.2.9.ebuild 2913 RMD160 2424c33dbae03d2baae5c7e16801f2cec6a16a76 SHA1 d8a1c23d59c6360fe7ff5f59b0228699ec82149d SHA256 bccec1a8c59f62948a6e0b80178eaf2e5db870499b4df74ceb7c5bd2583e2c48
-MISC ChangeLog 1198 RMD160 228b3f6b202044270237eac5a6cf82c57d993e19 SHA1 51607405f2495d7b827fd3d4f4750a8368d6b37c SHA256 8fdeae28cf9fce71f6f7772111508f5a6b2d10d4ebc0d717284d2e877ac5e375
+EBUILD linux-phc-0.2.9.ebuild 2890 RMD160 b9954d09788c47fcd58319e560148a0dc9cdd33c SHA1 8bc5a3035069d751f8c299797830c6e893a9e0ca SHA256 318fe4263d8a79385e0018dc740a69c6c09d69a03bd0b06a4bcfe9cfe1270a1d
+MISC ChangeLog 1292 RMD160 fe93e4e583cf931a479fdd4a5a4260d049bdc4ad SHA1 5e98edce9c37144b4f5c8d4b97f521d615134e96 SHA256 9050186698fde89f0d2da95e88a1a208af5e15d14e724df61c46582831a87eca
MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/app-laptop/linux-phc/linux-phc-0.2.9.ebuild b/app-laptop/linux-phc/linux-phc-0.2.9.ebuild
index 5b173d698..1b261be6f 100644
--- a/app-laptop/linux-phc/linux-phc-0.2.9.ebuild
+++ b/app-laptop/linux-phc/linux-phc-0.2.9.ebuild
@@ -78,14 +78,15 @@ src_unpack() {
cp -P "${KV_DIR}"/${mydir}/speedstep-centrino.c "${S}"/${mydir}/
epatch "${S}"/${PATCH}
-}
-src_compile() {
- einfo "Compiling measurefreq"
cd "${S}"/utils/measurefreq
eautoconf
eautomake
- econf || die "econf failed"
+}
+
+src_compile() {
+ cd "${S}"/utils/measurefreq
+ econf
emake || die "emake failed"
}