diff options
author | Will Andrews <will@FreeBSD.org> | 2000-06-09 05:40:09 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-06-09 05:40:09 +0000 |
commit | 851df9f93ed3aacb94524851b5e77aa8f8689980 (patch) | |
tree | f1cf7a70409b25c7eff96de1d57a711d2f79ffad /audio/pimp3/Makefile | |
parent | Add gdtclft, a Tcl interface to gd. (diff) |
Add pimp3, a python script that's supposed to make random play much nicer
when using mpg123.
PR: 16949
Submitted by: Rod Taylor <rbt@zort.on.ca>
Notes
Notes:
svn path=/head/; revision=29427
Diffstat (limited to 'audio/pimp3/Makefile')
-rw-r--r-- | audio/pimp3/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/audio/pimp3/Makefile b/audio/pimp3/Makefile new file mode 100644 index 000000000000..974220df5680 --- /dev/null +++ b/audio/pimp3/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: pimp +# Date created: 23 February 2000 +# Whom: rbt +# +# $FreeBSD$ +# + +PORTNAME= pimp3 +PORTVERSION= 0.5.7 +CATEGORIES= audio +MASTER_SITES= http://pimp3.sourceforge.net/files/ + +MAINTAINER= rbt@zort.on.ca + +BUILD_DEPENDS= python1.5:${PORTSDIR}/lang/python +RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 + +WRKSRC= ${WRKDIR}/pimp3 + +NO_BUILD= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${PREFIX}/bin/ + ${INSTALL_SCRIPT} ${WRKSRC}/*.pyc ${PREFIX}/bin/ + +post-install: + @${ECHO_MSG} + @${ECHO_MSG} "Take a look at the README to see how to install" + @${ECHO_MSG} "and configure an audio database, among other" + @${ECHO_MSG} "details that should be known." + @${ECHO_MSG} "" + @${ECHO_MSG} "Location: ${WRKDIR}/pimp3/README" + @${ECHO_MSG} + +.include <bsd.port.mk> |