blob: a119e143e92c0c37969e90cd110356bd4a2fb5a1 (
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
37
38
|
# $NetBSD: Makefile,v 1.5 2012/01/13 10:54:49 obache Exp $
#
DISTNAME= xmms-cdread-0.14a
PKGREVISION= 2
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
PKG_DESTDIR_SUPPORT= user-destdir
# 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"
|