diff options
author | dholland <dholland> | 2011-09-05 00:00:18 +0000 |
---|---|---|
committer | dholland <dholland> | 2011-09-05 00:00:18 +0000 |
commit | cc01b16103f406d98e0923c2e46fbf10eaf5dcfd (patch) | |
tree | f9db588c1940744420c775bf0fdab8d488baabbd /audio/squeezeboxserver | |
parent | c887a5dd2bf0bd5ca3bb0eb3dce6f1aa1c3b46f7 (diff) | |
download | pkgsrc-cc01b16103f406d98e0923c2e46fbf10eaf5dcfd.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/squeezeboxserver')
-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 |