diff options
author | jhale <jhale@FreeBSD.org> | 2012-10-21 00:47:38 +0800 |
---|---|---|
committer | jhale <jhale@FreeBSD.org> | 2012-10-21 00:47:38 +0800 |
commit | 4b14b57da2a58afe83688a48016fcdd20f256187 (patch) | |
tree | 2f33e3fca6d02ff3485c132cad566a95c5feba2b /sysutils | |
parent | 0ea2c77be4bc9b85a26eb4ec4a0a7bb3d5c2d1bc (diff) | |
download | freebsd-ports-gnome-4b14b57da2a58afe83688a48016fcdd20f256187.tar.gz freebsd-ports-gnome-4b14b57da2a58afe83688a48016fcdd20f256187.tar.zst freebsd-ports-gnome-4b14b57da2a58afe83688a48016fcdd20f256187.zip |
- Convert to new options framework
- Add specific pkgconf build dependency
- Add LICENSE (GPLv2)
- Trim Makefile header
Approved by: makc, avilla (mentors, implicit)
Feature safe: yes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gapcmon/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sysutils/gapcmon/Makefile b/sysutils/gapcmon/Makefile index 40d08847a1d9..5b46bdd7713e 100644 --- a/sysutils/gapcmon/Makefile +++ b/sysutils/gapcmon/Makefile @@ -1,9 +1,4 @@ -# New ports collection makefile for: gapcmon -# Date Created: Sun, May 28, 2006 -# Whom: Jason E. Hale <bsdkaffee@gmail.com> -# # $FreeBSD$ -# PORTNAME= gapcmon PORTVERSION= 0.8.9 @@ -14,20 +9,25 @@ MASTER_SITES= SF MAINTAINER= jhale@FreeBSD.org COMMENT= Monitor apcupsd with GTK+2 GUI +LICENSE= GPLv2 + SUB_FILES= pkg-message USE_BZIP2= yes USE_GMAKE= yes USE_GNOME= gconf2 +USE_PKGCONFIG= build GNU_CONFIGURE= yes PORTDOCS= AUTHORS ChangeLog INSTALL README +.include <bsd.port.options.mk> + post-extract: @${REINPLACE_CMD} 's|install-gapcmondocDATA \\|\\|' \ ${WRKSRC}/Makefile.in post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif |