1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/audio/libtremor/Makefile
Jeremy Messenger 789d75c728 -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:	marcus and kwm
Pointyhat-exp:	a few times by pav
Tested by:	pgollucci, "Romain Tartière" <romain@blogreen.org>, and
		a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:	marcus
Approved by:	portmgr
2009-08-02 19:36:34 +00:00

48 lines
1.2 KiB
Makefile

# New ports collection makefile for: libtremor
# Date created: 07 December 2003
# Whom: kwm@rainbow-runner.nl
#
# $FreeBSD$
#
PORTNAME= libtremor
PORTVERSION= 1.0.2.${SNAP_DATE}
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://members.chello.nl/~g.mast/distfiles/
DISTNAME= tremor_snapshot_${SNAP_DATE}
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Integer-only fully Ogg Vorbis compliant decoder library
SNAP_DATE= 02132004
WRKSRC= ${WRKDIR}/Tremor
USE_AUTOTOOLS= automake:15 autoconf:262 libtool:22
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
pre-configure:
@cd ${WRKSRC} && ${ACLOCAL}
@cd ${WRKSRC} && ${LIBTOOLIZE} --automake
@${REINPLACE_CMD} -e '/^_LT_AC_SHELL_INIT/d' ${WRKSRC}/aclocal.m4
@cd ${WRKSRC} && ${AUTOMAKE} --add-missing
@cd ${WRKSRC} && ${AUTOCONF}
do-install:
for i in ${WRKSRC}/.libs/libvorbisidec.so.1 \
${WRKSRC}/.libs/libvorbisidec.so \
${WRKSRC}/.libs/libvorbisidec.a ; do \
${INSTALL_SCRIPT} $$i ${PREFIX}/lib ; \
done
@${MKDIR} ${PREFIX}/include/tremor
for i in ${WRKSRC}/config_types.h \
${WRKSRC}/ivorbiscodec.h \
${WRKSRC}/ivorbisfile.h \
${WRKSRC}/ogg.h \
${WRKSRC}/os_types.h ; do \
${INSTALL_SCRIPT} $$i ${PREFIX}/include/tremor ; \
done
.include <bsd.port.mk>