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.
33 lines
817 B
Makefile
33 lines
817 B
Makefile
# New ports collection makefile for: xmms-crossfade
|
|
# Date created: 21 September 2000
|
|
# Whom: Espen Skoglund <esk@ira.uka.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xmms-crossfade
|
|
PORTVERSION= 0.3.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.mynetcologne.de/~nc-eisenlpe2/xmms-crossfade/ \
|
|
ftp://ftp.falsehope.com/pub/xmms-crossfade/
|
|
|
|
MAINTAINER= pat@FreeBSD.org
|
|
COMMENT= XMMS Output plugin for crossfading between songs
|
|
|
|
LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_LIBTOOL_VER= 13
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gtk12
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-install:
|
|
.ifndef(NOPORTDOCS)
|
|
@${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m ${SHAREMODE} \
|
|
${PREFIX}/share/doc/${PORTNAME}
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/${PORTNAME}
|
|
.endif # !NOPORTDOCS
|
|
|
|
.include <bsd.port.mk>
|