diff options
author | agc <agc> | 2003-01-24 10:04:23 +0000 |
---|---|---|
committer | agc <agc> | 2003-01-24 10:04:23 +0000 |
commit | e0fce098193454be20b6c876739d87bdbc57b56f (patch) | |
tree | ac5c4e3cd3421d992090da30649125214eb12710 | |
parent | b3ae3c7b80c2d2229bc5f7e597c932a7ce8e0def (diff) | |
download | pkgsrc-e0fce098193454be20b6c876739d87bdbc57b56f.tar.gz |
Use an /etc/mk.conf setting for libdvdcss's HOMEPAGE and MASTER_SITES,
following a suggestion by salo.
This allows users to specify
LIBDVDCSS_MASTER_SITES= ...
LIBDVDCSS_HOMEPAGE= ...
in their /etc/mk.conf files.
-rw-r--r-- | misc/libdvdcss/Makefile | 6 | ||||
-rw-r--r-- | mk/bsd.pkg.defaults.mk | 14 |
2 files changed, 16 insertions, 4 deletions
diff --git a/misc/libdvdcss/Makefile b/misc/libdvdcss/Makefile index 8135990a106..e7b2a96ce5c 100644 --- a/misc/libdvdcss/Makefile +++ b/misc/libdvdcss/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2003/01/22 13:51:23 agc Exp $ +# $NetBSD: Makefile,v 1.2 2003/01/24 10:04:23 agc Exp $ # # Unfortunately, some reading of the United States law (DMCA) means # that we are not able to provide pointers to the source or homepage @@ -9,10 +9,10 @@ DISTNAME= libdvdcss-1.2.4 CATEGORIES= misc -MASTER_SITES= # defined - see comment above +MASTER_SITES= ${LIBDVDCSS_MASTER_SITES} MAINTAINER= marc@informatik.uni-bremen.de -HOMEPAGE= # defined - see comment above +HOMEPAGE= ${LIBDVDCSS_HOMEPAGE} COMMENT= simple library designed for accessing DVDs # no source on the ftp server because of the css source code in it diff --git a/mk/bsd.pkg.defaults.mk b/mk/bsd.pkg.defaults.mk index 4a095a0f1ed..eceb4f1a165 100644 --- a/mk/bsd.pkg.defaults.mk +++ b/mk/bsd.pkg.defaults.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.defaults.mk,v 1.127 2003/01/21 08:24:32 grant Exp $ +# $NetBSD: bsd.pkg.defaults.mk,v 1.128 2003/01/24 10:04:58 agc Exp $ # # A file providing defaults for pkgsrc and the packages collection. @@ -941,6 +941,18 @@ JSDK_HOME?= ${JAVA_HOME}/jsdk # Possible: not defined, defined # Default: not defined +#LIBDVDCSS_HOMEPAGE= +# Used in libdvdcss package as the homepage - we are unable to point this +# to one of the real sites for legal reasons +# Possible: any libdvdcss site +# Default: not defined + +#LIBDVDCSS_MASTER_SITES= +# Used in libdvdcss package as the master site - we are unable to point this +# to one of the real sites for legal reasons +# Possible: any libdvdcss site +# Default: not defined + #LIBWRAP_FWD= # Used in ssh package to make libwrap also compare against forwarded # connection attempts |