2006-12-16 22:26:55 +00:00
|
|
|
# New ports collection makefile for: shell-fm
|
|
|
|
# Date created: 15 December 2006
|
|
|
|
# Whom: Nikos Ntarmos <ntarmos@ceid.upatras.gr>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= shell-fm
|
2009-09-19 11:34:42 +00:00
|
|
|
PORTVERSION= 0.7
|
2010-06-06 20:39:21 +00:00
|
|
|
PORTEPOCH= 2
|
2006-12-16 22:26:55 +00:00
|
|
|
CATEGORIES= multimedia
|
2009-09-19 11:34:42 +00:00
|
|
|
MASTER_SITES= http://nex.scrapping.cc/shell-fm/releases/
|
2006-12-16 22:26:55 +00:00
|
|
|
|
2009-03-14 13:45:28 +00:00
|
|
|
MAINTAINER= ntarmos@cs.uoi.gr
|
2006-12-16 22:26:55 +00:00
|
|
|
COMMENT= A command-line client for Last.FM
|
|
|
|
|
|
|
|
LIB_DEPENDS= ao:${PORTSDIR}/audio/libao \
|
|
|
|
mad:${PORTSDIR}/audio/libmad
|
|
|
|
|
2008-12-14 14:45:36 +00:00
|
|
|
USE_BZIP2= true
|
|
|
|
USE_GMAKE= true
|
2006-12-16 22:26:55 +00:00
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
|
2008-12-14 14:45:36 +00:00
|
|
|
MAN1= shell-fm.1
|
|
|
|
MANCOMPRESSED= yes
|
|
|
|
PLIST_FILES= bin/shell-fm
|
2009-09-19 11:34:42 +00:00
|
|
|
PORTDOCS= AUTHORS RELEASE INSTALL
|
2008-12-14 14:45:36 +00:00
|
|
|
PORTEXAMPLES= shell-colors.sh shell-fm-tune.sh \
|
|
|
|
unix.pl zcontrol
|
|
|
|
|
|
|
|
pre-build:
|
|
|
|
@${REINPLACE_CMD} \
|
2009-09-19 11:34:42 +00:00
|
|
|
-e 's/^PREFIX.*$$/\PREFIX := $$(LOCALBASE)/g' \
|
2008-12-14 14:45:36 +00:00
|
|
|
${WRKSRC}/Makefile
|
2006-12-16 22:26:55 +00:00
|
|
|
|
|
|
|
post-install:
|
2007-12-14 22:09:58 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${ECHO_MSG} "installing additional documentation to ${DOCSDIR}"
|
|
|
|
@${MKDIR} ${DOCSDIR}
|
2008-12-14 14:45:36 +00:00
|
|
|
. for doc in ${PORTDOCS}
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
|
|
|
|
. endfor
|
2007-12-14 22:09:58 +00:00
|
|
|
.endif
|
|
|
|
.if !defined(NOPORTEXAMPLES)
|
|
|
|
@${MKDIR} ${EXAMPLESDIR}
|
2008-12-14 14:45:36 +00:00
|
|
|
@${ECHO_MSG} "installing examples to ${EXAMPLESDIR}"
|
|
|
|
. for example in ${PORTEXAMPLES}
|
|
|
|
@${INSTALL_DATA} ${WRKSRC}/scripts/${example} ${EXAMPLESDIR}
|
|
|
|
. endfor
|
2007-12-14 22:09:58 +00:00
|
|
|
.endif
|
2006-12-16 22:26:55 +00:00
|
|
|
|
2007-10-04 02:01:29 +00:00
|
|
|
.include <bsd.port.mk>
|