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

(-)Makefile (+6 lines)
Lines 22-27 Link Here
22
USE_GMAKE=	yes
22
USE_GMAKE=	yes
23
USE_PERL5_BUILD=	yes
23
USE_PERL5_BUILD=	yes
24
USE_LDCONFIG=	yes
24
USE_LDCONFIG=	yes
25
MAKE_JOBS_SAFE=yes
25
26
26
LICENSE=	BSD
27
LICENSE=	BSD
27
LICENSE_FILE=	${WRKSRC}/COPYING
28
LICENSE_FILE=	${WRKSRC}/COPYING
Lines 56-61 Link Here
56
57
57
.if defined(WITH_SHARED)
58
.if defined(WITH_SHARED)
58
CONFIGURE_ARGS+=	--enable-shared
59
CONFIGURE_ARGS+=	--enable-shared
60
PLIST_SUB+=	SHARED=""
61
.else
62
PLIST_SUB+=	SHARED="@comment "
59
.endif
63
.endif
60
64
61
.include <bsd.port.pre.mk>
65
.include <bsd.port.pre.mk>
Lines 64-69 Link Here
64
CONFIGURE_ARGS+=	--target=x86_64-linux-gcc
68
CONFIGURE_ARGS+=	--target=x86_64-linux-gcc
65
.elif ${ARCH} == "i386"
69
.elif ${ARCH} == "i386"
66
CONFIGURE_ARGS+=	--target=x86-linux-gcc
70
CONFIGURE_ARGS+=	--target=x86-linux-gcc
71
.elif ${ARCH} == "ia64"
72
CONFIGURE_ARGS+=	--target=ia64-linux-gcc
67
.else
73
.else
68
IGNORE=	no support for ${ARCH} the moment. testing/patches are welcome
74
IGNORE=	no support for ${ARCH} the moment. testing/patches are welcome
69
.endif
75
.endif
(-)pkg-plist (-4 / +4 lines)
Lines 13-20 Link Here
13
include/vpx/vpx_image.h
13
include/vpx/vpx_image.h
14
include/vpx/vpx_integer.h
14
include/vpx/vpx_integer.h
15
lib/libvpx.a
15
lib/libvpx.a
16
lib/libvpx.so
16
%%SHARED%%lib/libvpx.so
17
lib/libvpx.so.0
17
%%SHARED%%lib/libvpx.so.0
18
lib/libvpx.so.0.9
18
%%SHARED%%lib/libvpx.so.0.9
19
lib/libvpx.so.0.9.1
19
%%SHARED%%lib/libvpx.so.0.9.1
20
@dirrm include/vpx
20
@dirrm include/vpx
(-)files/patch-configure (+10 lines)
Added Link Here
1
--- configure.orig	2010-08-18 03:12:08.000000000 +0400
2
+++ configure	2010-08-18 03:12:08.000000000 +0400
3
@@ -82,6 +82,7 @@
4
 all_platforms="${all_platforms} armv6-linux-gcc"
5
 all_platforms="${all_platforms} armv6-symbian-gcc"
6
 all_platforms="${all_platforms} armv6-wince-vs8"
7
+all_platforms="${all_platforms} ia64-linux-gcc"
8
 all_platforms="${all_platforms} iwmmxt-linux-rvct"
9
 all_platforms="${all_platforms} iwmmxt-linux-gcc"
10
 all_platforms="${all_platforms} iwmmxt-wince-vs8"

Return to bug 149789