Date: Thu, 26 Sep 2013 18:23:43 +0000 (UTC) From: Eitan Adler <eadler@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328402 - head/lang/librep Message-ID: <201309261823.r8QINh3i090054@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eadler Date: Thu Sep 26 18:23:42 2013 New Revision: 328402 URL: http://svnweb.freebsd.org/changeset/ports/328402 Log: - Add STAGEDIR support - Modernize LIB_DEPENDS - Pet portlint Modified: head/lang/librep/Makefile head/lang/librep/pkg-plist Modified: head/lang/librep/Makefile ============================================================================== --- head/lang/librep/Makefile Thu Sep 26 18:23:26 2013 (r328401) +++ head/lang/librep/Makefile Thu Sep 26 18:23:42 2013 (r328402) @@ -12,29 +12,25 @@ COMMENT= Emacs Lisp like runtime library LICENSE= GPLv2 -LIB_DEPENDS= gdbm:${PORTSDIR}/databases/gdbm \ - ffi:${PORTSDIR}/devel/libffi \ - gmp:${PORTSDIR}/math/gmp +LIB_DEPENDS= libgdbm.so:${PORTSDIR}/databases/gdbm \ + libffi.so:${PORTSDIR}/devel/libffi \ + libgmp.so:${PORTSDIR}/math/gmp RUN_DEPENDS= gtar:${PORTSDIR}/archivers/gtar USE_CSTD= gnu89 USE_XZ= yes -USES= gettext pathfix pkgconfig readline -USE_GMAKE= yes +USES= gettext pathfix pkgconfig readline gmake USE_AUTOTOOLS= libtool CONFIGURE_ARGS= --with-aclocaldir=${PREFIX}/share/aclocal \ --with-stack-direction=-1 USE_LDCONFIG= yes -CPPFLAGS= -I${LOCALBASE}/include -LDFLAGS= -L${LOCALBASE}/lib -pthread +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -pthread -MANCOMPRESSED= yes -MAN1= rep.1 rep-remote.1 rep-xgettext.1 repdoc.1 INFO= librep -NO_STAGE= yes .include <bsd.port.pre.mk> .if ${ARCH} == ia64 Modified: head/lang/librep/pkg-plist ============================================================================== --- head/lang/librep/pkg-plist Thu Sep 26 18:23:26 2013 (r328401) +++ head/lang/librep/pkg-plist Thu Sep 26 18:23:42 2013 (r328402) @@ -258,6 +258,10 @@ share/rep/lisp/ring.jl share/rep/lisp/ring.jlc share/rep/lisp/symbol-table.jl share/rep/lisp/symbol-table.jlc +man/man1/rep-remote.1.gz +man/man1/rep-xgettext.1.gz +man/man1/rep.1.gz +man/man1/repdoc.1.gz @dirrm share/rep/lisp/rep/xml @dirrm share/rep/lisp/rep/www @dirrm share/rep/lisp/rep/vm/compiler
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309261823.r8QINh3i090054>