Lines 1-7
Link Here
|
1 |
# New ports collection makefile for: asunder |
1 |
# Created by: frase@frase.id.au |
2 |
# Date created: 14 September 2007 |
|
|
3 |
# Whom: frase@frase.id.au |
4 |
# |
5 |
# $FreeBSD$ |
2 |
# $FreeBSD$ |
6 |
|
3 |
|
7 |
PORTNAME= asunder |
4 |
PORTNAME= asunder |
Lines 16-53
Link Here
|
16 |
LIB_DEPENDS= cddb.4:${PORTSDIR}/audio/libcddb |
13 |
LIB_DEPENDS= cddb.4:${PORTSDIR}/audio/libcddb |
17 |
RUN_DEPENDS= ${LOCALBASE}/bin/cdparanoia:${PORTSDIR}/audio/cdparanoia |
14 |
RUN_DEPENDS= ${LOCALBASE}/bin/cdparanoia:${PORTSDIR}/audio/cdparanoia |
18 |
|
15 |
|
19 |
OPTIONS= LAME "lame support" on \ |
16 |
OPTIONS_DEFINE= LAME OGG FLAC WAVPACK MONKEYAUDIO WINDOWS_CHARS |
20 |
OGG "ogg-vorbis support" on \ |
17 |
OPTIONS_DEFAULT= LAME OGG FLAC |
21 |
FLAC "FLAC support" on \ |
|
|
22 |
WAVPACK "WavPack support" off \ |
23 |
MONKEYAUDIO "Monkey's Audio support" off \ |
24 |
WINDOWS_CHARS "Allow Windows special chars in filenames" off |
25 |
|
18 |
|
|
|
19 |
MONKEYAUDIO_DESC= Monkey's Audio support |
20 |
WINDOWS_CHARS_DESC= Allow Windows special chars in filenames |
21 |
|
26 |
USE_BZIP2= yes |
22 |
USE_BZIP2= yes |
27 |
GNU_CONFIGURE= yes |
23 |
GNU_CONFIGURE= yes |
28 |
USE_GNOME= gtk20 |
24 |
USE_GNOME= gtk20 |
29 |
|
25 |
|
30 |
PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO |
26 |
PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO |
31 |
|
27 |
|
32 |
.include <bsd.port.pre.mk> |
28 |
.include <bsd.port.options.mk> |
33 |
|
29 |
|
34 |
.if defined(WITH_LAME) |
30 |
.if ${PORT_OPTIONS:MLAME} |
35 |
RUN_DEPENDS+= lame:${PORTSDIR}/audio/lame |
31 |
RUN_DEPENDS+= lame:${PORTSDIR}/audio/lame |
36 |
.endif |
32 |
.endif |
37 |
|
33 |
|
38 |
.if defined(WITH_OGG) |
34 |
.if ${PORT_OPTIONS:MOGG} |
39 |
RUN_DEPENDS+= oggenc:${PORTSDIR}/audio/vorbis-tools |
35 |
RUN_DEPENDS+= oggenc:${PORTSDIR}/audio/vorbis-tools |
40 |
.endif |
36 |
.endif |
41 |
|
37 |
|
42 |
.if defined(WITH_FLAC) |
38 |
.if ${PORT_OPTIONS:MFLAC} |
43 |
RUN_DEPENDS+= flac:${PORTSDIR}/audio/flac |
39 |
RUN_DEPENDS+= flac:${PORTSDIR}/audio/flac |
44 |
.endif |
40 |
.endif |
45 |
|
41 |
|
46 |
.if defined(WITH_WAVPACK) |
42 |
.if ${PORT_OPTIONS:MWAVPACK} |
47 |
RUN_DEPENDS+= wavpack:${PORTSDIR}/audio/wavpack |
43 |
RUN_DEPENDS+= wavpack:${PORTSDIR}/audio/wavpack |
48 |
.endif |
44 |
.endif |
49 |
|
45 |
|
50 |
.if defined(WITH_MONKEYAUDIO) |
46 |
.if ${PORT_OPTIONS:MMONKEYAUDIO} |
51 |
RUN_DEPENDS+= mac:${PORTSDIR}/audio/mac |
47 |
RUN_DEPENDS+= mac:${PORTSDIR}/audio/mac |
52 |
.endif |
48 |
.endif |
53 |
|
49 |
|
Lines 62-65
Link Here
|
62 |
@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ |
58 |
@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ |
63 |
.endif |
59 |
.endif |
64 |
|
60 |
|
65 |
.include <bsd.port.post.mk> |
61 |
.include <bsd.port.mk> |