summaryrefslogtreecommitdiff
path: root/audio/streamripper/options.mk
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2005-10-20 19:55:49 +0000
committerxtraeme <xtraeme>2005-10-20 19:55:49 +0000
commit03cee7c4182f02487cbab1b5992973d1383cb6a2 (patch)
tree1b2b3228e828d324ae5becf7bd7808aa251aabe3 /audio/streamripper/options.mk
parent63e32e372d1219701cfc6c38d0953efd0e494b89 (diff)
downloadpkgsrc-03cee7c4182f02487cbab1b5992973d1383cb6a2.tar.gz
Initial import of streamripper-1.61.14.
Using information which a SHOUTcast server can optionally send, this program breaks an audio stream into "tracks," stores them in separate files as they arrive, and names the files by appending ".mp3" to the name of the track. The tracks can be listened to at the user's leisure with an MPEG Layer 3 audio player. -- Additional comment (xtraeme): Really useful to save shoutcast sessions from streamtuner and copy them into your mp3 player :-)
Diffstat (limited to 'audio/streamripper/options.mk')
-rw-r--r--audio/streamripper/options.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/audio/streamripper/options.mk b/audio/streamripper/options.mk
new file mode 100644
index 00000000000..87017aca970
--- /dev/null
+++ b/audio/streamripper/options.mk
@@ -0,0 +1,14 @@
+# $NetBSD: options.mk,v 1.1.1.1 2005/10/20 19:55:49 xtraeme Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.streamripper
+PKG_SUPPORTED_OPTIONS= ogg
+PKG_SUGGESTED_OPTIONS= ogg
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mogg)
+. include "../../audio/libvorbis/buildlink3.mk"
+CONFIGURE_ARGS+= --with-ogg=${BUILDLINK_PREFIX.libvorbis}
+.else
+CONFIGURE_ARGS+= --disable-ogg
+.endif