mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +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.
39 lines
1.0 KiB
Makefile
39 lines
1.0 KiB
Makefile
# New ports collection makefile for: rosegarden
|
|
# Date created: 04 Aug 1996
|
|
# Whom: shanee@augusta.de
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rosegarden
|
|
PORTVERSION= 2.1.2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.cannam.demon.co.uk/rosegarden/distribution/
|
|
DISTNAME= ${PORTNAME}-2.1pl2
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= The Rosegarden Editor and Sequencer suite
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/tclmidi/tclmidi31.so:${PORTSDIR}/audio/tclmidi
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/tclmidi/tclmidi31.so:${PORTSDIR}/audio/tclmidi
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_REINPLACE= yes
|
|
USE_AUTOCONF_VER= 213
|
|
CONFIGURE_ENV= MAKEDEPEND=${TRUE}
|
|
CONFIGURE_ARGS= --with-tclincl=${LOCALBASE}/include/tcl8.2
|
|
|
|
post-patch:
|
|
@${CP} ${FILESDIR}/rosegarden ${WRKSRC}/rosegarden.sh
|
|
.for file in Rosegarden rosegarden.sh
|
|
@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/${file}
|
|
.endfor
|
|
|
|
do-install:
|
|
@( \
|
|
cd ${WRKSRC} ; ${SETENV} PREFIX="${PREFIX}" ./do-install \
|
|
)
|
|
${INSTALL_SCRIPT} ${WRKSRC}/rosegarden.sh ${PREFIX}/bin/rosegarden
|
|
|
|
.include <bsd.port.mk>
|