blob: d2621c6e3e265a5d7942de307f897386b7a85ea3 (
plain)
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
38
39
40
41
42
43
|
# New ports collection makefile for: tunesbrowser
# Date created: 2004-07-27
# Whom: Michael Johnson <ahze@ahze.net>
#
# $FreeBSD$
# $MCom: ports/audio/tunesbrowser/Makefile,v 1.7 2006/04/29 10:51:51 pav Exp $
PORTNAME= tunesbrowser
PORTVERSION= 0.3.0
PORTREVISION= 2
CATEGORIES= audio
MASTER_SITES= http://crazney.net/programs/itunes/files/
MAINTAINER= ports@FreeBSD.org
COMMENT= Simple iTunes-like music player
LIB_DEPENDS= opendaap.0:${PORTSDIR}/devel/libopendaap
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GNOME= gnomehack gnomeprefix gnometarget libglade2
WANT_GNOME= yes
USE_GSTREAMER80= mad
GNU_CONFIGURE= yes
MAN1= tunesbrowser.1
OPTIONS= FAAD "Enable AAC/MP4 Audio output" Off
.include <bsd.port.pre.mk>
.if defined(WITH_FAAD)
USE_GSTREAMER80+= faad
.endif
.if ${HAVE_GNOME:Mlibgnome}!=""
PKGNAMESUFFIX= -gnome
USE_GNOME+= libgnome
.else
CONFIGURE_ARGS+= --disable-gnome
.endif
.include <bsd.port.post.mk>
|