Ticket #11768: Portfile

File Portfile, 950 bytes (added by bytestorm@…, 17 years ago)

Adds ssse3 variant and turns on pthreads & pic by default

Line 
1# $Id: Portfile 22938 2007-03-19 21:17:13Z pipping@macports.org $
2
3PortSystem 1.0
4name            x264
5version         20070411
6revision        1
7categories      multimedia
8platforms       darwin
9maintainers     bytestorm@gmail.com
10description     x264 - a free h264/avc encoder
11long_description x264 is a free library for encoding H264/AVC video streams. \
12                The code is written by Laurent Aimar, Eric Petit(OS X), Min \
13                Chen (vfw/nasm), Justin Clay(vfw), Måns Rullgård and Loren \
14                Merritt from scratch. It is released under the terms of the \
15                GPL license.
16homepage        http://www.videolan.org/x264.html
17master_sites    ftp://ftp.videolan.org/pub/videolan/x264/snapshots/
18distname        ${name}-snapshot-${version}-2245
19checksums       sha1 01e97d17dff1ec3041fc83d4c0d3001a017bee55
20use_bzip2       yes
21
22depends_build   bin:svn:subversion
23
24configure.args \
25                --enable-pthread --enable-pic
26
27
28destroot.args   DIR_INSTALL=${destroot}${prefix}
29
30build.target    default
31
32variant ssse3 {
33        depends_build-append     port:yasm
34}