diff options
author | lioux <lioux@FreeBSD.org> | 2006-05-06 21:35:08 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2006-05-06 21:35:08 +0800 |
commit | 3b4c6cf67d44d4f0c8400b5d2e903a8cc11d9ed1 (patch) | |
tree | c299c7d096514edd97b809898513077161c23f87 | |
parent | e1a172e80175e618ecc3133b2d53f8e9112a2e06 (diff) | |
download | freebsd-ports-graphics-3b4c6cf67d44d4f0c8400b5d2e903a8cc11d9ed1.tar.gz freebsd-ports-graphics-3b4c6cf67d44d4f0c8400b5d2e903a8cc11d9ed1.tar.zst freebsd-ports-graphics-3b4c6cf67d44d4f0c8400b5d2e903a8cc11d9ed1.zip |
Allow the port to fetch the distfile instead of requiring the user
to do so. It is okay to automatically fetch since the distfile is
under a multiple license and specifically gplv2.
PR: 96696 [1]
Submitted by: Alexander Botero-Lowry <alex@foxybanana.com> [1],
Lauri Watts <lauri@kde.org>
-rw-r--r-- | audio/picard/Makefile | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/audio/picard/Makefile b/audio/picard/Makefile index 215a470d6ec..fa2b3245848 100644 --- a/audio/picard/Makefile +++ b/audio/picard/Makefile @@ -8,7 +8,7 @@ PORTNAME= picard DISTVERSION= 0.6.0 CATEGORIES= audio python -MASTER_SITES= #https://helixcommunity.org/ +MASTER_SITES= https://helixcommunity.org/download.php/1791/ MAINTAINER= lioux@FreeBSD.org COMMENT= Next generation MusicBrainzTagger @@ -66,7 +66,7 @@ pre-everything:: .include <bsd.port.pre.mk> .if ${OSVERSION} < 500000 -IGNORE= Systems prior to FreeBSD 5.0 do not support Unicode +IGNORE= systems prior to FreeBSD 5.0 do not support Unicode .endif .if ${ARCH} != "i386" @@ -79,18 +79,4 @@ RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/psyco/_psyco.so:${PORTSDIR}/devel/py-psyco EXTRA_PATCHES+= ${FILESDIR}/extra-psyco-patch-tagger.py .endif -## idea taken from ports/java/jdk14/Makefile written by -## Alexey Zelkin <phantom@FreeBSD.org> -# -# Check for sources -.if !exists(${DISTDIR}/${SOURCEFILE}) && !defined(PACKAGE_BUILDING) -ECHO_MSG=/usr/bin/printf -IGNORE= :\n\ -Because of licensing restrictions, you must fetch the source distribution\n\ -manually. Please access http://musicbrainz.org/wd/PicardDownload\n\ -with a web browser and download the \"Linux tarball\" ${SOURCEFILE}\n\ -just below \"Download Picard\" title.\n\ -Please place this file in ${DISTDIR}.\n -.endif - .include <bsd.port.post.mk> |