mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# New ports collection makefile for: tunepimp
|
|
# Date Created: 11 Aug 2004
|
|
# Whom: Lauri Watts <lauri@kde.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libtunepimp
|
|
PORTVERSION= 0.3.0
|
|
PORTEPOCH= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ftp://ftp.musicbrainz.org/pub/musicbrainz/
|
|
|
|
MAINTAINER= lauri@kde.org
|
|
COMMENT= Client library for musicbrainz
|
|
|
|
LIB_DEPENDS= vorbis:${PORTSDIR}/audio/libvorbis \
|
|
FLAC:${PORTSDIR}/audio/flac \
|
|
mad:${PORTSDIR}/audio/libmad \
|
|
ogg:${PORTSDIR}/audio/libogg \
|
|
expat:${PORTSDIR}/textproc/expat2 \
|
|
musicbrainz:${PORTSDIR}/audio/libmusicbrainz
|
|
|
|
CONFLICTS= trm-0*
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack gnometarget pkgconfig
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
INSTALLS_SHLIB= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^CFLAGS=|#CFLAGS=|g ; \
|
|
s|^CXXFLAGS=|#CXXFLAGS=|g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|-lthr|${PTHREAD_LIBS}|g' \
|
|
${WRKSRC}/lib/threads/posix/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|