Changeset caf200f5e94783c777e0a859e92bddc6608a01c0
- Timestamp:
- 12/08/02 17:16:19
(6 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1039364179 +0000
- git-parent:
[892b62c4ee2d1e73c0fffd7bc8f9209a851fcb9a]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1039364179 +0000
- Message:
- Updated Maintainers file
- fixed --disable-dvd, it did not work
- updated iPaq familiar buildscripts
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6d14297 |
rcaf200f |
|
| 1 | | # $Id: MAINTAINERS,v 1.4 2002/12/04 02:16:23 titer Exp $ |
|---|
| | 1 | # $Id: MAINTAINERS,v 1.5 2002/12/08 16:16:19 jpsaman Exp $ |
|---|
| 2 | 2 | # |
|---|
| 3 | 3 | # VLC MAINTAINERS |
|---|
| … | … | |
| 41 | 41 | - modules qt, kde : [sigmund] |
|---|
| 42 | 42 | - module xosd : [lool] |
|---|
| | 43 | - module familar : [saman] |
|---|
| 43 | 44 | |
|---|
| 44 | 45 | * VIDEO OUTPUT |
|---|
| … | … | |
| 49 | 50 | - modules x11, xvideo : [gibalou] |
|---|
| 50 | 51 | - module aa : [sigmund] |
|---|
| | 52 | - module qte : [saman] |
|---|
| 51 | 53 | |
|---|
| 52 | 54 | * AUDIO OUTPUT |
|---|
| r892b62c |
rcaf200f |
|
| 49 | 49 | AC_CHECK_TOOL(RANLIB, ranlib, :) |
|---|
| 50 | 50 | AC_CHECK_TOOL(STRIP, strip, :) |
|---|
| | 51 | AC_CHECK_TOOL(AR, ar, :) |
|---|
| | 52 | AC_CHECK_TOOL(LD, ld, :) |
|---|
| 51 | 53 | |
|---|
| 52 | 54 | dnl |
|---|
| … | … | |
| 875 | 877 | AC_ARG_ENABLE(dvd, |
|---|
| 876 | 878 | [ --enable-dvd DVD input module (default enabled)]) |
|---|
| 877 | | if test "x${enable_dvd}" != "xno" |
|---|
| | 879 | if test "x${enable_dvd}" != "xno" -a "x${enable_dvd}" != "x" |
|---|
| 878 | 880 | then |
|---|
| 879 | 881 | AC_ARG_WITH(dvdcss, |
|---|
| … | … | |
| 1775 | 1777 | then |
|---|
| 1776 | 1778 | PLUGINS="${PLUGINS} vout_sdl aout_sdl" |
|---|
| 1777 | | CFLAGS_vout_sdl="${CFLAGS_vout_sdl} `${SDL_CONFIG} --cflags`" |
|---|
| | 1779 | CFLAGS_vout_sdl="${CFLAGS_vout_sdl} `${SDL_CONFIG} --cflags | sed 's,SDL,,'`" |
|---|
| 1778 | 1780 | LDFLAGS_vout_sdl="${LDFLAGS_vout_sdl} `${SDL_CONFIG} --libs | sed 's,-rdynamic,,'`" |
|---|
| 1779 | | CFLAGS_aout_sdl="${CFLAGS_aout_sdl} `${SDL_CONFIG} --cflags`" |
|---|
| | 1781 | CFLAGS_aout_sdl="${CFLAGS_aout_sdl} `${SDL_CONFIG} --cflags | sed 's,SDL,,'`" |
|---|
| 1780 | 1782 | LDFLAGS_aout_sdl="${LDFLAGS_aout_sdl} `${SDL_CONFIG} --libs | sed 's,-rdynamic,,'`" |
|---|
| 1781 | 1783 | CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}" |
|---|
| … | … | |
| 1807 | 1809 | AC_ARG_ENABLE(qte, |
|---|
| 1808 | 1810 | [ --enable-qte QT Embedded support (default disabled)]) |
|---|
| 1809 | | if test "x${enable_qte}" != "xno" |
|---|
| | 1811 | if test "x${enable_qte}" = "xyes" |
|---|
| 1810 | 1812 | then |
|---|
| 1811 | 1813 | AC_ARG_WITH(qte, |
|---|
| 1812 | | [ --with-qte=PATH Qt Embedded headers and libraries]) |
|---|
| 1813 | | if test "x${with_qte}" = "x" |
|---|
| 1814 | | then |
|---|
| 1815 | | LDFLAGS_test="-L${QTDIR}/lib" |
|---|
| 1816 | | CPPFLAGS_test="-I${QTDIR}/include" |
|---|
| | 1814 | [ --with-qte=PATH Qt Embedded headers and libraries]) |
|---|
| | 1815 | if test "x${with_qte}" != "xno" -a "x${with_qte}" != "x" |
|---|
| | 1816 | then |
|---|
| | 1817 | LDFLAGS_qte="${LDFLAGS_qte} -L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte" |
|---|
| | 1818 | CFLAGS_qte="${CFLAGS_qte} -I${with_qte}/include `echo -I${with_qte}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti" |
|---|
| 1817 | 1819 | else |
|---|
| 1818 | | LDFLAGS_test="-L${with_qte}/lib" |
|---|
| 1819 | | CPPFLAGS_test="-I${with_qte}/include" |
|---|
| 1820 | | fi |
|---|
| 1821 | | |
|---|
| 1822 | | CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}" |
|---|
| 1823 | | AC_CHECK_HEADERS(qt.h, [ |
|---|
| 1824 | | CPPFLAGS_qte="${CPPFLAGS_qte} ${CPPFLAGS_test} -DQT_QWS_IPAQ -DQWS" |
|---|
| 1825 | | CXXFLAGS_qte="${CXXFLAGS_qte} -fno-exceptions -fno-rtti" |
|---|
| 1826 | | LDFLAGS_qte="${LDFLAGS_qte} ${LDFLAGS_test} -lqte" |
|---|
| 1827 | | if test "x${with_qte}" = "x" |
|---|
| 1828 | | then |
|---|
| 1829 | | PLUGINS="${PLUGINS} qte" |
|---|
| 1830 | | else |
|---|
| 1831 | | BUILTINS="${BUILTINS} qte" |
|---|
| 1832 | | fi |
|---|
| 1833 | | ]) |
|---|
| | 1820 | LDFLAGS_qte="${LDFLAGS_qte} -L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte" |
|---|
| | 1821 | CFLAGS_qte="${CFLAGS_qte} -I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti" |
|---|
| | 1822 | fi |
|---|
| | 1823 | PLUGINS="${PLUGINS} qte" |
|---|
| | 1824 | CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_qte}" |
|---|
| | 1825 | # ac_cv_qte_headers=yes |
|---|
| | 1826 | AC_CHECK_HEADERS(qt.h jpeglib.h, ,[ |
|---|
| | 1827 | # ac_cv_qte_headers=no |
|---|
| | 1828 | AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."]) |
|---|
| | 1829 | ] ) |
|---|
| | 1830 | if test "x${ac_cv_qte_headers}" = "xyes" |
|---|
| | 1831 | then |
|---|
| | 1832 | # CFLAGS_qte="${CFLAGS_qte} -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti" |
|---|
| | 1833 | # LDFLAGS_qte="${LDFLAGS_qte} -ljpeg -lqte" |
|---|
| | 1834 | # PLUGINS="${PLUGINS} qte" |
|---|
| | 1835 | fi |
|---|
| 1834 | 1836 | CPPFLAGS="${CPPFLAGS_save}" |
|---|
| 1835 | 1837 | fi |
|---|
| … | … | |
| 2131 | 2133 | AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH}) |
|---|
| 2132 | 2134 | fi |
|---|
| | 2135 | # check for cross-compiling |
|---|
| | 2136 | GTK_PREFIX= |
|---|
| | 2137 | AC_ARG_WITH(gtk-prefix, |
|---|
| | 2138 | [ --with-gtk-prefix=PATH path to libgtk (needed for cross-compiling), |
|---|
| | 2139 | e.g use as: |
|---|
| | 2140 | --with-gtk-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[]) |
|---|
| | 2141 | if test "x$with_gtk_prefix" != "xno" -a "x$with_gtk_prefix" != "x" |
|---|
| | 2142 | then |
|---|
| | 2143 | GTK_PREFIX="--prefix=$with_gtk_prefix" |
|---|
| | 2144 | fi |
|---|
| 2133 | 2145 | if test "x${GTK_CONFIG}" != "xno" |
|---|
| 2134 | 2146 | then |
|---|
| … | … | |
| 2137 | 2149 | AC_MSG_ERROR([Your development package for Gtk+ is too old, you need at least version 1.2.0. Please upgrade and try again. Alternatively you can also configure with --disable-familiar.]) |
|---|
| 2138 | 2150 | fi |
|---|
| 2139 | | CFLAGS_familiar="${CFLAGS_familiar} `${GTK_CONFIG} --cflags gtk gthread`" |
|---|
| 2140 | | LDFLAGS_familiar="${LDFLAGS_familiar} `${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`" |
|---|
| | 2151 | CFLAGS_familiar="${CFLAGS_familiar} `${GTK_CONFIG} ${GTK_PREFIX} --cflags gtk gthread`" |
|---|
| | 2152 | LDFLAGS_familiar="${LDFLAGS_familiar} `${GTK_CONFIG} ${GTK_PREFIX} --libs gtk gthread | sed 's,-rdynamic,,'`" |
|---|
| 2141 | 2153 | # now look for the gtk.h header |
|---|
| 2142 | 2154 | CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_familiar}" |
|---|
| … | … | |
| 2146 | 2158 | echo "Cannot find gtk development headers." |
|---|
| 2147 | 2159 | ]) |
|---|
| | 2160 | |
|---|
| | 2161 | # now look for gpe support |
|---|
| | 2162 | AC_ARG_WITH(gpe-prefix, |
|---|
| | 2163 | [ --with-gpe-prefix=PATH gpe installation path prefix (default search in \$PATH)],[],[]) |
|---|
| | 2164 | if test "x$with_gpe_prefix" != "xno" -a "x$with_gpe_prefix" != "x" |
|---|
| | 2165 | then |
|---|
| | 2166 | CFLAGS_gpe="-I$with_gpe_prefix/include" |
|---|
| | 2167 | LDFLAGS_gpe="-lXi -lgdk_pixbuf -L$with_gpe_prefix/lib -lgpewidget" |
|---|
| | 2168 | # now look for gpe/init.h header file |
|---|
| | 2169 | CFLAGS_save=$CFLAGS |
|---|
| | 2170 | LDFLAGS_save=$LDFLAGS |
|---|
| | 2171 | CFLAGS="${CFLAGS_familiar} ${CFLAGS_gpe}" |
|---|
| | 2172 | LDFLAGS="${LDFLAGS_familiar} ${LDFLAGS_gpe}" |
|---|
| | 2173 | CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_familiar} ${CFLAGS_gpe}" |
|---|
| | 2174 | ac_cv_gpe_headers=yes |
|---|
| | 2175 | AC_CHECK_HEADERS(gpe/init.h, , |
|---|
| | 2176 | [ ac_cv_gpe_headers=no |
|---|
| | 2177 | AC_MSG_ERROR([Cannot find development headers for libgpewidget...]) ]) |
|---|
| | 2178 | # AC_CHECK_LIB(gpewidget, gpe_application_init, |
|---|
| | 2179 | # [ LDFLAGS_gpe="${LDFLAGS_gpe} -lgpewidget" ], |
|---|
| | 2180 | # [ AC_MSG_ERROR([Cannot find libgpewidget library...]) ]) |
|---|
| | 2181 | CFLAGS=$CFLAGS_save |
|---|
| | 2182 | LDFLAGS=$LDFLAG_save |
|---|
| | 2183 | if test "x${ac_cv_gpe_headers}" = "xyes" |
|---|
| | 2184 | then |
|---|
| | 2185 | CFLAGS_familiar="${CFLAGS_familiar} ${CFLAGS_gpe}" |
|---|
| | 2186 | LDFLAGS_familiar="${LDFLAGS_familiar} ${LDFLAGS_gpe}" |
|---|
| | 2187 | fi |
|---|
| | 2188 | fi |
|---|
| 2148 | 2189 | if test "x${ac_cv_gtk_headers}" = "xyes" |
|---|
| 2149 | 2190 | then |
|---|
| … | … | |
| 2266 | 2307 | [if test "x${enable_opie}" = "xyes"; then |
|---|
| 2267 | 2308 | AC_ARG_WITH(qte, |
|---|
| 2268 | | [ --with-qte=PATH Qt Embedded headers and libraries]) |
|---|
| 2269 | | if test "x${with_qte}" = "x" |
|---|
| | 2309 | [ --with-qte=PATH Qt Embedded headers and libraries]) |
|---|
| | 2310 | if test "x${with_qte}" != "xno" -a "x${with_qte}" != "x" |
|---|
| 2270 | 2311 | then |
|---|
| 2271 | | LDFLAGS_test="-L${QTDIR}/lib" |
|---|
| 2272 | | CPPFLAGS_test="-I${QTDIR}/include" |
|---|
| | 2312 | LDFLAGS_test="-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'`" |
|---|
| | 2313 | CFLAGS_test="-I${with_qte}/include `echo -I${with_qte}/include | sed 's,opt/QtPalmtop,usr,'`" |
|---|
| 2273 | 2314 | else |
|---|
| 2274 | | LDFLAGS_test="-L${with_qte}/lib" |
|---|
| 2275 | | CPPFLAGS_test="-I${with_qte}/include" |
|---|
| | 2315 | LDFLAGS_test="-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`" |
|---|
| | 2316 | CFLAGS_test="-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`" |
|---|
| 2276 | 2317 | fi |
|---|
| | 2318 | CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_test}" |
|---|
| | 2319 | ac_cv_qte_headers=yes |
|---|
| | 2320 | AC_CHECK_HEADERS(qt.h jpeglib.h, ,[ |
|---|
| | 2321 | ac_cv_qte_headers=no |
|---|
| | 2322 | AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."]) |
|---|
| | 2323 | ] ) |
|---|
| | 2324 | if test "x${ac_cv_qte_headers}" = "xyes" |
|---|
| | 2325 | then |
|---|
| | 2326 | CFLAGS_qte="${CFLAGS_qte} ${CFLAGS_test} -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti" |
|---|
| | 2327 | LDFLAGS_qte="${LDFLAGS_qte} ${LDFLAGS_test} -ljpeg -lqte" |
|---|
| | 2328 | fi |
|---|
| | 2329 | CPPFLAGS="${CPPFLAGS_save}" |
|---|
| 2277 | 2330 | |
|---|
| 2278 | 2331 | PLUGINS="${PLUGINS} opie" |
|---|
| 2279 | | LDFLAGS_opie="${LDFLAGS_opie} ${LDFLAGS_test} -lqte" |
|---|
| 2280 | | CPPFLAGS_opie="${CPPFLAGS_opie} ${CPPFLAGS_test}" |
|---|
| | 2332 | LDFLAGS_opie="${LDFLAGS_opie} -lqpe ${LDFLAGS_qte}" |
|---|
| | 2333 | CPPFLAGS_opie="${CPPFLAGS_opie} ${CPPFLAGS_qte}" |
|---|
| 2281 | 2334 | if test -x ${QTEDIR}/bin/moc |
|---|
| 2282 | 2335 | then |
|---|
| r1fb3bb7 |
rcaf200f |
|
| 12 | 12 | export PIXDIR="usr/share/pixmaps" |
|---|
| 13 | 13 | export DESTDIR=/tmp/vlc |
|---|
| | 14 | export DESTDIR=/usr/local/arm/2.95.3/arm-linux |
|---|
| | 15 | export PKGDIR=/home/jpsaman/iPaq/packages/vlc-0.5.0 |
|---|
| 14 | 16 | |
|---|
| 15 | 17 | build: build-stamp |
|---|
| … | … | |
| 32 | 34 | |
|---|
| 33 | 35 | install: build |
|---|
| 34 | | mkdir -p $(DESTDIR)/usr/bin |
|---|
| | 36 | mkdir -p $(PKGDIR)/usr/bin |
|---|
| 35 | 37 | $(STRIP) vlc |
|---|
| 36 | | cp vlc $(DESTDIR)/usr/bin |
|---|
| | 38 | cp vlc $(PKGDIR)/usr/bin |
|---|
| | 39 | |
|---|
| | 40 | install-plugins: install |
|---|
| | 41 | cp plugins/*.so ${PKGDIR}/usr/lib/videolan/vlc |
|---|
| | 42 | $(STRIP) ${PKGDIR}/usr/lib/videolan/vlc |
|---|
| 37 | 43 | |
|---|
| 38 | 44 | .PHONY: build clean install |
|---|
| r1fb3bb7 |
rcaf200f |
|
| 83 | 83 | cp vlc $(PKGDIR)/usr/bin |
|---|
| 84 | 84 | cp ipkg/vlc.gpe ${PKGDIR}/usr/lib/menu/vlc |
|---|
| 85 | | # cp plugins/*.so ${PKGDIR}/usr/lib/videolan/vlc |
|---|
| | 85 | |
|---|
| | 86 | install-plugins: install |
|---|
| | 87 | cp plugins/*.so ${PKGDIR}/usr/lib/videolan/vlc |
|---|
| | 88 | $(STRIP) ${PKGDIR}/usr/lib/videolan/vlc |
|---|
| 86 | 89 | |
|---|
| 87 | 90 | .PHONY: build clean install |
|---|
| r1fb3bb7 |
rcaf200f |
|
| 32 | 32 | --with-tuning=strongarm1100 \ |
|---|
| 33 | 33 | --with-mad-tree=/home/jpsaman/iPaq/src/mad-0.14.2b \ |
|---|
| | 34 | --with-sdl-config-path=/usr/local/arm/2.95.3/arm-linux/opt/QtPalmtop/bin \ |
|---|
| | 35 | --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/opt/QtPalmtop \ |
|---|
| 34 | 36 | --with-qte=/usr/local/arm/2.95.3/arm-linux/opt/QtPalmtop \ |
|---|
| 35 | 37 | --with-ffmpeg-tree=/home/jpsaman/iPaq/src/ffmpeg" |
|---|
| … | … | |
| 52 | 54 | build-stamp: |
|---|
| 53 | 55 | # This is ugly -- I know |
|---|
| 54 | | # patch -p 0 < ipkg/patch |
|---|
| | 56 | # patch -p0 < ipkg/patch |
|---|
| 55 | 57 | |
|---|
| 56 | 58 | $(MAKE) |
|---|
| 57 | 59 | |
|---|
| 58 | | touch build-stamp |
|---|
| 59 | | |
|---|
| 60 | 60 | clean: |
|---|
| 61 | | rm -f build-stamp |
|---|
| 62 | 61 | |
|---|
| 63 | 62 | -$(MAKE) distclean |
|---|
| … | … | |
| 80 | 79 | cp ipkg/vlc.opie ${PKGDIR}/opt/QtPalmtop/bin/opie-vlc |
|---|
| 81 | 80 | cp ipkg/vlc.desktop ${PKGDIR}/opt/QtPalmtop/apps/Applications |
|---|
| 82 | | # cp plugins/*.so ${PKGDIR}/usr/lib/videolan/vlc |
|---|
| | 81 | |
|---|
| | 82 | install-plugins: install |
|---|
| | 83 | cp plugins/*.so ${PKGDIR}/usr/lib/videolan/vlc |
|---|
| | 84 | $(STRIP) ${PKGDIR}/usr/lib/videolan/vlc |
|---|
| 83 | 85 | |
|---|
| 84 | 86 | .PHONY: build clean install |
|---|