summaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
authorrafan <rafan@FreeBSD.org>2007-07-23 09:36:51 +0000
committerrafan <rafan@FreeBSD.org>2007-07-23 09:36:51 +0000
commitb028b113ef13fa7972bb45d681d7a0abe47c40a6 (patch)
treea76a27ca09341f754b493c264ee71c912a553d89 /multimedia
parent855b1df39bc3a6f03abf878d9c99b5ba0838ba35 (diff)
downloadFreeBSD-ports-b028b113ef13fa7972bb45d681d7a0abe47c40a6.zip
FreeBSD-ports-b028b113ef13fa7972bb45d681d7a0abe47c40a6.tar.gz
- Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/dvdauthor/Makefile1
-rw-r--r--multimedia/gstreamer-plugins/Makefile1
-rw-r--r--multimedia/gstreamer/Makefile3
-rw-r--r--multimedia/gxine/Makefile2
-rw-r--r--multimedia/libdca/Makefile1
-rw-r--r--multimedia/libxine/Makefile2
-rw-r--r--multimedia/mkvtoolnix/Makefile2
-rw-r--r--multimedia/subtitleeditor/Makefile1
-rw-r--r--multimedia/tovid/Makefile1
-rw-r--r--multimedia/transcode/Makefile3
10 files changed, 5 insertions, 12 deletions
diff --git a/multimedia/dvdauthor/Makefile b/multimedia/dvdauthor/Makefile
index 7825cda..f261dda 100644
--- a/multimedia/dvdauthor/Makefile
+++ b/multimedia/dvdauthor/Makefile
@@ -22,7 +22,6 @@ USE_GETOPT_LONG=yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib"
-CONFIGURE_ARGS= --mandir=${MANPREFIX}/man
MAN1= dvdauthor.1 dvddirdel.1 dvdunauthor.1 mpeg2desc.1 spumux.1 spuunmux.1
.include <bsd.port.pre.mk>
diff --git a/multimedia/gstreamer-plugins/Makefile b/multimedia/gstreamer-plugins/Makefile
index af6f1a3..cc37d5b 100644
--- a/multimedia/gstreamer-plugins/Makefile
+++ b/multimedia/gstreamer-plugins/Makefile
@@ -55,7 +55,6 @@ USE_GNOME+= gnomehack gnometarget pkgconfig ltverhack
USE_AUTOTOOLS= libtool:15
GST_PLUGIN?= base
-CONFIGURE_ARGS+=--mandir=${PREFIX}/man
CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
CPPFLAGS="${CPPFLAGS} -I${X11BASE}/include -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
LDFLAGS="${LDFLAGS} -L${X11BASE}/lib -L${LOCALBASE}/lib ${EXTRA_LIBS} ${PTHREAD_LIBS}"
diff --git a/multimedia/gstreamer/Makefile b/multimedia/gstreamer/Makefile
index 9cee213..cb2286a 100644
--- a/multimedia/gstreamer/Makefile
+++ b/multimedia/gstreamer/Makefile
@@ -31,8 +31,7 @@ CONFIGURE_ARGS= --disable-tests \
--disable-examples \
--disable-docs-build \
--disable-failing-tests \
- --disable-gtk-doc \
- --mandir=${PREFIX}/man
+ --disable-gtk-doc
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" \
ac_cv_func_register_printf_function="no"
diff --git a/multimedia/gxine/Makefile b/multimedia/gxine/Makefile
index dbceeee..c212180 100644
--- a/multimedia/gxine/Makefile
+++ b/multimedia/gxine/Makefile
@@ -23,7 +23,7 @@ USE_GNOME= gtk20 gnomehier
USE_GMAKE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -I${X11BASE}/lib"
-CONFIGURE_ARGS+=--mandir=${PREFIX}/man --x-includes=${X11BASE}/include \
+CONFIGURE_ARGS+=--x-includes=${X11BASE}/include \
--x-libraries=${X11BASE}/lib
CFLAGS= -O2 -fno-strict-aliasing -pipe
INSTALLS_ICONS= yes
diff --git a/multimedia/libdca/Makefile b/multimedia/libdca/Makefile
index 40583f5..e8e73c0 100644
--- a/multimedia/libdca/Makefile
+++ b/multimedia/libdca/Makefile
@@ -14,7 +14,6 @@ MAINTAINER= pav@FreeBSD.org
COMMENT= Free DTS Coherent Acoustics decoder
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --mandir=${PREFIX}/man
USE_BZIP2= yes
USE_GNOME= pkgconfig gnomehack
USE_LDCONFIG= yes
diff --git a/multimedia/libxine/Makefile b/multimedia/libxine/Makefile
index 47f43f5..5722d45 100644
--- a/multimedia/libxine/Makefile
+++ b/multimedia/libxine/Makefile
@@ -49,7 +49,7 @@ CONFIGURE_ENV= CFLAGS="${CFLAGS} -fno-force-addr -I${LOCALBASE}/include -I${LOCA
THREAD_LIBS="${PTHREAD_LIBS}" \
EXTRA_X_LIBS="-lGL -lGLU -lXext -lX11 -lm"
CONFIGURE_ARGS= --with-w32-path=${LOCALBASE}/lib/win32 --enable-ipv6 \
- --mandir=${PREFIX}/man --with-external-libmad \
+ --with-external-libmad \
--with-external-libdts --with-libflac --disable-v4l
OPTIONS= ARTS "Enable aRts support" off \
diff --git a/multimedia/mkvtoolnix/Makefile b/multimedia/mkvtoolnix/Makefile
index 4cf40ea..7b788bd 100644
--- a/multimedia/mkvtoolnix/Makefile
+++ b/multimedia/mkvtoolnix/Makefile
@@ -30,7 +30,7 @@ GNU_CONFIGURE= yes
CPPFLAGS= -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib -lmagic -lz
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
-CONFIGURE_ARGS= --mandir=${MANPREFIX}/man --enable-lzo --enable-bz2 --disable-qt
+CONFIGURE_ARGS= --enable-lzo --enable-bz2 --disable-qt
MAN1= base64tool.1 mkvextract.1 mkvinfo.1 mkvmerge.1
PLIST_FILES= bin/base64tool bin/mkvextract bin/mkvinfo bin/mkvmerge
diff --git a/multimedia/subtitleeditor/Makefile b/multimedia/subtitleeditor/Makefile
index 257a9c6..527e8dd 100644
--- a/multimedia/subtitleeditor/Makefile
+++ b/multimedia/subtitleeditor/Makefile
@@ -25,7 +25,6 @@ USE_GNOME= gtk20
USE_GSTREAMER= good
USE_GETTEXT= yes
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --mandir=${MANPREFIX}/man
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CPPFLAGS= -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib
diff --git a/multimedia/tovid/Makefile b/multimedia/tovid/Makefile
index 3df0ddc..4f6117f 100644
--- a/multimedia/tovid/Makefile
+++ b/multimedia/tovid/Makefile
@@ -43,7 +43,6 @@ USE_PYTHON= yes
USE_CDRTOOLS= yes
INSTALLS_ICONS= yes
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --mandir=${PREFIX}/man
MAN1= idvid.1 makedvd.1 makemenu.1 makeslides.1 makevcd.1 makexml.1 \
postproc.1 pymakexml.1 todisc.1 tovid-stats.1 tovid.1
diff --git a/multimedia/transcode/Makefile b/multimedia/transcode/Makefile
index 880fdbc..928a2c6 100644
--- a/multimedia/transcode/Makefile
+++ b/multimedia/transcode/Makefile
@@ -39,8 +39,7 @@ CONFIGURE_ARGS+= --with-libavcodec-includes=${LOCALBASE}/include/ffmpeg \
--with-libdvdread-prefix=${LOCALBASE} \
--with-libiconv-prefix=${LOCALBASE} \
--enable-oss \
- --enable-gtk=no \
- --mandir=${PREFIX}/man
+ --enable-gtk=no
MAN1= avifix.1 aviindex.1 avimerge.1 avisplit.1 avisync.1 tccat.1 tcdemux.1 \
tcprobe.1 tcscan.1 transcode.1 tcextract.1 tcdecode.1 tcmodinfo.1 \
OpenPOWER on IntegriCloud