diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-10-28 06:10:10 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-10-28 06:10:10 +0800 |
commit | 752a66b40a757b50196fb97fda1143a42e96c295 (patch) | |
tree | 49bd85e2fc333a96c40e09b46a8027f64b1a470f /archivers/file-roller/Makefile | |
parent | 2d81cfc3ccdf086d3ac5c107818ffe2f73f04d9a (diff) | |
download | marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.gz marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.bz2 marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.lz marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.xz marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.zst marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.zip |
Move gnome3 ports into the place of the gnome2 locations.
Update to new port rules, remove conflicts, latest_link, enable stage support.
gnome-games was skipped because I got a update for that.
gnome-keyring 2 vs 3, needs to be looked at.
zenity 2 vs 3, and libgnomekbd 2 vs 3
Use new lib_depend syntax in bsd.gnome.mk.
Possible lots of broken links.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18813 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'archivers/file-roller/Makefile')
-rw-r--r-- | archivers/file-roller/Makefile | 35 |
1 files changed, 16 insertions, 19 deletions
diff --git a/archivers/file-roller/Makefile b/archivers/file-roller/Makefile index 365fbbab4..3210aee24 100644 --- a/archivers/file-roller/Makefile +++ b/archivers/file-roller/Makefile @@ -1,30 +1,25 @@ # Created by: Anders Nordby <anders@FreeBSD.org> -# $FreeBSD: head/archivers/file-roller/Makefile 309632 2012-12-29 20:57:20Z mezz $ -# $MCom$ +# $FreeBSD$ PORTNAME= file-roller -PORTVERSION= 2.32.1 -PORTREVISION= 2 -PORTEPOCH= 1 +PORTVERSION= 3.6.2 CATEGORIES= archivers gnome MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 +DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= An archive manager for zip files, tar, etc +BUILD_DEPENDS= itstool:${PORTSDIR}/textproc/itstool RUN_DEPENDS= ${LOCALBASE}/bin/gtar:${PORTSDIR}/archivers/gtar \ ${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip -CONFLICTS= file-roller-3.[0-9]* - -NO_STAGE= yes USE_LDCONFIG= yes -USE_BZIP2= yes +USE_XZ= yes USES= desktop-file-utils gettext gmake pathfix pkgconfig -INSTALLS_OMF= yes INSTALLS_ICONS= yes -USE_GNOME= gnomeprefix intlhack gnomedocutils gtk20 gconf2 +USE_GNOME= gconf2 gnomeprefix gtk30 intlhack \ + introspection:build USE_XORG= sm GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -32,17 +27,16 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --disable-packagekit PORTDOCS= AUTHORS NEWS README TODO ChangeLog -GCONF_SCHEMAS= file-roller.schemas - -OPTIONS_DEFINE= DOCS NAUTILUS -NAUTILUS_DESC= Enable Nautilus extension +GLIB_SCHEMAS= org.gnome.FileRoller.gschema.xml +OPTIONS_DEFINE= NAUTILUS OPTIONS_DEFAULT=NAUTILUS +NAUTILUS_DESC= Enable Nautilus extension .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MNAUTILUS} -USE_GNOME+= nautilus2 +USE_GNOME+= nautilus3 PLIST_SUB+= NAUTILUS="" .else PLIST_SUB+= NAUTILUS="@comment " @@ -56,10 +50,13 @@ post-patch: post-install: .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}/${DOCSDIR} .endfor .endif + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/nautilus/extensions-3.0/libnautilus-fileroller.so + .include <bsd.port.mk> + |