blob: 127eee8c5dd3e06d799321ffdbb2eb30bfaec427 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# New ports collection makefile for: herrie
# Date created: 01 August 2006
# Whom: Ed Schouten <ed@fxq.nl>
#
# $FreeBSD$
#
PORTNAME= herrie
PORTVERSION= 2.2
PORTREVISION= 5
CATEGORIES= audio
MASTER_SITES= http://herrie.info/distfiles/ \
http://www.stack.nl/~ed/projects/herrie/distfiles/
MAINTAINER= ed@FreeBSD.org
COMMENT= A small command line interface music player
HAS_CONFIGURE= yes
CONFIGURE_ARGS+=verbose
CONFIGURE_ENV+= PREFIX=${PREFIX}
USE_BZIP2= yes
USE_GNOME= glib20
OPTIONS= MAD "MAD MP3 support" on \
VORBIS "Ogg Vorbis support" on \
SNDFILE "libsndfile support" off \
MODPLUG "libmodplug support" off \
HTTP "HTTP streams and AudioScrobbler support" on \
LIBAO "LibAO support (breaks chroot)" off \
XCURSES "Build XCurses version" off \
XSPF "Support for XSPF playlists" on
MAN1= herrie.1
MANCOMPRESSED= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 602107 || (${OSVERSION} > 700000 && ${OSVERSION} < 700033)
CONFIGURE_ARGS+=ncurses
.endif
.if !defined(WITHOUT_MAD)
LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/mad \
id3tag.0:${PORTSDIR}/audio/libid3tag
.else
CONFIGURE_ARGS+=no_mp3
.endif
.if !defined(WITHOUT_VORBIS)
LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis
.else
CONFIGURE_ARGS+=no_vorbis
.endif
.if !defined(WITHOUT_SNDFILE)
LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile
.else
CONFIGURE_ARGS+=no_sndfile
.endif
.if !defined(WITHOUT_MODPLUG)
LIB_DEPENDS+= modplug:${PORTSDIR}/audio/libmodplug
.else
CONFIGURE_ARGS+=no_modplug
.endif
.if !defined(WITHOUT_HTTP)
LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl
.else
CONFIGURE_ARGS+=no_http no_scrobbler
.endif
.if !defined(WITHOUT_LIBAO)
LIB_DEPENDS+= ao.3:${PORTSDIR}/audio/libao
CONFIGURE_ARGS+=ao
.endif
.if !defined(WITHOUT_XCURSES)
LIB_DEPENDS+= XCurses.2:${PORTSDIR}/devel/pdcurses
CONFIGURE_ARGS+=xcurses
.endif
.if !defined(WITHOUT_XSPF)
LIB_DEPENDS+= xspf.4:${PORTSDIR}/multimedia/libxspf
.else
CONFIGURE_ARGS+=no_xspf
.endif
.if !defined(WITHOUT_NLS)
PLIST_SUB+= NLS=""
USE_GETTEXT= yes
.else
PLIST_SUB+= NLS="@comment "
CONFIGURE_ARGS+=no_nls
.endif
.include <bsd.port.post.mk>
|