mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
42a3ec2b28
Abandoned upstream, no new release since 2005 The supported battery powered media (MP3) players are over 15y old by now and ranging between 32Mbyte-1Gbyte in storage capacity PR: 258639 Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D32039
37 lines
840 B
Makefile
37 lines
840 B
Makefile
# Created by: riggs
|
|
|
|
PORTNAME= ifp-line
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/ifp-driver/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Command line interface to iRiver music players
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
DEPRECATED= Abandoned upstream, no new release since 2005
|
|
EXPIRATION_DATE=2021-12-31
|
|
|
|
USES= iconv
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= LIBUSB_LIBS=-lusb
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
PLIST_FILES= bin/ifp man/man1/ifp.1.gz
|
|
PORTDOCS= NEWS README TIPS nonroot.sh
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ifp ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/ifp.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|