diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2013-12-07 00:16:09 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2013-12-07 00:16:09 +0800 |
commit | a8f29df4f353ee831925ab74a9f00a72baa046c2 (patch) | |
tree | 87633626dd9a4d6f54702fd708c6181817956a1a | |
parent | d82451323dc5e8eba0cbda27b57861e406230aa9 (diff) | |
download | freebsd-ports-gnome-a8f29df4f353ee831925ab74a9f00a72baa046c2.tar.gz freebsd-ports-gnome-a8f29df4f353ee831925ab74a9f00a72baa046c2.tar.zst freebsd-ports-gnome-a8f29df4f353ee831925ab74a9f00a72baa046c2.zip |
- Add LICENSE
- Convert to new LIB_DEPENDS format
- Support STAGEDIR
- While I'm here:
- Remove leading indefinite article from COMMENT
- Strip shared library
PR: ports/184541
Submitted by: Rodrigo Osorio <rodrigo@bebik.net> (maintainer)
-rw-r--r-- | devel/libast/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/devel/libast/Makefile b/devel/libast/Makefile index 59585585aec2..59a1d0f001be 100644 --- a/devel/libast/Makefile +++ b/devel/libast/Makefile @@ -9,23 +9,27 @@ MASTER_SITES= http://www.eterm.org/download/ \ CRITICAL MAINTAINER= rodrigo@bebik.net -COMMENT= A library of assorted spiffy things +COMMENT= Library of assorted spiffy things -LIB_DEPENDS= pcre.3:${PORTSDIR}/devel/pcre +LICENSE= BSD + +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre USE_AUTOTOOLS= libtool -USES= pathfix USE_EFL= imlib2 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes +USES= pathfix -NO_STAGE= yes .include <bsd.port.pre.mk> .if defined(WITH_MMX) && (${ARCH} == "i386") CONFIGURE_ARGS= --enable-mmx .endif +post-build: + @${STRIP_CMD} ${WRKSRC}/src/.libs/libast.so.2 + .include <bsd.port.post.mk> |