mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
25 lines
523 B
Makefile
25 lines
523 B
Makefile
# New ports collection makefile for: libmad
|
|
# Date created: 26 November 2003
|
|
# Whom: Sergey Akifyev <asa@gascom.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libmad
|
|
PORTVERSION= 0.15.0b
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
ftp://ftp.mars.org/pub/mpeg/
|
|
MASTER_SITE_SUBDIR= mad
|
|
|
|
MAINTAINER= asa@gascom.ru
|
|
COMMENT= Libmad library (part of MAD project)
|
|
|
|
USE_LIBTOOL_VER= 13
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ARGS= --disable-debugging \
|
|
--enable-sso \
|
|
--enable-accuracy
|
|
|
|
.include <bsd.port.mk>
|