Index: head/sysutils/Makefile =================================================================== --- head/sysutils/Makefile +++ head/sysutils/Makefile @@ -617,6 +617,7 @@ SUBDIR += mksunbootcd SUBDIR += mmc-utils SUBDIR += mnrpes + SUBDIR += modman SUBDIR += modules SUBDIR += mog SUBDIR += monit Index: head/sysutils/modman/Makefile =================================================================== --- head/sysutils/modman/Makefile +++ head/sysutils/modman/Makefile @@ -0,0 +1,25 @@ +# Created by: Lukasz Wasikowski +# $FreeBSD$ + +PORTNAME= modman +PORTVERSION= 1.12 +CATEGORIES= sysutils www + +MAINTAINER= lukasz@wasikowski.net +COMMENT= Modularize extensions using symlinks + +LICENSE= APACHE20 + +RUN_DEPENDS= bash:shells/bash + +USE_GITHUB= yes +GH_ACCOUNT= colinmollenhour +NO_BUILD= yes + +PLIST_FILES= sbin/modman + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} \ + ${STAGEDIR}${PREFIX}/sbin/${PORTNAME} + +.include Index: head/sysutils/modman/distinfo =================================================================== --- head/sysutils/modman/distinfo +++ head/sysutils/modman/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1497381975 +SHA256 (colinmollenhour-modman-1.12_GH0.tar.gz) = 437547bb54f62101215038a678506e87b1e9d5a8f04eed68e0c823198dd0b6ec +SIZE (colinmollenhour-modman-1.12_GH0.tar.gz) = 13309 Index: head/sysutils/modman/pkg-descr =================================================================== --- head/sysutils/modman/pkg-descr +++ head/sysutils/modman/pkg-descr @@ -0,0 +1,10 @@ +Developing extensions for software that doesn't allow you to separate +your files from core files, and keeping that extension under version +control and making it easy to deploy is now much, much easier. +Development of this script was inspired by Magento which forces you +to mix your extension files all throughout the core code directories. +With modman, you can specify in a text file where you want your +directories and files to be mapped to, and it will maintain symlinks +for you so that your code is easy to hack and deploy. + +WWW: https://github.com/colinmollenhour/modman