Magellan Linux

Contents of /branches/magellan-next/deprecated/linux32/linux32-1.0-r7.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7686 - (show annotations) (download)
Mon May 30 10:10:25 2011 UTC (12 years, 11 months ago) by niro
File size: 696 byte(s)
-moved to 'deprecated'
1 # $Id: linux32-1.0-r6.smage2 3207 2009-10-16 15:59:38Z niro $
2
3 PNAME="linux32"
4 PVER="1.0"
5 PBUILD="r7"
6
7 PCATEGORIE="dev-util"
8 STATE="unstable"
9
10 DESCRIPTION="linux32 is a 32bit emulation utility for x86_64 arches."
11 HOMEPAGE="ftp://ftp.x86-64.org/pub/linux/tools/linux32/"
12
13 DEPEND=""
14
15 SRCFILE="${PNAME}-${PVER}.tar.bz2"
16 SRCDIR="${BUILDDIR}/${PNAME}"
17
18 sminclude mtools mbuild
19
20 SRC_URI=( mirror://${PNAME}/${SRCFILE} )
21
22 src_compile()
23 {
24 cd ${SRCDIR}
25 gcc -o linux32 linux32.c || die
26 }
27
28 src_install()
29 {
30 cd ${SRCDIR}
31
32 minstallexec linux32 || die
33 mlink linux32 /usr/bin/linux64 || die
34
35 minstallman linux32.1 || die
36 mlink linux32.1 /usr/share/man/man1/linux64.1 || die
37
38 minstalldocs README || die
39 }