aboutsummaryrefslogtreecommitdiffstats
path: root/audio/gqmpeg/Makefile
blob: ef46016c35ebb9f50415cde0f0955809226c0a54 (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
# New ports collection makefile for:    gqmpeg
# Date Created:     28 Oct 1998
# Whom:         Vanilla Pooh Shu <vanilla@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   gqmpeg
PORTVERSION=    0.19.0
CATEGORIES+=    audio
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

MAINTAINER?=    lyngbol@wheel.dk
COMMENT?=   Another gtk-based MP3 frontend

.if defined(WITH_MPG321)
RUN_DEPENDS=    mpg321:${PORTSDIR}/audio/mpg321
.else
RUN_DEPENDS=    mpg123:${PORTSDIR}/audio/mpg123
.endif

USE_REINPLACE=  yes
USE_X_PREFIX=   yes
USE_GNOME=  gdkpixbuf
WANT_GNOME= yes
USE_LIBTOOL=    yes
USE_AUTOCONF=   yes

CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include" \
        LDFLAGS="-L${LOCALBASE}/lib" \

MAN1=       gqmpeg.1

.include <bsd.port.pre.mk>

.if ${HAVE_GNOME:Mgnomelibs}!=""
USE_GNOME+= gnomeprefix gnomelibs
PKGNAMESUFFIX=  -gnome
CONFIGURE_ENV+= USE_GNOME="yes"
PLIST_SUB+= DATADIR="share/gnome"
.else
CONFIGURE_ENV+= USE_GNOME=""
PLIST_SUB+= DATADIR="share"
.endif

.if !defined(WITH_MPG321)
pre-everything::
    @${ECHO_MSG}
    @${ECHO_MSG} "If you want to use mpg321 instead of mpg123,"
    @${ECHO_MSG} "hit Ctrl-C right now and execute \"make WITH_MPG321=yes\""
    @${ECHO_MSG}
.endif

.if defined(WITH_MPG321)
post-patch:
    @${REINPLACE_CMD} -E -e \
        's/^(#define MPG123_BINARY "mpg)123"/\1321"/' \
        ${WRKSRC}/src/io_mpg123.c
.endif

.include <bsd.port.post.mk>