diff options
author | miwi <miwi@FreeBSD.org> | 2012-05-29 23:19:59 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2012-05-29 23:19:59 +0800 |
commit | 767ad3416ec544f197d57156c5287a66f8a8f83d (patch) | |
tree | 644e00312881b10a277210b419d17155b37dced4 /Mk | |
parent | d01195823e7ed782944c193ee6d18f72e731f551 (diff) | |
download | freebsd-ports-gnome-767ad3416ec544f197d57156c5287a66f8a8f83d.tar.gz freebsd-ports-gnome-767ad3416ec544f197d57156c5287a66f8a8f83d.tar.zst freebsd-ports-gnome-767ad3416ec544f197d57156c5287a66f8a8f83d.zip |
- Do not activate EXAMPLES by default if NOPORTEXAMPELS is set
- Add shared EXAMPES descriptions
With hat: portmgr
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.options.desc.mk | 1 | ||||
-rw-r--r-- | Mk/bsd.options.mk | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Mk/bsd.options.desc.mk b/Mk/bsd.options.desc.mk index cf24ac4bcc8f..269439c5dbee 100644 --- a/Mk/bsd.options.desc.mk +++ b/Mk/bsd.options.desc.mk @@ -11,6 +11,7 @@ CURL_DESC?= Enable CURL support DAGRAB_DESC?= Enable dagrab CD ripper DBUS_DESC?= Enable D-Bus support DOCS_DESC?= Build and install the documentation +EXAMPLES_DESC?= Build and install the examples FLAC_DESC?= Enable support for flac GOGO_DESC?= Enable gogo mp3 encoder ID3_DESC?= Enable support for id3 tags diff --git a/Mk/bsd.options.mk b/Mk/bsd.options.mk index 9d96cbc32c6d..3b1d2209c709 100644 --- a/Mk/bsd.options.mk +++ b/Mk/bsd.options.mk @@ -19,6 +19,11 @@ PORT_OPTIONS+= DOCS .endif PORT_OPTIONS+= NLS +# Set the default values for the global options, as defined by portmgr +.if !defined(NOPORTEXAMPLES) +PORT_OPTIONS+= EXAMPLES +.endif + # Append options set by the port Makefile .for opt in ${OPTIONS_DEFINE} ALL_OPTIONS+= ${opt} |