diff options
author | mezz <mezz@FreeBSD.org> | 2006-07-02 23:38:18 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2006-07-02 23:38:18 +0800 |
commit | 85b1ace0841d9bce8f4f29c4907460f4a6e49700 (patch) | |
tree | 3e3db1163c3a69cc3fd30c01b2ffda3a00c08d67 | |
parent | 6eb975676c5e0aee86bee5fae39a70ea589aefe2 (diff) | |
download | freebsd-ports-gnome-85b1ace0841d9bce8f4f29c4907460f4a6e49700.tar.gz freebsd-ports-gnome-85b1ace0841d9bce8f4f29c4907460f4a6e49700.tar.zst freebsd-ports-gnome-85b1ace0841d9bce8f4f29c4907460f4a6e49700.zip |
Add multimedia/handbrake-gtk2, still at 0.6.x version because in the 0.7.x
version, the GTK+2 support has been disabled. The multimedia/handbrake is
going to be update to 0.7.x soon after this. Add an entry about it in the
UPDATING.
While I am here, add two new mirrors.
PR: ports/99616
Repocopy by: marcus
-rw-r--r-- | CVSROOT/modules | 1 | ||||
-rw-r--r-- | UPDATING | 9 | ||||
-rw-r--r-- | multimedia/Makefile | 1 | ||||
-rw-r--r-- | multimedia/handbrake-gtk2/Makefile | 21 |
4 files changed, 23 insertions, 9 deletions
diff --git a/CVSROOT/modules b/CVSROOT/modules index 3469c5d19d9a..a3b6f5f9aa24 100644 --- a/CVSROOT/modules +++ b/CVSROOT/modules @@ -3912,6 +3912,7 @@ hamfax ports/comms/hamfax hamlib ports/comms/hamlib hammerhead ports/sysutils/hammerhead handbrake ports/multimedia/handbrake +handbrake-gtk2 ports/multimedia/handbrake-gtk2 hangman ports/games/hangman happydoc ports/devel/happydoc happystats ports/net/happystats @@ -6,6 +6,15 @@ You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20060702: + AFFECTS: users of multimedia/handbrake + AUTHOR: multimedia@FreeBSD.org + + The GTK+2 version in the 0.7.x has been disabled by the author, because it + does not work anymore. If you still want to keep with GTK+2 version, go + with multimedia/handbrake-gtk2 (still 0.6.x) instead. The name of binary + has been renamed to handbrake-gtk2 too. + 20060701: AFFECTS: users of www/phpbb AUTHOR: miwi@FreeBSD.org diff --git a/multimedia/Makefile b/multimedia/Makefile index 3e74fd9472a4..de448eacf23b 100644 --- a/multimedia/Makefile +++ b/multimedia/Makefile @@ -82,6 +82,7 @@ SUBDIR += gxine SUBDIR += gxmms SUBDIR += handbrake + SUBDIR += handbrake-gtk2 SUBDIR += hayes SUBDIR += helixplayer SUBDIR += istanbul diff --git a/multimedia/handbrake-gtk2/Makefile b/multimedia/handbrake-gtk2/Makefile index e81f054323d0..5e22588e7bdc 100644 --- a/multimedia/handbrake-gtk2/Makefile +++ b/multimedia/handbrake-gtk2/Makefile @@ -9,7 +9,10 @@ PORTNAME= handbrake PORTVERSION= 0.6.2 PORTREVISION= 3 CATEGORIES= multimedia -MASTER_SITES= http://download.m0k.org/${PORTNAME}/ +MASTER_SITES= http://download.m0k.org/${PORTNAME}/ \ + http://www.mirrors.ausmac.net/ftp/AudioVisual-SW/HandBrake/ \ + http://apple.doit.wisc.edu/mirrors/ausmac/Audio-SW/HandBrake/ +PKGNAMESUFFIX= -gtk2 DISTNAME= HandBrake-${PORTVERSION}-src MAINTAINER= multimedia@FreeBSD.org @@ -30,7 +33,7 @@ LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ vorbis.3:${PORTSDIR}/audio/libvorbis \ xvidcore.4:${PORTSDIR}/multimedia/xvid -PLIST_FILES= bin/handbrake +PLIST_FILES= bin/handbrake-gtk2 WRKSRC= ${WRKDIR}/HandBrake-${PORTVERSION} USE_GNOME= gtk20 @@ -64,13 +67,6 @@ WITH_DVD_DEVICE?= acd0c WITH_DVD_DEVICE?= acd0 .endif -# jam -dx, it will giving a verbose of build. -do-build: - @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} jam -dx) - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/gtk2HB ${PREFIX}/bin/handbrake - post-patch: @${REINPLACE_CMD} -e 's:%%PREFIX%%:${LOCALBASE}:g' \ -e 's:%%PTHREAD_LIBS%%:${PTHREAD_LIBS}:g' \ @@ -84,4 +80,11 @@ post-patch: @${REINPLACE_CMD} -e 's|/usr/sbin/sysctl|${SYSCTL_CMD}|' \ ${BUILD_WRKSRC}/core/HandBrake.c +# jam -dx, it will giving a verbose of build. +do-build: + @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} jam -dx) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/gtk2HB ${PREFIX}/bin/handbrake-gtk2 + .include <bsd.port.post.mk> |