diff options
author | gusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-08-16 03:44:33 +0800 |
---|---|---|
committer | gusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-08-16 03:44:33 +0800 |
commit | 817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf (patch) | |
tree | 5a679ff3c41382969b2e70a71da9a9484e795111 /devel/seed/Makefile | |
parent | 44dcca2542e8092cf3bd06845987212d9b95886c (diff) | |
download | marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.gz marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.bz2 marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.lz marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.xz marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.tar.zst marcuscom-ports-817fa2b1f81dbeaa5bed72fe1fa826bfbda44ecf.zip |
Remove keepla from MC. While here do other changes:
- Remove STRIP_CMD all over the place and replace
that with INSTALL_TARGET=install-tsrip
- Drop full path *_DEPENDS (like ${LOCALBASE}/bin/flex)
and use either binary names (when possible) or
package names instead.
I've been tempted to convert options to a more compact form, but
this will happen in the future.
Tested by: two complete poudriere runs
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@19813 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/seed/Makefile')
-rw-r--r-- | devel/seed/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/devel/seed/Makefile b/devel/seed/Makefile index 80d0a01ea..f7b341439 100644 --- a/devel/seed/Makefile +++ b/devel/seed/Makefile @@ -1,11 +1,12 @@ # Created by: Alexander Logvinov <avl@FreeBSD.org> # $FreeBSD$ -# $MCom: ports-experimental/trunk/devel/seed/Makefile 19198 2014-03-19 15:15:47Z gusi $ +# $MCom$ # NOTE: It may be necessary to update ${FILESDIR}/Seed.js on each release. # To do that, just replace imports.searchPaths with "." and ".." elements. PORTNAME= seed PORTVERSION= 3.8.1 +PORTREVISION= 1 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -13,13 +14,13 @@ DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= GObject JavaScriptCore bridge -BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gnome-js-common.pc:${PORTSDIR}/devel/gnome-js-common +BUILD_DEPENDS= gnome-js-common>=0:${PORTSDIR}/devel/gnome-js-common LIB_DEPENDS= libffi.so:${PORTSDIR}/devel/libffi \ libwebkitgtk-3.0.so:${PORTSDIR}/www/webkit-gtk3 \ libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ libmpfr.so:${PORTSDIR}/math/mpfr -USES= gettext gmake libtool:keepla pathfix pkgconfig tar:xz +USES= gettext gmake libtool pathfix pkgconfig tar:xz USE_GNOME= gtk30 intltool libxml2 introspection USE_LDCONFIG= yes GNU_CONFIGURE= yes @@ -28,6 +29,7 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS+=--enable-gtk-doc=no --with-webkit=3.0 DATADIR= share/seed-gtk3 +INSTALL_TARGET= install-strip .include <bsd.port.options.mk> @@ -51,8 +53,4 @@ pre-build: post-build: ${CP} ${WRKSRC}/extensions/Seed.js.sav ${WRKSRC}/extensions/Seed.js -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/seed-gtk3/libseed_*.so - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libseed-gtk3.so.0 - .include <bsd.port.mk> |