Magellan Linux

Annotation of /branches/magellan-next/extras/iasl/iasl-20110623-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8060 - (hide annotations) (download)
Wed Jun 29 13:47:11 2011 UTC (12 years, 11 months ago) by niro
File size: 686 byte(s)
auto added: ver bump to 20110623-r1
1 niro 8060 # $Id$
2    
3     PNAME="iasl"
4     PVER="20110623"
5     PBUILD="r1"
6    
7     PCATEGORIE="dev-util"
8    
9     DESCRIPTION="The latest IASL compiler for Linux."
10     HOMEPAGE="http://www.acpica.org/"
11    
12     DEPEND=""
13     SDEPEND=">= sys-dev/bison-2.5
14     >= sys-dev/flex-2.5.35"
15    
16     SRCFILE="acpica-unix-${PVER}.tar.gz"
17     SRCDIR="${BUILDDIR}/acpica-unix-${PVER}"
18    
19     sminclude mbuild mtools
20    
21     SRC_URI=(
22     http://www.acpica.org/download/${SRCFILE}
23     mirror://${PNAME}/${SRCFILE}
24     )
25    
26     UP2DATE="updatecmd ${HOMEPAGE}/downloads/unix_source_code.php | lasttarball gz"
27    
28     src_compile()
29     {
30     # only the compiler
31     cd ${SRCDIR}
32     mmake -j1 -C compiler || die
33     }
34    
35     src_install()
36     {
37     cd ${SRCDIR}
38     minstallexec compiler/iasl || die
39     minstalldocs changes.txt README || die
40     }