Makefile.template tweaks, ok ajacoutot jasper espie:
- move GH_* up alongside DISTNAME and adjust text - suggest use of portcheck - add a 60-column ruler for COMMENT - expand USE_LIBTOOL comment, "don't use if you just need the m4 files" etc - some other small wording/whitespace tweaks
This commit is contained in:
parent
ea96e12349
commit
29acea459a
@ -1,9 +1,8 @@
|
|||||||
# $OpenBSD: Makefile.template,v 1.72 2015/04/08 17:53:19 sthen Exp $
|
# $OpenBSD: Makefile.template,v 1.73 2016/01/11 09:17:22 sthen Exp $
|
||||||
# $FreeBSD/NetBSD: credit FreeBSD/NetBSD if thats where the port came from $
|
|
||||||
# Original from: credit the original author here
|
|
||||||
#
|
#
|
||||||
# Replace ??? with appropriate values
|
# Replace ??? with appropriate values
|
||||||
# Remove extraneous comments before commit.
|
# Remove extraneous comments before commit
|
||||||
|
# Use /usr/ports/infrastructure/bin/portcheck
|
||||||
|
|
||||||
# Reasons why the port/package shouldn't be built
|
# Reasons why the port/package shouldn't be built
|
||||||
#
|
#
|
||||||
@ -15,33 +14,43 @@
|
|||||||
|
|
||||||
#
|
#
|
||||||
# Very short description of the package, 60 chars max
|
# Very short description of the package, 60 chars max
|
||||||
#
|
# |----------------------------------------------------------|
|
||||||
COMMENT = ???
|
COMMENT = ???
|
||||||
# COMMENT-foo = ??? for multi packages
|
# COMMENT-foo = ??? for multi packages
|
||||||
|
|
||||||
#
|
#
|
||||||
# What port/package will be created
|
# What port/package will be created
|
||||||
#
|
#
|
||||||
DISTNAME = ???
|
DISTNAME = ???
|
||||||
#PKGNAME = ???
|
#PKGNAME = ???
|
||||||
#PKGNAME-foo = ??? for multi packages
|
#PKGNAME-foo = ??? for multi packages
|
||||||
|
|
||||||
|
#
|
||||||
|
# For github: traditional tarballs in /releases/download are normally
|
||||||
|
# preferred if available; use them with DISTNAME/MASTER_SITES lines as
|
||||||
|
# normal. For projects using auto-generated tarballs, set GH_ACCOUNT,
|
||||||
|
# GH_PROJECT, and *one* of GH_TAGNAME or GH_COMMIT. For GH_COMMIT, also
|
||||||
|
# set DISTNAME. For GH_TAGNAME, set DISTNAME if the default is no good.
|
||||||
|
#
|
||||||
|
#GH_ACCOUNT = username
|
||||||
|
#GH_PROJECT = project
|
||||||
|
#GH_TAGNAME = 1.0
|
||||||
|
#GH_COMMIT = abab123456789abacafeabab123123b1e4ble4bl
|
||||||
|
|
||||||
# for any port that creates shared libraries.
|
# for any port that creates shared libraries.
|
||||||
# both libtool and cmake handle this automatically.
|
# both libtool and cmake automatically set filenames based on this variable.
|
||||||
# for libtool-based ports, have a look at WRKBUILD/shared_libs.log
|
# for libtool- or cmake-based ports, have a look at WRKBUILD/shared_libs.log
|
||||||
#SHARED_LIBS = ???
|
#SHARED_LIBS = ???
|
||||||
|
|
||||||
# the category used in the directory name, /usr/ports/<category>/portname,
|
# the category used in the directory name, /usr/ports/<category>/portname,
|
||||||
# must be included and listed first.
|
# must be included and listed first.
|
||||||
CATEGORIES = ???
|
CATEGORIES = ???
|
||||||
|
|
||||||
#HOMEPAGE = ??? URL
|
#HOMEPAGE = ??? URL
|
||||||
|
|
||||||
# where to send bitches about this port
|
# person who is responsible for the port. Use a complete email address with
|
||||||
# Put a complete email address with a real name, e.g.,
|
# a real name, e.g., "MAINTAINER = John Doe <doe57@machine.somewhere.org>".
|
||||||
# MAINTAINER = John Doe <doe57@machine.somewhere.org>
|
# If you maintain several ports, use the same line each time.
|
||||||
# if you maintain several ports, try to use the same line each time.
|
|
||||||
# MAINTAINER implies some amount of responsibility.
|
|
||||||
# If you no longer use the port, or are unwilling/unable to handle issues
|
# If you no longer use the port, or are unwilling/unable to handle issues
|
||||||
# in a timely manner, *leave the field blank*.
|
# in a timely manner, *leave the field blank*.
|
||||||
# Default value is ports@openbsd.org, no need to fill in
|
# Default value is ports@openbsd.org, no need to fill in
|
||||||
@ -57,8 +66,8 @@ CATEGORIES = ???
|
|||||||
# Put a comment there to state what's going on.
|
# Put a comment there to state what's going on.
|
||||||
# Can be as brief as `BSD' or `GPLv2+', but it'd better be easy to check,
|
# Can be as brief as `BSD' or `GPLv2+', but it'd better be easy to check,
|
||||||
# if someone wants to double-check licensing.
|
# if someone wants to double-check licensing.
|
||||||
# For GPL, all applicable versions must be included (e.g. v2+, v2 only, v3+).
|
# For GPL, the applicable versions must be included (e.g. v2+, v2 only, v3+).
|
||||||
# Setting PERMIT_PACKAGE_CDROM=Yes defaults other PERMIT_* variables to Yes.
|
# If all PERMIT_* are Yes, just setting 'PERMIT_PACKAGE_CDROM=Yes' is enough.
|
||||||
#PERMIT_PACKAGE_CDROM = Yes | Reason if No
|
#PERMIT_PACKAGE_CDROM = Yes | Reason if No
|
||||||
#PERMIT_PACKAGE_FTP = Yes | Reason if No
|
#PERMIT_PACKAGE_FTP = Yes | Reason if No
|
||||||
#PERMIT_DISTFILES_FTP = Yes | Reason if No
|
#PERMIT_DISTFILES_FTP = Yes | Reason if No
|
||||||
@ -72,14 +81,6 @@ MASTER_SITES = ???
|
|||||||
#MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=subdir/}
|
#MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=subdir/}
|
||||||
#MASTER_SITES = ${MASTER_SITE_foo:=subdir/}
|
#MASTER_SITES = ${MASTER_SITE_foo:=subdir/}
|
||||||
|
|
||||||
# for github, use these instead of MASTER_SITES (and specify a
|
|
||||||
# reasonable DISTNAME which will be used as the "save" filename).
|
|
||||||
# specify either the COMMIT or the TAG, not both.
|
|
||||||
#GH_ACCOUNT = username
|
|
||||||
#GH_PROJECT = project
|
|
||||||
#GH_TAGNAME = 1.0
|
|
||||||
#GH_COMMIT = abab123456789abacafeabab123123b1e4ble4bl
|
|
||||||
|
|
||||||
# if more master sites are needed...
|
# if more master sites are needed...
|
||||||
#MASTER_SITES0 =
|
#MASTER_SITES0 =
|
||||||
# ...
|
# ...
|
||||||
@ -113,7 +114,9 @@ MASTER_SITES = ???
|
|||||||
#USE_GMAKE = Yes
|
#USE_GMAKE = Yes
|
||||||
#USE_GROFF = Yes
|
#USE_GROFF = Yes
|
||||||
# Programs that require GNU libtool to build instead of the OpenBSD one
|
# Programs that require GNU libtool to build instead of the OpenBSD one
|
||||||
# should use this option.
|
# 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
|
#USE_LIBTOOL= gnu
|
||||||
# Set CONFIGURE_STYLE to value corresponding to some standard configuration
|
# Set CONFIGURE_STYLE to value corresponding to some standard configuration
|
||||||
# perl [modbuild]: perl's MakeMaker Makefile.PL (modbuild: perl's
|
# perl [modbuild]: perl's MakeMaker Makefile.PL (modbuild: perl's
|
||||||
|
Loading…
Reference in New Issue
Block a user