Bug 184433 - devel/libmtrie fixes
Summary: devel/libmtrie fixes
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-02 13:30 UTC by Rodrigo OSORIO
Modified: 2013-12-02 14:31 UTC (History)
0 users

See Also:


Attachments
libmtrie.diff (633 bytes, patch)
2013-12-02 13:30 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-02 13:30:02 UTC
	- add new distfile more persistent than a freebsd user home
	- add license
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-02 13:30:14 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-02 14:28:13 UTC
Author: sunpoet
Date: Mon Dec  2 14:28:05 2013
New Revision: 335494
URL: http://svnweb.freebsd.org/changeset/ports/335494

Log:
  - Update MASTER_SITES
  - Add LICENSE
  - While I'm here:
    - Remove unnecessary DISTNAME
    - Move USE_BZIP2 downward
    - Pet portlint:
      - Use ${VARIABLE}, instead of $(VARIABLE)
      - Use a tab (not space) after a variable name
    - Sort PLIST
  
  PR:		ports/184433
  Submitted by:	Rodrigo Osorio <rodrigo@bebik.net> (maintainer)

Modified:
  head/devel/libmtrie/Makefile
  head/devel/libmtrie/pkg-plist   (contents, props changed)

Modified: head/devel/libmtrie/Makefile
==============================================================================
--- head/devel/libmtrie/Makefile	Mon Dec  2 14:28:01 2013	(r335493)
+++ head/devel/libmtrie/Makefile	Mon Dec  2 14:28:05 2013	(r335494)
@@ -4,19 +4,21 @@
 PORTNAME=	libmtrie
 PORTVERSION=	1.0.3
 CATEGORIES=	devel
-MASTER_SITES=	http://people.freebsd.org/~alfred/sources/$(PORTNAME)/
-DISTNAME=	$(PORTNAME)-${PORTVERSION}
-USE_BZIP2=	yes
+MASTER_SITES=	http://rodrigo.osorio.free.fr/freebsd/distfiles/ \
+		http://people.freebsd.org/~alfred/sources/${PORTNAME}/
 
 MAINTAINER=	rodrigo@bebik.net
 COMMENT=	Library to build an IP-netmask based mtrie
 
-USE_LDCONFIG= yes
+LICENSE=	BSD
+
+USE_BZIP2=	yes
+USE_LDCONFIG=	yes
 
 .if defined(NO_PROFILE)
-PLIST_SUB+=     HURRRR="@comment "
+PLIST_SUB+=	HURRRR="@comment "
 .else
-PLIST_SUB+=     HURRRR=""
+PLIST_SUB+=	HURRRR=""
 .endif
 
 .include <bsd.port.mk>

Modified: head/devel/libmtrie/pkg-plist
==============================================================================
--- head/devel/libmtrie/pkg-plist	Mon Dec  2 14:28:01 2013	(r335493)
+++ head/devel/libmtrie/pkg-plist	Mon Dec  2 14:28:05 2013	(r335494)
@@ -1,5 +1,5 @@
+include/mtrie.h
 lib/libmtrie.a
-%%HURRRR%%lib/libmtrie_p.a
-lib/libmtrie.so.1
 lib/libmtrie.so
-include/mtrie.h
+lib/libmtrie.so.1
+%%HURRRR%%lib/libmtrie_p.a
_______________________________________________
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 14:31:10 UTC
State Changed
From-To: open->closed

Committed. Thanks!