diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2003-02-01 17:45:07 +0000 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2003-02-01 17:45:07 +0000 |
commit | 887423e82c389b56c7ea2c0df4f91727b5d2f95e (patch) | |
tree | 1ce56f2cf954ea34fc61117a512ccc5b8a6accd6 | |
parent | Update to 2.1.11. (diff) |
Remove graphics/xine_dvdnav_plugin. It is integrated into graphics/libxine.
Notes
Notes:
svn path=/head/; revision=74428
-rw-r--r-- | MOVED | 1 | ||||
-rw-r--r-- | graphics/Makefile | 1 | ||||
-rw-r--r-- | graphics/xine_dvdnav_plugin/Makefile | 35 | ||||
-rw-r--r-- | graphics/xine_dvdnav_plugin/distinfo | 1 | ||||
-rw-r--r-- | graphics/xine_dvdnav_plugin/files/patch-input:input_dvdnav.c | 32 | ||||
-rw-r--r-- | graphics/xine_dvdnav_plugin/files/patch-ltmain.sh | 23 | ||||
-rw-r--r-- | graphics/xine_dvdnav_plugin/pkg-comment | 1 | ||||
-rw-r--r-- | graphics/xine_dvdnav_plugin/pkg-descr | 6 | ||||
-rw-r--r-- | graphics/xine_dvdnav_plugin/pkg-plist | 2 |
9 files changed, 1 insertions, 101 deletions
@@ -158,3 +158,4 @@ misc/kde3-i18n-pt|portuguese/kde3-i18n|2003-01-28|new category misc/kde3-i18n-pt_BR|portuguese/kde3-i18n-pt_BR|2003-01-28|new category lang/php4||2003-01-29|integrated into www/mod_php4 biology/gaussian||2003-01-31|deleted maintain is hard and gray in license +graphics/xine_dvdnav_plugin||2003-02-01|integrated into graphics/libxine diff --git a/graphics/Makefile b/graphics/Makefile index 9a659d454220..2e1ce2633818 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -404,7 +404,6 @@ SUBDIR += xine SUBDIR += xine_d4d_plugin SUBDIR += xine_d5d_plugin - SUBDIR += xine_dvdnav_plugin SUBDIR += xli SUBDIR += xmagv SUBDIR += xmandel diff --git a/graphics/xine_dvdnav_plugin/Makefile b/graphics/xine_dvdnav_plugin/Makefile deleted file mode 100644 index 5f2ee6318af5..000000000000 --- a/graphics/xine_dvdnav_plugin/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# New ports collection makefile for: xine-dvdnav-plugin -# Date created: 21 Nov 2001 -# Whom: MANTANI Nobutaka <nobutaka@nobutaka.com> -# -# $FreeBSD$ -# - -PORTNAME= xine_dvdnav_plugin -PORTVERSION= 0.9.13 -CATEGORIES= graphics -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= dvd -DISTNAME= xine-dvdnav-${PORTVERSION} - -MAINTAINER= nobutaka@FreeBSD.org - -LIB_DEPENDS= xine.2:${PORTSDIR}/graphics/libxine \ - dvdnav.1:${PORTSDIR}/graphics/libdvdnav - -GNU_CONFIGURE= yes -CONFIGURE_ENV= THREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - THREAD_LIBS="${PTHREAD_LIBS}" \ - LDFLAGS="-L${LOCALBASE}/lib" \ - CPPFLAGS="-I${LOCALBASE}/include" -USE_X_PREFIX= yes -INSTALLS_SHLIB= yes - -post-patch: - @${PERL} -pi -e \ - 's|THREAD_LIBS=.*$$|THREAD_LIBS="\$$THREAD_LIBS"|g ; \ - s|THREAD_CFLAGS=.*$$|THREAD_CFLAGS="\$$THREAD_CFLAGS"|g ; \ - s|-L/usr/local/lib||g ; \ - s|-I/usr/local/include||g' ${WRKSRC}/configure - -.include <bsd.port.mk> diff --git a/graphics/xine_dvdnav_plugin/distinfo b/graphics/xine_dvdnav_plugin/distinfo deleted file mode 100644 index 3ab5dfaf60cf..000000000000 --- a/graphics/xine_dvdnav_plugin/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (xine-dvdnav-0.9.13.tar.gz) = 59de68e8a7b2d86f72b8c8858e7524d1 diff --git a/graphics/xine_dvdnav_plugin/files/patch-input:input_dvdnav.c b/graphics/xine_dvdnav_plugin/files/patch-input:input_dvdnav.c deleted file mode 100644 index 76808a96f239..000000000000 --- a/graphics/xine_dvdnav_plugin/files/patch-input:input_dvdnav.c +++ /dev/null @@ -1,32 +0,0 @@ ---- input/input_dvdnav.c.orig Fri Apr 26 04:10:57 2002 -+++ input/input_dvdnav.c Tue May 21 02:24:15 2002 -@@ -38,7 +38,6 @@ - #include <string.h> - #include <errno.h> - --#include <sys/mount.h> - #include <sys/wait.h> - - #include <sys/poll.h> -@@ -347,17 +346,17 @@ - } - if (1) { - int fd, i; -- off64_t off; -+ off_t off; - uint8_t data[DVD_VIDEO_LB_LEN]; - - /* Read DVD name */ - fd=open(intended_dvd_device, O_RDONLY); - if (fd > 0) { -- off = lseek64( fd, 32 * (int64_t) DVD_VIDEO_LB_LEN, SEEK_SET ); -- if( off == ( 32 * (int64_t) DVD_VIDEO_LB_LEN ) ) { -+ off = lseek( fd, 32 * DVD_VIDEO_LB_LEN, SEEK_SET ); -+ if( off == ( 32 * DVD_VIDEO_LB_LEN ) ) { - off = read( fd, data, DVD_VIDEO_LB_LEN ); - close(fd); -- if (off == ( (int64_t) DVD_VIDEO_LB_LEN )) { -+ if (off == ( DVD_VIDEO_LB_LEN )) { - fprintf( stderr, "DVD Title: "); - for(i=25; i < 73; i++ ) { - if((data[i] == 0)) break; diff --git a/graphics/xine_dvdnav_plugin/files/patch-ltmain.sh b/graphics/xine_dvdnav_plugin/files/patch-ltmain.sh deleted file mode 100644 index 6a290af7eb87..000000000000 --- a/graphics/xine_dvdnav_plugin/files/patch-ltmain.sh +++ /dev/null @@ -1,23 +0,0 @@ ---- ltmain.sh.orig Tue Jan 29 21:23:16 2002 -+++ ltmain.sh Tue Jan 29 21:25:19 2002 -@@ -944,6 +944,7 @@ - ;; - - -avoid-version) -+ build_old_libs=no - avoid_version=yes - continue - ;; -@@ -4175,10 +4176,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/graphics/xine_dvdnav_plugin/pkg-comment b/graphics/xine_dvdnav_plugin/pkg-comment deleted file mode 100644 index a573f7873fc8..000000000000 --- a/graphics/xine_dvdnav_plugin/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A dvd input plugin for xine diff --git a/graphics/xine_dvdnav_plugin/pkg-descr b/graphics/xine_dvdnav_plugin/pkg-descr deleted file mode 100644 index 26c5db9a8e6b..000000000000 --- a/graphics/xine_dvdnav_plugin/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -A dvd input plugin for xine. - -WWW: http://dvd.sourceforge.net/xine-dvdnav.shtml - --- -MANTANI Nobutaka <nobutaka@FreeBSD.org> diff --git a/graphics/xine_dvdnav_plugin/pkg-plist b/graphics/xine_dvdnav_plugin/pkg-plist deleted file mode 100644 index 0ed366e343a2..000000000000 --- a/graphics/xine_dvdnav_plugin/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -lib/xine/plugins/xineplug_inp_dvdnav.so -@unexec rmdir %D/lib/xine/plugins 2>/dev/null || true |