1 | PortSystem 1.0 |
---|
2 | |
---|
3 | name sheepshaver-devel |
---|
4 | version 2.3-20060318 |
---|
5 | categories emulators |
---|
6 | platforms darwin |
---|
7 | maintainers opendarwin.nospam@vercruesse.de |
---|
8 | description PowerPC MacOS run-time environment |
---|
9 | long_description SheepShaver is an Open Source PowerPC MacOS run-time \ |
---|
10 | environment. That is, it enables you to run PowerPC \ |
---|
11 | Classic MacOS software on your computer, even if you are \ |
---|
12 | using a different operating system. However, you still \ |
---|
13 | need a copy of MacOS and a PowerMacintosh ROM image to \ |
---|
14 | use this program. |
---|
15 | homepage http://sheepshaver.cebix.net/ |
---|
16 | |
---|
17 | fetch.type cvs |
---|
18 | cvs.root :pserver:anoncvs@cvs.cebix.net:/home/cvs/cebix |
---|
19 | cvs.password anoncvs |
---|
20 | cvs.module BasiliskII SheepShaver |
---|
21 | cvs.date 20060318 |
---|
22 | |
---|
23 | depends_build port:autoconf \ |
---|
24 | port:automake |
---|
25 | |
---|
26 | depends_lib port:libsdl \ |
---|
27 | port:gtk2 |
---|
28 | |
---|
29 | worksrcdir SheepShaver/src/Unix |
---|
30 | |
---|
31 | |
---|
32 | pre-configure { |
---|
33 | system "mkdir ${worksrcpath}/Darwin" |
---|
34 | system "cd ${worksrcpath}/../../ && make links" |
---|
35 | system "cd ${worksrcpath} && NO_CONFIGURE=yes ACLOCAL_FLAGS=\"-I m4\" ./autogen.sh" |
---|
36 | } |
---|
37 | |
---|
38 | configure.args --enable-sdl-video --enable-sdl-audio \ |
---|
39 | --disable-vosf --without-mon \ |
---|
40 | --with-gtk --without-esd |
---|
41 | |
---|
42 | |
---|
43 | post-destroot { |
---|
44 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
45 | file copy ${worksrcpath}/../../doc/Linux ${destroot}${prefix}/share/doc/${name} |
---|
46 | } |
---|
47 | |
---|
48 | variant no_x11 { |
---|
49 | configure.args-delete --with-gtk |
---|
50 | configure.args-append --without-gtk |
---|
51 | depends_lib-delete port:gtk2 |
---|
52 | } |
---|