From cdbf23a172984c74b68ee4b46fc9deff22523d25 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Wed, 10 Jun 2009 15:41:41 +0000 Subject: [PATCH] Clamz is a little command-line program to download MP3 files from Amazon.com's music store. It is intended to serve as a substitute for Amazon's official MP3 Downloader, which is not free software (and therefore is only available in binary form for a limited set of platforms.) Clamz can be used to download either individual songs or complete albums that you have purchased from Amazon. Text from http://code.google.com/p/clamz/. WWW: http://code.google.com/p/clamz/ PR: 135401 Submitted by: Helko Glathe --- net/Makefile | 1 + net/clamz/Makefile | 32 ++++++++++++++++++++++++++++++++ net/clamz/distinfo | 3 +++ net/clamz/pkg-descr | 15 +++++++++++++++ 4 files changed, 51 insertions(+) create mode 100644 net/clamz/Makefile create mode 100644 net/clamz/distinfo create mode 100644 net/clamz/pkg-descr diff --git a/net/Makefile b/net/Makefile index 1eeb24672065..056912194e12 100644 --- a/net/Makefile +++ b/net/Makefile @@ -77,6 +77,7 @@ SUBDIR += cap SUBDIR += ccxstream SUBDIR += citrix_ica + SUBDIR += clamz SUBDIR += click SUBDIR += clusterit SUBDIR += cnd diff --git a/net/clamz/Makefile b/net/clamz/Makefile new file mode 100644 index 000000000000..18b36e7cb647 --- /dev/null +++ b/net/clamz/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: clamz +# Date created: 2009-06-08 +# Whom: Helko Glathe +# +# $FreeBSD$ +# + +PORTNAME= clamz +PORTVERSION= 0.2 +CATEGORIES= net audio +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} + +MAINTAINER= glathe.helko@googlemail.com +COMMENT= Command-line program to download MP3 files from Amazon's music store + +LIB_DEPENDS= curl.5:${PORTSDIR}/ftp/curl \ + expat.6:${PORTSDIR}/textproc/expat2 \ + gcrypt.16:${PORTSDIR}/security/libgcrypt + +GNU_CONFIGURE= yes +USE_GNOME= pkgconfig + +PLIST_FILES= bin/${PORTNAME} +MAN1= ${PORTNAME}.1 + +post-configure: + @${REINPLACE_CMD} \ + -e 's|^\(compile.*\)|\1 -I${LOCALBASE}/include|' \ + -e 's|^\(LIBS\ =\)|\1 ${LOCALBASE}/lib/libexpat.so|' \ + ${WRKSRC}/Makefile + +.include diff --git a/net/clamz/distinfo b/net/clamz/distinfo new file mode 100644 index 000000000000..6a928773e570 --- /dev/null +++ b/net/clamz/distinfo @@ -0,0 +1,3 @@ +MD5 (clamz-0.2.tar.gz) = 7e7bacae51a8be9ebf3b17ddf0b55499 +SHA256 (clamz-0.2.tar.gz) = 6a0014c85a7723c414de4d19f8b76b64761b46ba4f71f1a55938147d4189702a +SIZE (clamz-0.2.tar.gz) = 65165 diff --git a/net/clamz/pkg-descr b/net/clamz/pkg-descr new file mode 100644 index 000000000000..9a45a7e22545 --- /dev/null +++ b/net/clamz/pkg-descr @@ -0,0 +1,15 @@ +Clamz is a little command-line program to +download MP3 files from Amazon.com's music +store. It is intended to serve as a +substitute for Amazon's official MP3 +Downloader, which is not free software +(and therefore is only available in binary +form for a limited set of platforms.) + +Clamz can be used to download either individual +songs or complete albums that you have purchased +from Amazon. + +Text from http://code.google.com/p/clamz/. + +WWW: http://code.google.com/p/clamz/