blob: d33cb09d7fbb2820c375826792747fe898efe672 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# ex:ts=8
# Ports collection makefile for: mp3stat
# Date created: Mar 20, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= mp3stat
PORTVERSION= 2.5.6
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= ftp://ftp.cronyx.ru/pub/FreeBSD/ports/distfiles/
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Read information about mp3s and oggs bitstream
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USE_GNOMENG= yes
USE_GNOME= gtk12
USE_GMAKE= yes
MAKE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"
.if defined(WITH_VORBIS)
LIB_DEPENDS= vorbis.2:${PORTSDIR}/audio/libvorbis
MAKE_ENV+= WITH_VORBIS="${WITH_VORBIS}"
pre-everything::
@${ECHO_MSG}
@${ECHO_MSG} "If you want to compile with Ogg/Vorbis support,"
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_VORBIS=yes\""
@${ECHO_MSG}
.endif
.include <bsd.port.mk>
|