diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2013-03-25 04:30:31 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2013-03-25 04:30:31 +0000 |
commit | fd37d8821fdc48edb0c489017447cb8ee865c5b9 (patch) | |
tree | e9502ec9d580c1cb296d2b6e887c07a0737f2b7c /misc/gnome-osd | |
parent | 48c429ec3a76441cc6a3dba681f911b9b7eccb7f (diff) |
Cleanup unmaintained ports in the misc category:
- Trim Header
- Convert to OptionsNG
- Prefer DISTNAME to DISTFILES
- Reorder variables
- Fix comments (don't include leading article)
- @unexec rm must not cause failure
- Tabs, not spaces
- Single space for WWW
- Pet portlint
- etc.
In a few cases the option DOCS was used to control installation into EXAMPLEDIR.
I opted to keep the existing logic of the port in these cases.
Reviewed by: koobs, ashish
Notes
Notes:
svn path=/head/; revision=315192
Diffstat (limited to 'misc/gnome-osd')
-rw-r--r-- | misc/gnome-osd/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/misc/gnome-osd/Makefile b/misc/gnome-osd/Makefile index 9d290ec51235..1abd088d7e4b 100644 --- a/misc/gnome-osd/Makefile +++ b/misc/gnome-osd/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: gnome-osd -# Date created: 21 Aug 2004 -# Whom: Jean-Yves Lefort <jylefort@brutele.be> -# +# Created by: Jean-Yves Lefort <jylefort@brutele.be> # $FreeBSD$ -# PORTNAME= gnome-osd PORTVERSION= 0.20.0 @@ -13,7 +9,7 @@ MASTER_SITES= http://launchpadlibrarian.net/63944370/ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= An On-Screen-Display infrastructure using Pango text rendering +COMMENT= On-Screen-Display infrastructure using Pango text rendering USE_GNOME= gnomehack gnomeprefix intlhack pygnome2 USE_PYTHON= yes @@ -27,8 +23,10 @@ MAN1= gnome-osd-client.1 CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +.include <bsd.port.options.mk> + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for file in AUTHORS NEWS README ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} |