summaryrefslogtreecommitdiff
path: root/multimedia/ldvd/files/patch-ldvd-ls.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-08-01 05:24:51 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-08-01 05:24:51 +0000
commitf32b4a646d57ce481b4dd7fe5833576a69aa79d5 (patch)
tree6c82ba3db072751cdb149734b14210803e71bfa2 /multimedia/ldvd/files/patch-ldvd-ls.c
parentRemove gnomeicu: expired port (diff)
Bye bye abandonwares (part 4)
2011-08-01 korean/a2ps: Looks like an abandonware, no more public distfiles 2011-08-01 korean/bitchx: Look like an abandonware, no more public distifles 2011-08-01 korean/elm: Look like an abandonware, no more public distifles 2011-08-01 korean/linuxdoc-sgml: Look like an abandonware, no more public distifles 2011-08-01 korean/mod_url: Look like an abandonware, no more public distifles 2011-08-01 korean/nh2ps: Look like an abandonware, no more public distifles 2011-08-01 korean/pinetreefonts: No more public distfile 2011-08-01 mail/bincimap: No more public distfile 2011-08-01 mail/cmail: No more public distfile 2011-08-01 math/hexcalc: Look like an abandonware, no more public distifles 2011-08-01 math/qgfe: Look like an abandonware, no more public distifles 2011-08-01 misc/ewipe: Look like an abandonware, no more public distifles 2011-08-01 misc/gkrellmfmonitor2: Look like an abandonware, no more public distifles 2011-08-01 misc/gkx86info: Look like an abandonware, no more public distifles 2011-08-01 multimedia/goggles: Abandonware, see: http://www.fifthplanet.net/2010/01/dead-projects-goggles-dvd-player.html 2011-08-01 multimedia/ldvd: Abandonware 2011-08-01 multimedia/linux-divx4linux: No more needed 2011-08-01 multimedia/linux-divx4linux4: No more needed 2011-08-01 multimedia/ogle: Abandonware 2011-08-01 multimedia/ogle-gui: Abandonware 2011-08-01 multimedia/okle: Abandonware 2011-08-01 multimedia/subconv: Look like an abandonware, no more public distifles 2011-08-01 net/callgen323: Look like an abandonware, no more public distifles 2011-08-01 net/lyntin: No longer under active development 2011-08-01 net/py-rt: No more public distfiles, looks like an abandonware 2011-08-01 net/rwhoisd: Looks like an abandonware, no more public distfiles 2011-08-01 net/traffic: Looks like an abandonware, no more public distfiles 2011-07-23 net-im/gnomeicu: No longer maintain by upstream, use net-im/empathy instead 2011-08-01 net-mgmt/trafd: Look like an abandonware, no more public distifles 2011-08-01 net-p2p/gkrellm-gift: Look like an abandonware, no more public distifles 2011-08-01 news/bgrab: Looks like an abandonware, no more public distfiles 2011-08-01 news/rkive: Looks like an abandonware, no more public distfiles 2011-08-01 polish/sap: Looks like an abandonware, no more public distfiles 2011-08-01 print/nenscript: Looks like an abandonware, no more public distfiles
Diffstat (limited to 'multimedia/ldvd/files/patch-ldvd-ls.c')
-rw-r--r--multimedia/ldvd/files/patch-ldvd-ls.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/multimedia/ldvd/files/patch-ldvd-ls.c b/multimedia/ldvd/files/patch-ldvd-ls.c
deleted file mode 100644
index 002ca12bc748..000000000000
--- a/multimedia/ldvd/files/patch-ldvd-ls.c
+++ /dev/null
@@ -1,34 +0,0 @@
---- ldvd-ls.c.orig Thu Dec 8 22:09:02 2005
-+++ ldvd-ls.c Thu Dec 8 22:51:43 2005
-@@ -155,18 +155,25 @@
- return -1;
- }
-
-- if ( fseek(filehandle, 32808, SEEK_SET )) {
-+ if ( fseek(filehandle, 32768, SEEK_SET )) {
- fclose(filehandle);
- fprintf(stderr, "Couldn't seek in %s for title\n", dvd_device);
- strcpy(title, "unknown");
- return -1;
- }
-
-- if ( 32 != (i = fread(title, 1, 32, filehandle)) ) {
-- fclose(filehandle);
-- fprintf(stderr, "Couldn't read enough bytes for title.\n");
-- strcpy(title, "unknown");
-- return -1;
-+ {
-+ #define DVD_SEC_SIZ 2048
-+ char tempBuf[ DVD_SEC_SIZ ];
-+
-+ if ( DVD_SEC_SIZ != fread(tempBuf, 1, DVD_SEC_SIZ, filehandle) ) {
-+ fclose(filehandle);
-+ fprintf(stderr, "Couldn't read enough bytes for title.\n");
-+ strcpy(title, "unknown");
-+ return -1;
-+ }
-+ snprintf( title, 32, "%s", tempBuf + 40 );
-+ i=32;
- }
-
- fclose (filehandle);