From owner-svn-ports-head@FreeBSD.ORG Fri Oct 3 16:10:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D17411E; Fri, 3 Oct 2014 16:10:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 50ECB11C; Fri, 3 Oct 2014 16:10:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s93GA0Nd047425; Fri, 3 Oct 2014 16:10:00 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s93GA0ki047422; Fri, 3 Oct 2014 16:10:00 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410031610.s93GA0ki047422@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 3 Oct 2014 16:10:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369914 - head/irc/hexchat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2014 16:10:00 -0000 Author: tijl Date: Fri Oct 3 16:09:59 2014 New Revision: 369914 URL: https://svnweb.freebsd.org/changeset/ports/369914 QAT: https://qat.redports.org/buildarchive/r369914/ Log: - Remove USE_AUTOTOOLS - Use INSTALL_TARGET=install-strip - Fix problem with locale directory by setting CPPFLAGS Modified: head/irc/hexchat/Makefile Modified: head/irc/hexchat/Makefile ============================================================================== --- head/irc/hexchat/Makefile Fri Oct 3 15:50:54 2014 (r369913) +++ head/irc/hexchat/Makefile Fri Oct 3 16:09:59 2014 (r369914) @@ -11,19 +11,17 @@ COMMENT= IRC chat program with GTK and T LICENSE= GPLv2 -BUILD_DEPENDS= gnome-autogen.sh:${PORTSDIR}/devel/gnome-common LIB_DEPENDS= libproxy.so:${PORTSDIR}/net/libproxy USES= gmake desktop-file-utils libtool pkgconfig tar:xz USE_GNOME= gtk20 libxml2 -USE_AUTOTOOLS= automake autoconf libtoolize GNU_CONFIGURE= yes CONFIGURE_ARGS+=--enable-openssl --enable-gtkfe --disable-sysinfo \ --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig -MAKE_ENV= INSTALL_STRIP_FLAG=${STRIP} INSTALLS_ICONS= yes +INSTALL_TARGET= install-strip -LDFLAGS+= -pthread +CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib -lX11 SUB_FILES= pkg-message @@ -81,9 +79,6 @@ USES+= perl5 USE_GNOME+= gconf2 .endif -pre-configure: - @(cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./autogen.sh) - post-patch: @${REINPLACE_CMD} -e '/^appdata_DATA/s|hexchat.appdata.xml||' \ ${WRKSRC}/data/misc/Makefile.in @@ -91,20 +86,11 @@ post-patch: ${WRKSRC}/src/common/server.c post-install: -# Ugly CP and RM, only this works. Not works pathfix, -# --localedir=${LOCALBASE}/share/locale and patching. -# Upstream can't fix this and think that glib-gettextize (devel/glib20) -# is broken in FreeBSD. - @${CP} -a ${STAGEDIR}/usr/local/lib/locale/* ${STAGEDIR}/usr/local/share/locale/ - @${RM} -fr ${STAGEDIR}/usr/local/lib/locale/ - ${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/ - .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/*.md ${STAGEDIR}${DOCSDIR} .endif -# @(cd ${PREFIX}/lib/hexchat/plugins/ && ${RM} -f *.a) .include