comparison audio/jack2/jack2.sh @ 902:a133976e0783

vanilla: remove all origins, closes #2203
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 12:14:53 +0200
parents 0d9490a65130
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
37 : ${OPUS:=yes} 37 : ${OPUS:=yes}
38 : ${READLINE:=yes} 38 : ${READLINE:=yes}
39 : ${SNDFILE:=yes} 39 : ${SNDFILE:=yes}
40 40
41 if [ "$ALSA" = "yes" ]; then 41 if [ "$ALSA" = "yes" ]; then
42 PKGDEPENDS="audio/alsa-lib $PKGDEPENDS" 42 PKGDEPENDS="alsa-lib $PKGDEPENDS"
43 with_alsa="--alsa=yes" 43 with_alsa="--alsa=yes"
44 else 44 else
45 with_alsa="--alsa=no" 45 with_alsa="--alsa=no"
46 fi 46 fi
47 47
48 if [ "$DBUS" = "yes" ]; then 48 if [ "$DBUS" = "yes" ]; then
49 PKGDEPENDS="network/dbus $PKGDEPENDS" 49 PKGDEPENDS="dbus $PKGDEPENDS"
50 with_dbus="--dbus" 50 with_dbus="--dbus"
51 else 51 else
52 with_dbus="--dbus" 52 with_dbus="--dbus"
53 fi 53 fi
54 54
55 if [ "$OPUS" = "yes" ]; then 55 if [ "$OPUS" = "yes" ]; then
56 PKGDEPENDS="audio/opus $PKGDEPENDS" 56 PKGDEPENDS="opus $PKGDEPENDS"
57 with_opus="--opus=yes" 57 with_opus="--opus=yes"
58 else 58 else
59 with_opus="--opus=no" 59 with_opus="--opus=no"
60 fi 60 fi
61 61
62 if [ "$DOXYGEN" = "yes" ]; then 62 if [ "$DOXYGEN" = "yes" ]; then
63 PKGDEPENDS="dev/doxygen:build $PKGDEPENDS" 63 PKGDEPENDS="doxygen:build $PKGDEPENDS"
64 with_doxygen="--doxygen=yes" 64 with_doxygen="--doxygen=yes"
65 else 65 else
66 with_doxygen="--doxygen=no" 66 with_doxygen="--doxygen=no"
67 fi 67 fi
68 68
69 if [ "$READLINE" = "yes" ]; then 69 if [ "$READLINE" = "yes" ]; then
70 PKGDEPENDS="lib/readline $PKGDEPENDS" 70 PKGDEPENDS="readline $PKGDEPENDS"
71 with_readline="--readline=yes" 71 with_readline="--readline=yes"
72 else 72 else
73 with_readline="--readline=no" 73 with_readline="--readline=no"
74 fi 74 fi
75 75
76 if [ "$SNDFILE" = "yes" ]; then 76 if [ "$SNDFILE" = "yes" ]; then
77 PKGDEPENDS="audio/libsndfile $PKGDEPENDS" 77 PKGDEPENDS="libsndfile $PKGDEPENDS"
78 with_sndfile="--sndfile=yes" 78 with_sndfile="--sndfile=yes"
79 else 79 else
80 with_sndfile="--sndfile=no" 80 with_sndfile="--sndfile=no"
81 fi 81 fi
82 82