diff options
author | Matthieu Herrb <matthieu@herrb.eu> | 2019-08-17 19:16:50 +0200 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2019-08-17 19:16:50 +0200 |
commit | 1c4165669545b21ca866e159cd9c83fd1d59f3ff (patch) | |
tree | 81d70a6816fe614887e940c0ae6b49aae2e62cc3 /sysutils/libpciaccess/Makefile | |
parent | 87e685e36082d7581d0ba003d0b12517d312487e (diff) |
Remove extra comments in Makefiles
Diffstat (limited to 'sysutils/libpciaccess/Makefile')
-rw-r--r-- | sysutils/libpciaccess/Makefile | 108 |
1 files changed, 1 insertions, 107 deletions
diff --git a/sysutils/libpciaccess/Makefile b/sysutils/libpciaccess/Makefile index 6e57877..5894ffb 100644 --- a/sysutils/libpciaccess/Makefile +++ b/sysutils/libpciaccess/Makefile @@ -20,116 +20,10 @@ PERMIT_PACKAGE = Yes MASTER_SITES = ${MASTER_SITE_XORG:=lib/} - -# Standard for C++ ports: -#COMPILER = base-clang ports-gcc base-gcc -# Standard for C++11 or newer: -#COMPILER = base-clang ports-gcc -# Ports that require a non-default compiler that do *not* use C++ should set this: -#COMPILER_LANGS = c - -# Dependencies -#MODULES = ??? -#BUILD_DEPENDS = ??? -#RUN_DEPENDS = ??? -#LIB_DEPENDS = ??? -#TEST_DEPENDS = ??? - -#MAKE_FLAGS = ??? -#MAKE_ENV = ??? -#FAKE_FLAGS = ??? -#TEST_FLAGS = ??? - -# build/configuration variables -# SEPARATE_BUILD = Yes -#SEPARATE_BUILD = flavored (distinct flavors may share a common WRKSRC) -#USE_GMAKE = Yes -#USE_GROFF = Yes -# Programs that require GNU libtool to build instead of the OpenBSD one -# should use this option. Add a comment explaining why. Don't use this if -# a port requires libtool's .m4 files but otherwise can use OpenBSD libtool, -# in that case use "BUILD_DEPENDS=devel/libtool" instead. -#USE_LIBTOOL= gnu -# Set CONFIGURE_STYLE to value corresponding to some standard configuration -# perl [modbuild]: perl's MakeMaker Makefile.PL (modbuild: perl's -# Module::Build Build.PL) -# gnu [autoconf] [old] [dest]: gnu style configure (old: no -# sysconfdir), (dest: add DESTDIR, does not handle it), -# autoconf: run autoconf to regenerate configure script. implies gnu. -# (see also "do-gen" target below). -# XXX: cygnus products do NOT use autoconf for making the main -# configure from configure.in -# imake [noman]: port uses imake for configuration. -# (noman: no man page installation) -# simple: port has its own configure script -# none: override default CONFIGURE_STYLE coming from a module -# (needed for some ports using lang/python, etc.) CONFIGURE_STYLE = gnu -CONFIGURE_ARGS = --with-pciids-path=${X11BASE}/share - +CONFIGURE_ARGS = --with-pciids-path=${LOCALBASE}/share -# Is the build automagic or is it interactive -# -#IS_INTERACTIVE = Yes -#TEST_IS_INTERACTIVE = Yes - -# Assume you have one multiple choice flavor: 1 2 3 and switches a b. -# You would write -# -#FLAVORS = 1 2 3 a b -#FLAVOR ?= -# grab multiple choice value -#CHOICE = ${FLAVOR:Na:Nb} -# check that CHOICE is 1 OR 2 OR 3, or error out -#.if ${CHOICE} == "1" -# code for 1 -#.elif ${CHOICE} == "2" -# code for 2 -#.elif ${CHOICE} == "3" -# code for 3 -#.else -#ERRORS += "Fatal: Conflicting flavor: ${FLAVOR}" -#.endif -# check for switches -#.if ${FLAVOR:Ma} -# code for a -#.endif -#.if ${FLAVOR:Mb} -# code for b -#.endif - -# Things that we don't want to do for this port/package -# Generally, DON'T set anything to No if it's not needed. -# The time gained is not worth it. -# -#NO_BUILD = Yes #NO_TEST = Yes -# Overrides for default values -# -#CFLAGS = ??? -#LDFLAGS = ??? -#MAKE_FILE = ??? -#PKG_ARCH = ??? (* for arch-independent packages) -#WRKDIST = ??? if other than ${WRKDIR}/${DISTNAME} -#WRKSRC = ??? if other than ${WRKDIST} -#WRKBUILD = ??? if other than ${WRKSRC} -#WRKCONF = ??? if other than ${WRKBUILD} - -#ALL_TARGET = ??? -#INSTALL_TARGET = ??? -#TEST_TARGET = ??? - -# For ports that use a script or autoreconf to generate autoconf/automake -# files (where "CONFIGURE_STYLE=autoconf" isn't enough), use some/all of these -# dependencies, and add a do-gen target: -# -#BUILD_DEPENDS = ${MODGNU_AUTOCONF_DEPENDS} \ -# ${MODGNU_AUTOMAKE_DEPENDS} \ -# devel/libtool -# -#do-gen: -# cd ${WRKSRC}; ${AUTOCONF_ENV} ./autogen.sh - .include <bsd.port.mk> |