Initial Checkin.

git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@10866 d073be05-634f-4543-b044-5fe20cf6d1d6
This commit is contained in:
Waqar Malik
2005-02-07 20:33:42 +00:00
parent 98ad053a11
commit 60d1a89a3d
+38
View File
@@ -0,0 +1,38 @@
# $Id: Portfile,v 1.1 2005/02/07 20:33:42 waqar Exp $
PortSystem 1.0
name gmsl
version 1.0.0
revision 0
categories devel
maintainers waqar@opendarwin.org
description GNU Make Standard Library
long_description \
The GNU Make Standard Library (GMSL) is a collection of \
functions implemented using native GNU Make functionality \
that provide list and string manipulation, integer arithmetic, \
associative arrays, stacks, and debugging facilities.
homepage http://gmsl.sourceforge.net
master_sites sourceforge
platforms darwin
distname ${name}
checksums md5 3a4957d0dea86f2e08d22f97e484ae9e \
sha1 ff1493ac5affde0d20b11b0f07b1e9480dccd65e
patch {
reinplace "s|include __${name}|include ${prefix}\/etc\/__${name}|g" \
${workpath}/${name}
}
use_configure no
build {}
destroot {
xinstall -m 644 -c ${workpath}/${name} ${destroot}${prefix}/etc/
xinstall -m 644 -c ${workpath}/__${name} ${destroot}${prefix}/etc/
}
post-install {
ui_msg "Add following to your Makefile(s):"
ui_msg ""
ui_msg " if \[ -f ${prefix}/etc/${name} ]; then"
ui_msg " include ${prefix}/etc/${name}"
ui_msg " fi"
ui_msg ""
}