Lines 6-14
Link Here
|
6 |
# |
6 |
# |
7 |
|
7 |
|
8 |
PORTNAME= freesci |
8 |
PORTNAME= freesci |
9 |
PORTVERSION= 0.3.4c |
9 |
PORTVERSION= 0.3.5 |
10 |
CATEGORIES= games emulators |
10 |
CATEGORIES= games emulators |
11 |
MASTER_SITES= ${MASTER_SITE_SAVANNAH} \ |
11 |
MASTER_SITES= http://www-plan.cs.colorado.edu/creichen/${PORTNAME}/ \ |
12 |
http://teksolv.de/~jameson/ |
12 |
http://teksolv.de/~jameson/ |
13 |
MASTER_SITE_SUBDIR=${PORTNAME}/stable.pkg/${PORTVERSION} |
13 |
MASTER_SITE_SUBDIR=${PORTNAME}/stable.pkg/${PORTVERSION} |
14 |
|
14 |
|
Lines 16-22
Link Here
|
16 |
COMMENT= A portable interpreter for SCI games, such as the Space Quest series |
16 |
COMMENT= A portable interpreter for SCI games, such as the Space Quest series |
17 |
|
17 |
|
18 |
USE_BZIP2= yes |
18 |
USE_BZIP2= yes |
19 |
USE_REINPLACE= yes |
|
|
20 |
USE_XLIB= yes |
19 |
USE_XLIB= yes |
21 |
GNU_CONFIGURE= yes |
20 |
GNU_CONFIGURE= yes |
22 |
WANT_SDL= yes |
21 |
WANT_SDL= yes |
Lines 26-31
Link Here
|
26 |
|
25 |
|
27 |
MAN6= freesci-tools.6 freesci.6 |
26 |
MAN6= freesci-tools.6 freesci.6 |
28 |
|
27 |
|
|
|
28 |
OPTIONS= CONSOLE "With console support" off \ |
29 |
SDL "With SDL support" off \ |
30 |
GGI "With GGI support" off \ |
31 |
DIRECTFB "With DirectFB support" off \ |
32 |
OPTIMIZED_CFLAGS "Build with code optimizations" off |
33 |
|
29 |
.include <bsd.port.pre.mk> |
34 |
.include <bsd.port.pre.mk> |
30 |
|
35 |
|
31 |
.if defined(WITH_OPTIMIZED_CFLAGS) |
36 |
.if defined(WITH_OPTIMIZED_CFLAGS) |
Lines 70-92
Link Here
|
70 |
CONFIGURE_ARGS+= --with-ggi-dir=${LOCALBASE} |
75 |
CONFIGURE_ARGS+= --with-ggi-dir=${LOCALBASE} |
71 |
.else |
76 |
.else |
72 |
CONFIGURE_ARGS+= --without-ggi |
77 |
CONFIGURE_ARGS+= --without-ggi |
73 |
.endif |
|
|
74 |
|
75 |
pre-everything:: |
76 |
.if !defined(WITH_CONSOLE) |
77 |
@${ECHO_MSG} "Define WITH_CONSOLE to build console support" |
78 |
.endif |
79 |
.if !defined(WITH_SDL) |
80 |
@${ECHO_MSG} "Define WITH_SDL to build with SDL support" |
81 |
.endif |
82 |
.if !defined(WITH_GGI) |
83 |
@${ECHO_MSG} "Define WITH_GGI to build with GGI support" |
84 |
.endif |
85 |
.if !defined(WITH_DIRECTFB) |
86 |
@${ECHO_MSG} "Define WITH_DIRECTFB to build with DirectFB support" |
87 |
.endif |
88 |
.if !defined(WITH_OPTIMIZED_CFLAGS) |
89 |
@${ECHO_MSG} "Define WITH_OPTIMIZED_CFLAGS to build with extra optimizations" |
90 |
.endif |
78 |
.endif |
91 |
|
79 |
|
92 |
pre-configure: |
80 |
pre-configure: |