blob: 102b4279f1065307627356b15d29b4aa2c3591cb (
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
|
# New ports collection makefile for: dekagen
# Date created: 12 August 2003
# Whom: Martin Kraft <martin.kraft@fal.de>
#
# $FreeBSD$
#
PORTNAME= dekagen
PORTVERSION= 1.0
CATEGORIES= audio
MASTER_SITES= http://userpage.fu-berlin.de/~mbayer/tools/
MAINTAINER= martin.kraft@fal.de
COMMENT= A frontend to rip, convert and name MP3/Ogg
# The only reason for installing xmcd is, that dekagen uses cda
# for CDDB inquiries. You can safely 'make -DWITHOUT_XMCD', if you
# can do without inquiring the CDDB database. Dependencies of
# the xmcd package will install the encoders lame and oggenc (vorbis-tools),
# both of them are supported bye dekagen.
.if !defined(WITHOUT_XMCD)
RUN_DEPENDS+= cda:${PORTSDIR}/audio/xmcd
.endif
# If you want to use another ripper, eg. tosha or dagrab,
# you can safely 'make -DWITHOUT_CDPARANOIA'.
.if !defined(WITHOUT_CDPARANOIA)
RUN_DEPENDS+= cdparanoia:${PORTSDIR}/audio/cdparanoia
.endif
MAN1= dekagen.1
MANCOMPRESSED= yes
.include <bsd.port.pre.mk>
NO_BUILD= Shell Script
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/dekagen ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/dekagen.1.gz ${PREFIX}/man/man1
.include <bsd.port.post.mk>
|