diff options
author | gusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-08-16 04:17:00 +0800 |
---|---|---|
committer | gusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-08-16 04:17:00 +0800 |
commit | 15e54b67ea61cecb18cf998979a6d5bd9693beed (patch) | |
tree | 03c2e2a85d8aa26ed6efe55e8dffcb8470cac4fc | |
parent | 817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf (diff) | |
download | marcuscom-ports-15e54b67ea61cecb18cf998979a6d5bd9693beed.tar.gz marcuscom-ports-15e54b67ea61cecb18cf998979a6d5bd9693beed.tar.zst marcuscom-ports-15e54b67ea61cecb18cf998979a6d5bd9693beed.zip |
Remove STRIP_CMD all over the place and replace it with
INSTALL_TARGET= install-strip. No bumps necessary.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@19814 df743ca5-7f9a-e211-a948-0013205c9059
30 files changed, 55 insertions, 122 deletions
diff --git a/archivers/file-roller/Makefile b/archivers/file-roller/Makefile index c9be92f69..19af8d0bd 100644 --- a/archivers/file-roller/Makefile +++ b/archivers/file-roller/Makefile @@ -26,6 +26,7 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --disable-packagekit +INSTALL_TARGET= install-strip PORTDOCS= AUTHORS NEWS README TODO ChangeLog GLIB_SCHEMAS= org.gnome.FileRoller.gschema.xml @@ -52,8 +53,4 @@ post-install: .endfor .endif -.if ${PORT_OPTIONS:MNAUTILUS} - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/nautilus/extensions-3.0/libnautilus-fileroller.so -.endif - .include <bsd.port.mk> diff --git a/audio/libcanberra-gtk3/Makefile b/audio/libcanberra-gtk3/Makefile index aac08dee0..eb3b2e083 100644 --- a/audio/libcanberra-gtk3/Makefile +++ b/audio/libcanberra-gtk3/Makefile @@ -1,6 +1,6 @@ # Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ -# $MCom: ports-experimental/trunk/audio/libcanberra-gtk3/Makefile 19090 2014-03-11 16:57:43Z gusi $ +# $MCom$ CATEGORIES= audio devel PKGNAMESUFFIX= -gtk3 @@ -34,7 +34,4 @@ do-install: ${LN} -sf libcanberra-gtk3-module.so \ ${STAGEDIR}${PREFIX}/lib/gtk-3.0/modules/libcanberra-gtk-module.so -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gtk-3.0/modules/libcanberra-gtk3-module.so - .include "${MASTERDIR}/Makefile" diff --git a/deskutils/gnome-dictionary/Makefile b/deskutils/gnome-dictionary/Makefile index e0f1a582a..7d64fed6d 100644 --- a/deskutils/gnome-dictionary/Makefile +++ b/deskutils/gnome-dictionary/Makefile @@ -23,10 +23,8 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.dictionary.gschema.xml -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgdict-1.0.so.6 - .include <bsd.port.mk> diff --git a/deskutils/gnome-documents/Makefile b/deskutils/gnome-documents/Makefile index d9433c392..df90e58b2 100644 --- a/deskutils/gnome-documents/Makefile +++ b/deskutils/gnome-documents/Makefile @@ -28,9 +28,6 @@ RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dbus-python.pc:${PORTSDIR}/devel/py- ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss \ unoconv:${PORTSDIR}/textproc/unoconv -GLIB_SCHEMAS= org.gnome.Documents.enums.xml \ - org.gnome.documents.gschema.xml - USES= gettext gmake libtool pathfix pkgconfig tar:xz USE_GNOME= gnomedesktop3 gnomeprefix gtk30 intlhack \ introspection:build libxml2 @@ -39,8 +36,9 @@ INSTALLS_ICONS= yes USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gnome-documents/*.so +GLIB_SCHEMAS= org.gnome.Documents.enums.xml \ + org.gnome.documents.gschema.xml .include <bsd.port.mk> diff --git a/deskutils/gnote/Makefile b/deskutils/gnote/Makefile index 3b32f06ae..c11a6faae 100644 --- a/deskutils/gnote/Makefile +++ b/deskutils/gnote/Makefile @@ -25,12 +25,16 @@ USE_GNOME= gnomeprefix gtk30 gtkmm30 intltool \ libxml2 libxslt USES= desktop-file-utils gettext gmake libtool \ pathfix pkgconfig tar:xz -GLIB_SCHEMAS= org.gnome.gnote.gschema.xml INSTALLS_ICONS= yes GNU_CONFIGURE= yes +USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --with-dbus-service-dir=${PREFIX}/share/dbus-1/services +INSTALL_TARGET= install-strip + +GLIB_SCHEMAS= org.gnome.gnote.gschema.xml + DOCS= AUTHORS ChangeLog NEWS README TODO .include <bsd.port.options.mk> @@ -44,7 +48,5 @@ post-install: @${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgnote-3.12.so.0.0.0 - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gnote/addins/${PORTVERSION}/*.so .include <bsd.port.mk> diff --git a/deskutils/gucharmap/Makefile b/deskutils/gucharmap/Makefile index f0d9c3071..45cef259d 100644 --- a/deskutils/gucharmap/Makefile +++ b/deskutils/gucharmap/Makefile @@ -21,11 +21,8 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --disable-Bsymbolic CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.Charmap.enums.xml org.gnome.Charmap.gschema.xml -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgucharmap_2_90.so.7 - .include <bsd.port.mk> - diff --git a/devel/anjuta/Makefile b/devel/anjuta/Makefile index b63eac643..55d4f9a8d 100644 --- a/devel/anjuta/Makefile +++ b/devel/anjuta/Makefile @@ -44,6 +44,8 @@ CONFIGURE_ARGS= --with-symbol-db-shm=/tmp \ --disable-packagekit \ --enable-introspection=yes DOCSDIR= share/doc/libanjuta +INSTALL_TARGET= install-strip + GLIB_SCHEMAS= org.gnome.anjuta.cvs.gschema.xml \ org.gnome.anjuta.document-manager.gschema.xml \ org.gnome.anjuta.file-manager.gschema.xml \ @@ -130,9 +132,4 @@ post-patch: ${WRKSRC}/libanjuta/tests/Makefile.in \ ${WRKSRC}/libanjuta/tests/Makefile.am -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/anjuta/lib*.so - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/glade/modules/libgladeanjuta.so - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libanjuta-3.so.0 - .include <bsd.port.mk> diff --git a/devel/devhelp/Makefile b/devel/devhelp/Makefile index 8db1b3918..280ead998 100644 --- a/devel/devhelp/Makefile +++ b/devel/devhelp/Makefile @@ -13,21 +13,20 @@ COMMENT= Developer help browser for GNOME 3 LIB_DEPENDS= libwebkitgtk-3.0.so:${PORTSDIR}/www/webkit-gtk3 -USE_XORG= x11 USES= gettext gmake pathfix pkgconfig tar:xz USE_GNOME= gnomeprefix gtk30 intlhack libxslt +USE_XORG= x11 GNU_CONFIGURE= yes INSTALLS_ICONS= yes USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip + GLIB_SCHEMAS= org.gnome.devhelp.gschema.xml post-patch: @${REINPLACE_CMD} -e 's|gedit-plugin||g' ${WRKSRC}/misc/Makefile.in -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libdevhelp-3.so.2 - .include <bsd.port.mk> diff --git a/devel/gtranslator/Makefile b/devel/gtranslator/Makefile index 701dc0398..87ed4de2e 100644 --- a/devel/gtranslator/Makefile +++ b/devel/gtranslator/Makefile @@ -1,6 +1,6 @@ # Created by: Maxim Sobolev <sobomax@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/trunk/devel/gtranslator/Makefile 18610 2013-06-30 16:33:05Z marcus $ +# $MCom$ PORTNAME= gtranslator PORTVERSION= 2.91.6 @@ -33,6 +33,8 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --disable-debug \ --with-gda=5.0 \ --enable-compile-warnings=no +INSTALL_TARGET= install-strip + GLIB_SCHEMAS= org.gnome.gtranslator.gschema.xml \ org.gnome.gtranslator.plugins.codeview.gschema.xml \ org.gnome.gtranslator.plugins.open-tran.gschema.xml \ @@ -56,8 +58,4 @@ CONFIGURE_ARGS+=--without-dictionary PLIST_SUB+= DICT="@comment " .endif -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gtranslator/libgtranslator-private.so - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gtranslator/plugins/lib*.so - .include <bsd.port.mk> diff --git a/editors/ghex/Makefile b/editors/ghex/Makefile index 1b6698d62..2ab46324f 100644 --- a/editors/ghex/Makefile +++ b/editors/ghex/Makefile @@ -21,10 +21,8 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-compile-warnings=no CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.GHex.gschema.xml -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgtkhex-3.so.0 - .include <bsd.port.mk> diff --git a/graphics/colord-gtk/Makefile b/graphics/colord-gtk/Makefile index 7812698b0..8da9a9d53 100644 --- a/graphics/colord-gtk/Makefile +++ b/graphics/colord-gtk/Makefile @@ -23,6 +23,7 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-gtk-doc-html=no CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_STRIP= install-strip post-patch: @${REINPLACE_CMD} -e 's|-Wclobbered||g' \ @@ -32,7 +33,4 @@ post-patch: -e 's|-Wmissing-parameter-type||g' \ ${WRKSRC}/configure -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcolord-gtk.so.1 - .include <bsd.port.mk> diff --git a/graphics/colord/Makefile b/graphics/colord/Makefile index d01d1f848..df3e237ca 100644 --- a/graphics/colord/Makefile +++ b/graphics/colord/Makefile @@ -36,6 +36,7 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV= USB_CFLAGS="-I/usr/include" \ USB_LIBS="-L/usr/lib -lusb" +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.freedesktop.ColorHelper.gschema.xml @@ -71,7 +72,5 @@ post-patch: post-install: ${MKDIR} ${STAGEDIR}/var/db/colord/icc - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*.so* - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/colord-sensors/lib*.so .include <bsd.port.mk> diff --git a/graphics/eog/Makefile b/graphics/eog/Makefile index a02c9146e..74718ed50 100644 --- a/graphics/eog/Makefile +++ b/graphics/eog/Makefile @@ -19,14 +19,15 @@ LIB_DEPENDS= libpeas-gtk-1.0.so:${PORTSDIR}/devel/libpeas \ RUN_DEPENDS= gnome-icon-theme>=0:${PORTSDIR}/misc/gnome-icon-theme \ gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas -USE_GNOME= gnomeprefix intlhack librsvg2 gtk30 gnomedesktop3 \ - introspection:build USES= desktop-file-utils gettext gmake libtool pathfix \ pkgconfig tar:xz +USE_GNOME= gnomeprefix intlhack librsvg2 gtk30 gnomedesktop3 \ + introspection:build INSTALLS_ICONS= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.eog.enums.xml \ org.gnome.eog.gschema.xml @@ -67,7 +68,4 @@ PLIST_SUB+= EXIFEXEMPI="" PLIST_SUB+= EXIFEXEMPI="@comment " .endif -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/eog/plugins/lib*.so - .include <bsd.port.mk> diff --git a/graphics/gthumb/Makefile b/graphics/gthumb/Makefile index 4ffa3bf4a..8db74d23d 100644 --- a/graphics/gthumb/Makefile +++ b/graphics/gthumb/Makefile @@ -26,6 +26,7 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --disable-libchamplain \ --enable-librsvg +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.gthumb.change-date.gschema.xml \ org.gnome.gthumb.comments.gschema.xml \ @@ -84,7 +85,4 @@ WEBSERVICES_LIB_DEPENDS= libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome \ WEBSERVICES_CONFIGURE_ON= --enable-libsoup --enable-webkit2 --enable-libjson-glib WEBSERVICES_CONFIGURE_OFF= --disable-libsoup --disable-webkit2 --disable-libjson-glib -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gthumb/extensions/lib*.so - .include <bsd.port.mk> diff --git a/lang/vala/Makefile b/lang/vala/Makefile index 8a2104a16..ad4fb66bd 100644 --- a/lang/vala/Makefile +++ b/lang/vala/Makefile @@ -18,6 +18,7 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes +INSTALL_TARGET= install-strip VALA_VER= ${PORTVERSION:R} @@ -68,7 +69,6 @@ post-install: post-install: ${LN} -fs ${PREFIX}/libdata/pkgconfig/libvala-${VALA_VER}.pc \ ${STAGEDIR}${PREFIX}/libdata/pkgconfig/vala-1.0.pc - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*.so.* .endif .include <bsd.port.mk> diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 71edc6529..546e53dc8 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -36,6 +36,7 @@ CONFIGURE_ARGS= --enable-nss=yes \ CONFIGURE_ARGS+=--disable-image-inline CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.evolution.gschema.xml \ org.gnome.evolution.addressbook.gschema.xml \ @@ -113,8 +114,4 @@ post-patch: ${WRKSRC}/modules/bogofilter/evolution-bogofilter.c # @${SH} ${FILESDIR}/fix-plugins.sh ${WRKSRC} -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/evolution/*/*/*.so - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/evolution/*/lib*.so - .include <bsd.port.mk> diff --git a/multimedia/libquvi/Makefile b/multimedia/libquvi/Makefile index 1fa30cc31..02fe2c92e 100644 --- a/multimedia/libquvi/Makefile +++ b/multimedia/libquvi/Makefile @@ -28,6 +28,7 @@ USE_GNOME= glib20 GNU_CONFIGURE= yes USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include +INSTALL_TARGET= install-strip QUVI_VER= 0.9 PLIST_SUB+= VERSION=${QUVI_VER} @@ -37,7 +38,4 @@ PROJECTHOST= quvi post-patch: @${REINPLACE_CMD} 's/lua-5.1/lua-${LUA_VER}/g' ${WRKSRC}/configure -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libquvi-*.so - .include <bsd.port.mk> diff --git a/multimedia/totem/Makefile b/multimedia/totem/Makefile index 04204c48f..ea23f4d4e 100644 --- a/multimedia/totem/Makefile +++ b/multimedia/totem/Makefile @@ -1,6 +1,6 @@ # Created by: Hendrik Scholz <hendrik@scholz.net> # $FreeBSD$ -# $MCom$ +# $MCom: ports/trunk/multimedia/totem/Makefile 19804 2014-08-13 14:55:11Z kwm $ PORTNAME= totem PORTVERSION= 3.12.1 @@ -46,6 +46,7 @@ CONFIGURE_ARGS= --with-plugins="${TOTEM_PLUGINS}" SHEBANG_FILES= data/totem-bugreport.py CONFIGURE_ENV+= APPDATA_VALIDATE="${LOCALBASE}/bin/appdata-validate --nonet" MAKE_ENV= XDG_CACHE_HOME=${WRKDIR} +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.totem.enums.xml \ org.gnome.totem.gschema.xml \ @@ -112,10 +113,4 @@ pre-everything:: post-patch: @${CP} -f ${FILESDIR}/pkg-message.in ${PKGMESSAGE} -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/totem/plugins/*/lib*.so - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libtotem.so.0 - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/nautilus/extensions-3.0/libtotem-properties-page.so - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/browser_plugins/totem/libtotem-*-plugin.so - .include <bsd.port.mk> diff --git a/net/gfbgraph/Makefile b/net/gfbgraph/Makefile index be1e34ef5..1eb53b541 100644 --- a/net/gfbgraph/Makefile +++ b/net/gfbgraph/Makefile @@ -15,15 +15,13 @@ LIB_DEPENDS= librest-0.7.so:${PORTSDIR}/devel/librest \ libgoa-1.0.so:${PORTSDIR}/net/gnome-online-accounts \ libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib -USE_GNOME= glib20 intlhack introspection:build USES= gettext gmake pathfix pkgconfig tar:xz +USE_GNOME= glib20 intlhack introspection:build GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgfbgraph-0.2.so.0 +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/net/glib-networking/Makefile b/net/glib-networking/Makefile index a8d83f999..855b5df89 100644 --- a/net/glib-networking/Makefile +++ b/net/glib-networking/Makefile @@ -1,6 +1,6 @@ # Created by: Koop Mast <kwm@FreeBSD.org> # $FreeBSD$ -# $MCom$ +# $MCom: ports/trunk/net/glib-networking/Makefile 19717 2014-06-01 08:41:11Z kwm $ PORTNAME= glib-networking PORTVERSION= 2.40.1 @@ -28,11 +28,9 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-ca-certificates=${LOCALBASE}/share/certs/ca-root-nss.crt CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip post-patch: @${REINPLACE_CMD} -e' s|-Wmissing-include-dirs||g' ${WRKSRC}/configure -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gio/modules/lib*.so - .include <bsd.port.mk> diff --git a/net/gnome-online-miners/Makefile b/net/gnome-online-miners/Makefile index 68d9d35e7..7e6eb5bda 100644 --- a/net/gnome-online-miners/Makefile +++ b/net/gnome-online-miners/Makefile @@ -16,15 +16,13 @@ LIB_DEPENDS= libgdata.so:${PORTSDIR}/devel/libgdata \ libzapojit-0.0.so:${PORTSDIR}/net/libzapojit \ libgrilo-0.2.so:${PORTSDIR}/net/grilo -USE_GNOME= intlhack introspection:build USES= gettext gmake pathfix pkgconfig tar:xz +USE_GNOME= intlhack introspection:build GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gnome-online-miners/libgom-1.0.so +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/net/gtk-vnc/Makefile b/net/gtk-vnc/Makefile index f8c44f387..2a564349b 100644 --- a/net/gtk-vnc/Makefile +++ b/net/gtk-vnc/Makefile @@ -1,5 +1,6 @@ # Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ +# $MCom$ PORTNAME= gtk-vnc PORTVERSION= 0.4.4 @@ -27,8 +28,6 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --with-gtk=3.0 --enable-introspection \ --disable-plugin --without-python MAKE_JOBS_UNSAFE= yes - -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*.so.0 +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/net/libzapojit/Makefile b/net/libzapojit/Makefile index e086f9647..c49c2ea73 100644 --- a/net/libzapojit/Makefile +++ b/net/libzapojit/Makefile @@ -1,6 +1,6 @@ # Created by: Gustau Perez i Querol <gustau.perez@gmail.com> # $FreeBSD$ -# $MCom: ports-experimental/trunk/net/libzapojit/Makefile 19164 2014-03-17 10:14:04Z gusi $ +# $MCom$ PORTNAME= libzapojit PORTVERSION= 0.0.3 @@ -22,7 +22,6 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libzapojit-*.so.0 .include <bsd.port.mk> diff --git a/security/libsecret/Makefile b/security/libsecret/Makefile index e40d93cdb..09b9afbe7 100644 --- a/security/libsecret/Makefile +++ b/security/libsecret/Makefile @@ -1,6 +1,6 @@ # Created by: Koop Mast <kwm@FreeBSD.org> # $FreeBSD$ -# $MCom: ports-experimental/trunk/security/libsecret/Makefile 19553 2014-04-20 07:23:27Z gusi $ +# $MCom$ PORTNAME= libsecret PORTVERSION= 0.18 @@ -19,8 +19,6 @@ USE_GNOME= gnomehier glib20 libxslt:build intltool \ USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+=--enable-introspection - -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsecret-1.so.0 +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/sysutils/brasero/Makefile b/sysutils/brasero/Makefile index 8a9dafc60..54184cecf 100644 --- a/sysutils/brasero/Makefile +++ b/sysutils/brasero/Makefile @@ -1,6 +1,6 @@ # Created by: Michael Johnson <ahze@FreeBSD.org> # $FreeBSD$ -# $MCom: ports-experimental/trunk/sysutils/brasero/Makefile 19426 2014-04-01 08:55:12Z gusi $ +# $MCom$ PORTNAME= brasero PORTVERSION= 3.11.3 @@ -31,6 +31,7 @@ CONFIGURE_ARGS= --disable-inotify --enable-search=no --enable-playlist=no \ CPPFLAGS+= -I${LOCALBASE}/include -DHAVE_CAM_LIB_H=1 -Wno-error=format-nonliteral LDFLAGS+= -L${LOCALBASE}/lib MAKE_ENV= XDG_CACHE_HOME=${WRKDIR} +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.brasero.gschema.xml @@ -66,11 +67,4 @@ post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/libbrasero-burn/burn-process.c -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libbrasero*.so.* - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/brasero3/plugins/lib*.so -.if ${PORT_OPTIONS:MNAUTILUS} - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/nautilus/extensions-3.0/libnautilus-brasero-extension.so -.endif - .include <bsd.port.mk> diff --git a/www/gnome-user-share/Makefile b/www/gnome-user-share/Makefile index 86b03aa67..c9849fa2c 100644 --- a/www/gnome-user-share/Makefile +++ b/www/gnome-user-share/Makefile @@ -30,12 +30,10 @@ CONFIGURE_ARGS= --with-modules-path=${LOCALBASE}/${APACHEMODDIR} \ --disable-bluetooth CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip post-patch: @${REINPLACE_CMD} -e 's|/etc/httpd/modules|${LOCALBASE}/${APACHEMODDIR}|g' \ ${WRKSRC}/data/dav_user_*.conf -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/nautilus/extensions-3.0/libnautilus-share-extension.so - .include <bsd.port.mk> diff --git a/www/libsocialweb/Makefile b/www/libsocialweb/Makefile index 0dfb0792b..26b59a831 100644 --- a/www/libsocialweb/Makefile +++ b/www/libsocialweb/Makefile @@ -1,6 +1,6 @@ # Created by: Koop Mast <kwm@FreeBSD.org> # $FreeBSD$ -# $MCom: ports-experimental/trunk/www/libsocialweb/Makefile 19207 2014-03-20 08:36:54Z gusi $ +# $MCom$ PORTNAME= libsocialweb PORTVERSION= 0.25.21 @@ -14,19 +14,15 @@ BUILD_DEPENDS= vapigen:${PORTSDIR}/lang/vala-vapigen LIB_DEPENDS= librest-0.7.so:${PORTSDIR}/devel/librest \ libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib +USES= gettext gmake pathfix pkgconfig tar:xz USE_GNOME= gconf2 glib20 gnomehier intlhack introspection:build \ libxslt:build GNU_CONFIGURE= yes USE_LDCONFIG= yes -USES= gettext gmake pathfix pkgconfig tar:xz CONFIGURE_ARGS= --enable-vala-bindings # review if we want all the services enabled, because of not completely # safe public API security wise? CONFIGURE_ARGS+=--enable-all-services - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsocialweb.so.* - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsocialweb-*.so.* - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsocialweb/services/lib*so* +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/x11-fm/gnome-commander2/Makefile b/x11-fm/gnome-commander2/Makefile index 3615183a4..017f3a4d9 100644 --- a/x11-fm/gnome-commander2/Makefile +++ b/x11-fm/gnome-commander2/Makefile @@ -30,6 +30,7 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALLS_OMF= yes +INSTALL_TARGET= install-strip OPTIONS_DEFINE= NLS OPTIONS_SUB= yes @@ -40,8 +41,4 @@ post-patch: @${REINPLACE_CMD} -e 's|unique-1|unique-3|g' \ ${WRKSRC}/configure -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gnome-commander/plugins/libfileroller.so - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gnome-commander/libgcmd.so.0.0.0 - .include <bsd.port.mk> diff --git a/x11-themes/gnome-themes-standard/Makefile b/x11-themes/gnome-themes-standard/Makefile index 7e0c8c780..8f8361cc7 100644 --- a/x11-themes/gnome-themes-standard/Makefile +++ b/x11-themes/gnome-themes-standard/Makefile @@ -1,6 +1,6 @@ # Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ -# $MCom: ports-experimental/trunk/x11-themes/gnome-themes-standard/Makefile 19307 2014-03-25 07:34:54Z gusi $ +# $MCom$ PORTNAME= gnome-themes-standard PORTVERSION= 3.12.0 @@ -14,14 +14,11 @@ COMMENT= Standard themes for GNOME CONFLICTS= gnome-themes-2.[0-9]* USES= gettext:build gmake pathfix pkgconfig tar:xz -INSTALLS_ICONS= yes USE_GNOME= gnomeprefix gtk30 intlhack librsvg2 +INSTALLS_ICONS= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib - -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gtk-3.0/3.0.0/theming-engines/libadwaita.so - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gtk-2.0/2.10.0/engines/libadwaita.so +INSTALL_TARGET= install-strip .include <bsd.port.mk> diff --git a/x11-wm/mutter/Makefile b/x11-wm/mutter/Makefile index 56a845a94..00da10b37 100644 --- a/x11-wm/mutter/Makefile +++ b/x11-wm/mutter/Makefile @@ -30,6 +30,7 @@ USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include -fno-omit-frame-pointer LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --enable-compile-warnings=maximum +INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.gnome.mutter.gschema.xml PLIST_SUB= VERSION=${PORTVERSION:R} @@ -38,8 +39,4 @@ post-patch: @${REINPLACE_CMD} -e 's|-Wcast-align||g' \ ${WRKSRC}/configure -#post-install: -# ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmutter.so.0 -# ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mutter/plugins/default.so - .include <bsd.port.mk> |