Bug 184541 - devel/libast fix stage
Summary: devel/libast fix stage
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Po-Chuan Hsieh
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-06 15:00 UTC by Rodrigo OSORIO
Modified: 2013-12-06 16:20 UTC (History)
0 users

See Also:


Attachments
libast.diff (566 bytes, patch)
2013-12-06 15:00 UTC, Rodrigo OSORIO
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Rodrigo OSORIO 2013-12-06 15:00:00 UTC
	Fix stage
	Fix LIB_DEPENDS
	Add LICENSE
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-06 15:00:07 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sunpoet

sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-12-06 16:16:17 UTC
Author: sunpoet
Date: Fri Dec  6 16:16:09 2013
New Revision: 335771
URL: http://svnweb.freebsd.org/changeset/ports/335771

Log:
  - 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)

Modified:
  head/devel/libast/Makefile   (contents, props changed)

Modified: head/devel/libast/Makefile
==============================================================================
--- head/devel/libast/Makefile	Fri Dec  6 16:14:27 2013	(r335770)
+++ head/devel/libast/Makefile	Fri Dec  6 16:16:09 2013	(r335771)
@@ -9,23 +9,27 @@ MASTER_SITES=	http://www.eterm.org/downl
 		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>
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Po-Chuan Hsieh freebsd_committer freebsd_triage 2013-12-06 16:16:47 UTC
State Changed
From-To: open->closed

Committed. Thanks!