blob: dd0d306fedb8863cc6c7d98be7896131308d8e44 (
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
|
# $NetBSD: Makefile,v 1.7 2012/10/02 23:48:14 asau Exp $
#
DISTNAME= xmms-cdread-0.14a
PKGREVISION= 3
CATEGORIES= audio
MASTER_SITES= ftp://mud.stack.nl/pub/OuterSpace/willem/
MAINTAINER= cheusov@NetBSD.org
HOMEPAGE= ftp://mud.stack.nl/pub/OuterSpace/willem/
COMMENT= XMMS input plugin that reads audio data from CDs
# no cdrom access code
NOT_FOR_PLATFORM= Interix-*-*
# The BSD cdrom access code ostensibly for FreeBSD requires:
# - CDIOREADTOCENTRY ioctl, which NetBSD and OpenBSD don't have
# - CDIOCREADAUDIO ioctl, which only Dragonfly has
NOT_FOR_PLATFORM+= NetBSD-*-* FreeBSD-*-* OpenBSD-*-*
ONLY_FOR_COMPILER= gcc clang
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
DOC_FILES= AUTHORS ChangeLog COPYING NEWS README
PKGDOCDIR= ${PREFIX}/share/doc/${PKGBASE}
INSTALLATION_DIRS= ${PKGDOCDIR}
post-install:
.for i in ${DOC_FILES}
${INSTALL_DATA} ${WRKSRC}/${i} ${DESTDIR}${PKGDOCDIR}
.endfor
.include "../../audio/xmms/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|