Fixup fromcvs/togit conversion
[pkgsrcv2.git] / doc / Makefile-example
1 # $NetBSD: Makefile-example,v 1.20 2012/09/06 11:06:58 is Exp $
2
3 # First paragraph - distfile and binary package data
4 # DISTNAME PKGNAME PKGREVISION SVR4_PKGNAME CATEGORIES MASTER_SITES
5 # MASTER_SITE_SUBDIR EXTRACT_SUFX DISTFILES
6 DISTNAME=               make-3.80
7 PKGNAME=                gmake-3.80      # only to be added if the package name is different from DISTNAME
8 #PKGREVISION=           2               # should be added/incremented for user-visible changes
9 CATEGORIES=             devel gnu       # multiple categories are allowed
10 MASTER_SITES=           ${MASTER_SITE_GNU:=make/}
11 #EXTRACT_SUFX=          .tar.bz2        # .tar.gz is the default, only needed in unusual circumstances
12
13 # Second paragraph - MAINTAINER/OWNER, HOMEPAGE and COMMENT, and LICEN[CS]E
14 MAINTAINER=             pkgsrc-users@NetBSD.org # set this to your email address, pkgsrc-users@ is the default
15 HOMEPAGE=               http://www.gnu.org/software/make/make.html
16 COMMENT=                GNU version of 'make' utility   # start with a capital, no articles at start
17 LICENSE=                hptools-license # Licenses should be added to the pkgsrc/licenses directory.
18
19 # Parapraph for any build or run dependencies -- not libraries,
20 # those should be handled using buildlink3.mk files.
21 # Not needed for gmake, just an example:
22 # BUILD_DEPENDS+=       automoc4-[0-9]*:../../devel/automoc4
23
24 # Set RESTRICTED to a very short explanation (typically "No permission to
25 # redistribute for a fee.").  NO_*_ON_* may only be set to ${RESTRICTED}.
26 RESTRICTED=             "Redistribution of unmodified source only; resale prohibited."
27 NO_SRC_ON_CDROM=        ${RESTRICTED}
28 NO_BIN_ON_FTP=          ${RESTRICTED}
29 NO_BIN_ON_CDROM=        ${RESTRICTED}
30
31 # Fifth paragraph - PKG_INSTALLATION_TYPES
32 PKG_INSTALLATION_TYPES= overwrite pkgviews      # needed for package views-ready packages
33 # if the package has to be created with root privileges
34 #PKG_DESTDIR_SUPPORT=   destdir
35 # if the package has to be installed directly
36 #PKG_DESTDIR_SUPPORT=   none
37
38 # Sixth paragraph - all build definitions that describe things used by
39 # the package.  These include: WRKSRC, GNU_CONFIGURE,
40 # HAS_CONFIGURE, USE_PKGLOCALEDIR, USE_INSTALL, TEXINFO_REQD, USE_JAVA,
41 # INFO_FILES, DIST_SUBDIR, etc.
42 DIST_SUBDIR=            gmake
43 GNU_CONFIGURE=          yes
44 INFO_FILES=             # defined if the package installs info files
45 TEXINFO_REQD=           4.0             # version of texinfo which is necessary
46 USE_PKGLOCALEDIR=       yes
47 WRKSRC=                 ${WRKDIR}/src
48
49 # Seventh paragraph - file overrides; these are all *_OVERRIDE variables
50 LIBTOOL_OVERRIDE+=      build/unix/tools/libtool
51 PKGCONFIG_OVERRIDE+=    glib-2.0.pc.in
52
53 # Eighth paragraph - modification of configure and make environments
54 CONFIGURE_ARGS+=        --disable-gtk-doc
55 CONFIGURE_ENV+=         ac_cv_path_PYTHON="${PYTHONBIN}"
56 MAKE_ENV+=              PKG_SYSCONFDIR="${PKG_SYSCONFDIR}"
57
58 # Ninth paragraph - different targets
59 # BUILD_TARGET, INSTALL_TARGET, TEST_TARGET
60 TEST_TARGET=            check
61
62 # always include bsd.prefs.mk before any .if or .ifdef statements
63 .include "../../mk/bsd.prefs.mk"
64
65 .if defined(GNU_PROGRAM_PREFIX)
66 # indent nested "if" by 2 spaces please
67 .  if ${GNU_PROGRAM_PREFIX} == "g"
68 CONFIGURE_ARGS+=        --program-prefix=${GNU_PROGRAM_PREFIX}
69 .  endif
70 .endif
71 PLIST_SUBST+=           GNU_PROGRAM_PREFIX=${GNU_PROGRAM_PREFIX}
72 BUILD_DEFS+=            GNU_PROGRAM_PREFIX
73
74 # buildlink3 files should come after all variables have been set,
75 # sorted alphabetically.
76 .include "../../devel/gettext-lib/buildlink3.mk"
77
78 # The section that handles pthreads should come after all other buildlink3
79 # files have been included.
80 .include "../../mk/pthread.buildlink3.mk"
81 .if ${PTHREAD_TYPE} == "none"
82 CONFIGURE_ARGS+=        --disable-threads
83 .endif
84
85 # Makefile targets should occur after all the other definitions in the file
86 post-install:
87         ${CHMOD} g-s ${PREFIX}/bin/${GNU_PROGRAM_PREFIX}make
88         ${CHGRP} ${BINGRP} ${PREFIX}/bin/${GNU_PROGRAM_PREFIX}make
89 .if !defined(GNU_PROGRAM_PREFIX) || ${GNU_PROGRAM_PREFIX} != "g"
90         # Solaris's "ln -fs" is not the same as on *BSD - use an explicit rm(1) instead
91         ${RM} -f ${PREFIX}/bin/gmake
92         ${LN} -s ${GNU_PROGRAM_PREFIX}make ${PREFIX}/bin/gmake
93 .endif
94
95 # Finally, please include bsd.pkg.mk
96 .include "../../mk/bsd.pkg.mk"