View | Details | Raw Unified | Return to bug 38444
Collapse All | Expand All

(-)xvid/Makefile (-5 / +4 lines)
Lines 6-18 Link Here
6
#
6
#
7
7
8
PORTNAME=	xvid
8
PORTNAME=	xvid
9
PORTVERSION=	0.20020404
9
PORTVERSION=	0.20020412
10
CATEGORIES=	graphics
10
CATEGORIES=	graphics
11
MASTER_SITES=	http://www.xvid.org/ \
11
MASTER_SITES=	http://www.xvid.org/
12
		http://lofi.dyndns.org/
13
DISTNAME=	xvid_snapshot_${PORTVERSION:S/^0.//}
12
DISTNAME=	xvid_snapshot_${PORTVERSION:S/^0.//}
14
13
15
MAINTAINER=	lofi@lofi.dyndns.org
14
MAINTAINER=	michaelnottebrock@gmx.net
16
15
17
BUILD_DEPENDS=	${LOCALBASE}/bin/nasm:${PORTSDIR}/devel/nasm
16
BUILD_DEPENDS=	${LOCALBASE}/bin/nasm:${PORTSDIR}/devel/nasm
18
17
Lines 22-28 Link Here
22
INSTALLS_SHLIB=	yes
21
INSTALLS_SHLIB=	yes
23
22
24
CONFIGURE_WRKSRC=	${WRKDIR}
23
CONFIGURE_WRKSRC=	${WRKDIR}
25
WRKSRC=			${WRKDIR}/xvid_20020404/xvidcore/build/generic
24
WRKSRC=			${WRKDIR}/xvid_20020412/xvidcore/build/generic
26
25
27
pre-everything::
26
pre-everything::
28
.if !defined(WITH_OPTIMIZED_CFLAGS)
27
.if !defined(WITH_OPTIMIZED_CFLAGS)
(-)xvid/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (xvid_snapshot_20020404.tar.gz) = d5d0221a8206f99bf51cd346f9cbf56a
1
MD5 (xvid_snapshot_20020412.tar.gz) = 05643ca7a870bba08631d7ef4127dbb8
(-)xvid/files/patch-src:portab.h (-13 / +7 lines)
Lines 1-22 Link Here
1
--- ../../src/portab.h.orig	Sat Apr  6 15:40:58 2002
1
--- ../../src/portab.h.orig	Thu May 23 04:52:08 2002
2
+++ ../../src/portab.h	Sat Apr  6 15:41:21 2002
2
+++ ../../src/portab.h	Thu May 23 04:54:41 2002
3
@@ -52,6 +52,7 @@
3
@@ -88,7 +88,13 @@
4
 
5
 #elif defined(LINUX) || defined(DJGPP)
6
 
7
+#include "../../../config.h"
8
 
9
 #ifdef _DEBUG
10
 
11
@@ -72,7 +73,11 @@
12
 
4
 
13
 #if defined(LINUX)
5
 #if defined(LINUX)
14
 
6
 
7
+#include "../../../config.h"
8
+
15
+#if defined(HAVE_STDINT_H)
9
+#if defined(HAVE_STDINT_H)
16
 #include <stdint.h>
10
 #include <stdint.h>
17
+#elif defined(HAVE_INTTYPES_H)
11
+#elif defined(HAVE_INTTYPES_H)
18
+#include <inttypes.h>
12
+#include <inttypes.h>
19
+#endif
13
+#endif
20
 
14
 
21
 #else
15
 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
22
 
16
 	type name##_storage[(sizex)*(sizey)+(alignment)-1]; \

Return to bug 38444