From owner-svn-ports-head@FreeBSD.ORG Mon Oct 21 21:31:05 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 5D114FAE; Mon, 21 Oct 2013 21:31:05 +0000 (UTC) (envelope-from nemysis@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3B4CE2807; Mon, 21 Oct 2013 21:31:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9LLV5Db070012; Mon, 21 Oct 2013 21:31:05 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9LLV5qR070011; Mon, 21 Oct 2013 21:31:05 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201310212131.r9LLV5qR070011@svn.freebsd.org> From: Rusmir Dusko Date: Mon, 21 Oct 2013 21:31:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331196 - head/multimedia/freetuxtv 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.14 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: Mon, 21 Oct 2013 21:31:05 -0000 Author: nemysis Date: Mon Oct 21 21:31:04 2013 New Revision: 331196 URL: http://svnweb.freebsd.org/changeset/ports/331196 Log: - Change maintainer email to @FreeBSD.org - Use the new format for LIB_DEPENDS - USE_GNOME cairo instead of graphics/cairo - Simplify Option NLS handling - Support STAGEDIR Approved by: pawel / wg (mentors, implicit) Modified: head/multimedia/freetuxtv/Makefile Modified: head/multimedia/freetuxtv/Makefile ============================================================================== --- head/multimedia/freetuxtv/Makefile Mon Oct 21 21:27:59 2013 (r331195) +++ head/multimedia/freetuxtv/Makefile Mon Oct 21 21:31:04 2013 (r331196) @@ -7,27 +7,26 @@ PORTREVISION= 5 CATEGORIES= multimedia MASTER_SITES= GOOGLE_CODE -MAINTAINER= nemysis@gmx.ch +MAINTAINER= nemysis@FreeBSD.org COMMENT= WebTV player based on GTK2+ and LibVLC LICENSE= GPLv3 BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser -LIB_DEPENDS= vlc:${PORTSDIR}/multimedia/vlc \ - dbus-glib:${PORTSDIR}/devel/dbus-glib \ - sqlite3:${PORTSDIR}/databases/sqlite3 \ - curl:${PORTSDIR}/ftp/curl \ - notify:${PORTSDIR}/devel/libnotify \ - pthread-stubs:${PORTSDIR}/devel/libpthread-stubs \ - pcre:${PORTSDIR}/devel/pcre \ - cairo:${PORTSDIR}/graphics/cairo \ - png15:${PORTSDIR}/graphics/png \ - freetype:${PORTSDIR}/print/freetype2 \ - expat:${PORTSDIR}/textproc/expat2 \ - fontconfig:${PORTSDIR}/x11-fonts/fontconfig +LIB_DEPENDS= libvlc.so:${PORTSDIR}/multimedia/vlc \ + libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ + libsqlite3.so:${PORTSDIR}/databases/sqlite3 \ + libcurl.so:${PORTSDIR}/ftp/curl \ + libnotify.so:${PORTSDIR}/devel/libnotify \ + libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs \ + libpcre.so:${PORTSDIR}/devel/pcre \ + libpng15.so:${PORTSDIR}/graphics/png \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ + libexpat.so:${PORTSDIR}/textproc/expat2 \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig USES= gmake iconv pathfix pkgconfig -USE_GNOME= glib20 gtk20 +USE_GNOME= glib20 gtk20 cairo USE_XORG= pixman x11 xau xcb xcomposite xcursor xdamage xdmcp xext xfixes \ xi xinerama xrandr xrender GNU_CONFIGURE= yes @@ -40,25 +39,19 @@ PORTDOCS= AUTHORS ChangeLog README OPTIONS_DEFINE= DOCS NLS OPTIONS_SUB= yes +NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext -NO_STAGE= yes -.include - post-patch: @${REINPLACE_CMD} -e 's|$${pkgdatadir}/doc|$${PREFIX}/share/doc/${PORTNAME}|' \ -e 's|install-data-am: install-freetuxtvdocDATA|install-data-am: |' \ ${WRKSRC}/Makefile.in -.if ! ${PORT_OPTIONS:MNLS} -CONFIGURE_ARGS+= --disable-nls -.endif - post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif - ${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png ${PREFIX}/share/pixmaps + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + + ${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/ .include