svn commit: r316859 - head/www/aria

Martin Wilke miwi at FreeBSD.org
Tue Apr 30 00:40:15 UTC 2013


Author: miwi
Date: Tue Apr 30 00:40:14 2013
New Revision: 316859
URL: http://svnweb.freebsd.org/changeset/ports/316859

Log:
  - Unbreak build
  
  PR:		177916
  Submitted by:	Ports Fury

Modified:
  head/www/aria/Makefile

Modified: head/www/aria/Makefile
==============================================================================
--- head/www/aria/Makefile	Tue Apr 30 00:39:35 2013	(r316858)
+++ head/www/aria/Makefile	Tue Apr 30 00:40:14 2013	(r316859)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:   aria
-# Date created:        30 March 2001
-# Whom:                Yukihiro Nakai <nakai at FreeBSD.org>
-#
+# Created by: Yukihiro Nakai <nakai at FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	aria
 PORTVERSION=	1.0.0
@@ -14,25 +10,37 @@ MASTER_SITES=	SF/${PORTNAME}-rpm/Aria%20
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Yet another download tool
 
-MAKE_JOBS_SAFE=  yes
-BROKEN=		fails to build
+LICENSE=	GPLv2 # (or later)
+
+OPTIONS_DEFINE=	NLS DOCS
 
 USE_BZIP2=	yes
-.if !defined(WITHOUT_NLS)
+USE_GNOME=	gtk12
+USE_OPENSSL=	yes
+USE_GMAKE=	yes
+GNU_CONFIGURE=	yes
+MAKE_JOBS_SAFE=	yes
+
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
+
+PORTDOCS=	README README.euc
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MNLS}
 USES+=		gettext
 PLIST_SUB+=	NLS=""
 .else
 CONFIGURE_ARGS+=	--disable-nls
 PLIST_SUB+=	NLS="@comment "
 .endif
-USE_GNOME=	gtk12
-USE_OPENSSL=	yes
-USE_GMAKE=	yes
-GNU_CONFIGURE=	yes
-PORTDOCS=	README README.euc
 
-CPPFLAGS+=	-I${LOCALBASE}/include -DHAVE_DECL_GETOPT
-LDFLAGS+=	-L${LOCALBASE}/lib
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
+BROKEN=		Does not compile on ia64, powerpc, or sparc64: just hangs
+.endif
 
 post-extract:
 	@${RM} -f ${WRKSRC}/src/getopt*
@@ -49,17 +57,13 @@ post-patch:
 		${WRKSRC}/src/Makefile.in
 	@${REINPLACE_CMD} -e 's|"getopt.h"|<getopt.h>|g' \
 		${WRKSRC}/src/main.cc
+	@${REINPLACE_CMD} -e 's|\*infile|infile|g ; \
+		s|(gzFile \*)||' ${WRKSRC}/src/RetrieveHTTP.cc
 
 post-install:
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
 	@${INSTALL} -d ${DOCSDIR}
 	@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
 .endif
 
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
-BROKEN=		Does not compile on ia64, powerpc, or sparc64: just hangs
-.endif
-
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list