Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Feb 2013 10:51:28 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r312913 - head/astro/gpsdrive
Message-ID:  <201302251051.r1PApSfv036743@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Mon Feb 25 10:51:28 2013
New Revision: 312913
URL: http://svnweb.freebsd.org/changeset/ports/312913

Log:
  - Trim Makefile header
  - Define LICENSE (GPLv2)
  - Convert to OptionsNG
  - Sort the knobs, cleanup

Modified:
  head/astro/gpsdrive/Makefile

Modified: head/astro/gpsdrive/Makefile
==============================================================================
--- head/astro/gpsdrive/Makefile	Mon Feb 25 10:30:40 2013	(r312912)
+++ head/astro/gpsdrive/Makefile	Mon Feb 25 10:51:28 2013	(r312913)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	gpsdrive
-# Date Created:				16 April 2002
-# Whom:					Marco Molteni <molter@gufi.org>
-#
+# Created by: Marco Molteni <molter@gufi.org>
 # $FreeBSD$
-#
 
 PORTNAME=	gpsdrive
 PORTVERSION=	2.09
@@ -13,38 +9,46 @@ MASTER_SITES=	http://www.gpsdrive.de/pac
 		LOCAL/beech
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	A GPS navigation system
+COMMENT=	GPS navigation system
 
-LIB_DEPENDS=	pcre.3:${PORTSDIR}/devel/pcre
+LICENSE=	GPLv2
 
-USE_PERL5=	yes
+LIB_DEPENDS=	pcre:${PORTSDIR}/devel/pcre
+
+USE_AUTOTOOLS=	libtool
 USE_GMAKE=	yes
 USE_GNOME=	gtk20
-USE_AUTOTOOLS=	libtool
-MAKE_JOBS_UNSAFE=	yes
+USE_PERL5=	yes
+USE_LDCONFIG=	yes
 
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 CONFIGURE_ARGS=	--disable-garmin
-USE_LDCONFIG=	yes
+MAKE_JOBS_UNSAFE=	yes
 
-.if defined(WITHOUT_NLS)
-PLIST_SUB+=	NLS="@comment "
-.else
+MAN1=		gpsdrive.1
+MANLANG=	"" de es
+
+OPTIONS_DEFINE=	NLS
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MNLS}
 USE_GETTEXT=	yes
 PLIST_SUB+=	NLS=""
+.else
+PLIST_SUB+=	NLS="@comment "
 .endif
 
-MAN1=		gpsdrive.1
-MANLANG=	"" de es
-
 post-patch:
-.if defined(WITHOUT_NLS)
+.if ! ${PORT_OPTIONS:MNLS}
 	@${REINPLACE_CMD} 's|SUBDIRS = src po man|SUBDIRS = src man|' \
 		${WRKSRC}/Makefile.in
 .endif
 
 post-install:
+	@${ECHO_MSG}
 	@${CAT} ${PKGMESSAGE}
+	@${ECHO_MSG}
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302251051.r1PApSfv036743>