diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-04-26 05:50:30 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-04-26 05:50:30 +0800 |
commit | 2b608721e2fd69f2fc28c7008c659631151c6c30 (patch) | |
tree | 5e7f2711e53044a74894c948fad581a0f0bb351a /lang/cjs/Makefile | |
parent | f1dc3ed5c7ca488602e7722513cc7b3cb79a3f96 (diff) | |
download | marcuscom-ports-2b608721e2fd69f2fc28c7008c659631151c6c30.tar marcuscom-ports-2b608721e2fd69f2fc28c7008c659631151c6c30.tar.gz marcuscom-ports-2b608721e2fd69f2fc28c7008c659631151c6c30.tar.bz2 marcuscom-ports-2b608721e2fd69f2fc28c7008c659631151c6c30.tar.lz marcuscom-ports-2b608721e2fd69f2fc28c7008c659631151c6c30.tar.xz marcuscom-ports-2b608721e2fd69f2fc28c7008c659631151c6c30.tar.zst marcuscom-ports-2b608721e2fd69f2fc28c7008c659631151c6c30.zip |
Switch to USES=libtool:keepla for now. While I rather want to ditch .la files
I think we need to keep em a cycle. So that other ports have a chance to
update there .la files not to record dependancies .la files.
sprinkle some USE_AUTOTOOLS=libtool -> libtoolize. This will give us base
libtool (ltmain.sh and libtool.m4) files. But doesn't depend on
${LOCALBASE}/bin/libtool
INSTALL_TARGET=install-strip and misc smaller cleanups.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@19578 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'lang/cjs/Makefile')
-rw-r--r-- | lang/cjs/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lang/cjs/Makefile b/lang/cjs/Makefile index 2483dca82..f33067fad 100644 --- a/lang/cjs/Makefile +++ b/lang/cjs/Makefile @@ -4,6 +4,7 @@ PORTNAME= cjs PORTVERSION= 2.2.0 +PORTREVISION= 1 CATEGORIES= lang gnome MASTER_SITES= http://github.com/linuxmint/${PORTNAME}/archive/${PORTVERSION}.tar.gz?dummy=/ DIST_SUBDIR= gnome3 @@ -17,17 +18,18 @@ LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ CONFLICTS_BUILD=spidermonkey17-1.7.* -USES= gettext gmake pathfix pkgconfig shebangfix +USES= gettext libtool:keepla gmake pathfix pkgconfig shebangfix USE_GNOME= cairo glib20 gnomeprefix introspection:build \ intlhack USE_PYTHON_BUILD=yes USE_LDCONFIG= yes PATHFIX_MAKEFILEIN= Makefile.am GNU_CONFIGURE= yes -USE_AUTOTOOLS= libtool autoconf automake +USE_AUTOTOOLS= libtoolize autoconf automake CFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip CONFIGURE_ARGS+=--enable-compile-warnings=no SHEBANG_FILES= scripts/make-tests @@ -37,8 +39,4 @@ python_CMD= ${PYTHON_CMD} pre-configure: cd ${WRKSRC} && NOCONFIGURE=yes ${SH} ./autogen.sh -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcjs*so* - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/cjs-1.0/*so - .include <bsd.port.mk> |