summaryrefslogtreecommitdiffstats
path: root/editors/xemacs/DEPENDS
blob: 14d70ad34f35271d802dd258af39c8c6072b09f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
depends  zlib         &&
depends  gdbm         &&
depends  db           &&
depends  xemacs-base  &&
depends  efs          &&

# tty options
if [[ "XEMACS_TTY" == "y" ]]
then optional_depends  "ncurses"                         \
                       "--with-ncurses"                  \
                       "--without-ncurses"               \
                       "for ncurses-based TTY support"   &&
     optional_depends  "gpm"                             \
                       "--with-gpm"                      \
                       "--without-gpm"                   \
                       "for GPM mouse support for ttys"
fi &&

# graphics toolkit options
if  [[ "${XEMACS_GTK}" == "y" ]] ; then
    depends gtk+ &&
    if [[ "$XEMACS_GNOME" == "y" ]] ; then
        depends gnome-libs &&
        depends libgnomeui
    fi
else [[ "${XEMACS_MOTIF}" == "y" ]] && depends MOTIF
fi

# sound options: these are not marked as optional_depends because they each have
# their entry in an --enable-sound=TYPES flag. see CONFIGURE
if [[ "$XEMACS_ESD" == "y" ]]
then depends esound
fi &&
if [[ "$XEMACS_NAS" == "y" ]]
then depends nas
fi &&

# graphics libs options
optional_depends  "libpng"                             \
                  "--with-png"                         \
                  "--without-png"                      \
                  "for PNG support (best to say yes)"  &&

optional_depends  "JPEG"              \
                  "--with-jpeg"       \
                  "--without-jpeg"    \
                  "for JPEG support"  &&

optional_depends  "tiff"              \
                  "--with-tiff"       \
                  "--without-tiff"    \
                  "for TIFF support"  &&

optional_depends  "compface"                                          \
                  "--with-xface"                                      \
                  "--without-xface"                                   \
                  "for X-Face mail headers (Of doubtful usefulness)"  &&

# other options
optional_depends  "openldap"                   \
                  "--with-ldap"                \
                  "--without-ldap"             \
                  "for LDAP protocol support"  &&

optional_depends  "postgresql"              \
                  "--with-postgresql"       \
                  "--without-postgresql"    \
                  "for PostgreSQL support"  &&

optional_depends  "krb5"                                     \
                  "--with-kerberos"                          \
                  "--without-kerberos"                       \
                  "for Kerberos5 authenticated POP support"