diff options
author | dholland <dholland@pkgsrc.org> | 2011-09-05 00:00:18 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2011-09-05 00:00:18 +0000 |
commit | 7e7ccada5d007f090a2ffb099396ae2fbe0d1a3d (patch) | |
tree | f9db588c1940744420c775bf0fdab8d488baabbd /audio | |
parent | 313c3ee75290d047a8737653a7e777c654e31d2f (diff) | |
download | pkgsrc-7e7ccada5d007f090a2ffb099396ae2fbe0d1a3d.tar.gz |
Use mysql.buildlink3.mk instead of explicitly depending on mysql51-server.
As a precaution (given the known bodginess of this package) set
MYSQL_VERSIONS_ACCEPTED to 51 (only) to preserve the previous behavior.
Someone who has the hardware should probably test it on mysql55-server
sometime.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/squeezeboxserver/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/squeezeboxserver/Makefile b/audio/squeezeboxserver/Makefile index 794cc24090b..1e6c7b144c9 100644 --- a/audio/squeezeboxserver/Makefile +++ b/audio/squeezeboxserver/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2011/08/13 18:00:01 joerg Exp $ +# $NetBSD: Makefile,v 1.8 2011/09/05 00:00:18 dholland Exp $ # To the poor soul who wants to update this package: # @@ -65,7 +65,8 @@ NO_BIN_ON_FTP= ${RESTRICTED} LICENSE= squeezeboxserver-license # Database server -DEPENDS+= mysql-server-[0-9]*:../../databases/mysql51-server +MYSQL_VERSIONS_ACCEPTED= 51 +.include "../../mk/mysql.buildlink3.mk" # Audio converters DEPENDS+= wavpack-[0-9]*:../../audio/wavpack |