Bug 184420 - x11/tilda stage fix
Summary: x11/tilda stage fix
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-01 19:40 UTC by Rodrigo OSORIO
Modified: 2013-12-02 08:10 UTC (History)
0 users

See Also:


Attachments
tilda.diff (1.03 KB, patch)
2013-12-01 19:40 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-01 19:40:00 UTC
	Fix port for stage
	- remove no_stage
	- fix lib_depends
	- add licence
	- fix options
Comment 1 Po-Chuan Hsieh freebsd_committer freebsd_triage 2013-12-01 21:10:40 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sunpoet

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-12-02 08:05:36 UTC
Author: sunpoet
Date: Mon Dec  2 08:05:23 2013
New Revision: 335458
URL: http://svnweb.freebsd.org/changeset/ports/335458

Log:
  - Add LICENSE
  - Convert to new LIB_DEPENDS format
  - Add missing USES=gettext
  - Support STAGEDIR
  
  PR:		ports/184420
  Submitted by:	User Rodrigo <rodrigo@bebik.net>

Modified:
  head/x11/tilda/Makefile

Modified: head/x11/tilda/Makefile
==============================================================================
--- head/x11/tilda/Makefile	Mon Dec  2 08:03:05 2013	(r335457)
+++ head/x11/tilda/Makefile	Mon Dec  2 08:05:23 2013	(r335458)
@@ -9,15 +9,16 @@ MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
 MAINTAINER=	rodrigo@bebik.net
 COMMENT=	Drop down x11 terminal with transparency support
 
-LIB_DEPENDS=	confuse.0:${PORTSDIR}/devel/libconfuse
+LICENSE=	GPLv2
+
+LIB_DEPENDS=	libconfuse.so:${PORTSDIR}/devel/libconfuse
 
 GNU_CONFIGURE=	yes
 USE_GNOME=	gtk20 libglade2 vte
-USES=		gmake pkgconfig
+USES=		gmake gettext pkgconfig
 
 DOCS=		AUTHORS ChangeLog README TODO
 
-NO_STAGE=	yes
 post-patch:
 	@${REINPLACE_CMD} -e 's|ps -C tilda -o pid=|pgrep tilda|' \
 		${WRKSRC}/src/tilda.c
@@ -25,13 +26,10 @@ post-patch:
 		${WRKSRC}/src/tomboykeybinder.h
 
 post-install:
-.if !defined (NOPORTDOCS)
-	${MKDIR} ${DOCSDIR}
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for f in ${DOCS}
-	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
 .endfor
-.endif
-
 	@${ECHO_MSG} ""
 	@${ECHO_MSG} ""
 	@${ECHO_MSG} "		ATTENTION:"
_______________________________________________
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-02 08:05:45 UTC
State Changed
From-To: open->closed

Committed. Thanks!