# $Id: Portfile 56061 2009-08-24 00:33:19Z ryandesign@macports.org $

PortSystem			1.0
PortGroup			python24 1.0
name				py-gtkmvc
version				0.9.2
categories-append	x11
platforms			darwin
maintainers			nomaintainer
description			Model-View-Controller for PyGTK2
long_description \
	This is an implementation of the Model-View-Controller and Observer \
	patterns for the Pygtk2 toolkit.  MVC is a pattern that can be \
	successfully used to design and develop well structured GUI applications. \
	The MVC pattern basically helps in separating sematics and data of the \
	application, from their representation. The Observer pattern is also \
	embedded here. This pattern allows making separated parts independent, \
	but still connected each other. 

homepage			http://pygtkmvc.sourceforge.net/
master_sites		sourceforge:pygtkmvc
distname			pygtkmvc-${version}
checksums			md5 ececf3cb85450b4c77cf9b1528bea0a7 \
					sha1 e1b557d28763d0faadd8b4fb8564df23661c77e8

depends_lib-append	port:py-gtk2

post-destroot {
	file mkdir ${destroot}${prefix}/share/doc/${name}
	file copy ${worksrcpath}/docs ${worksrcpath}/example \
		${worksrcpath}/README ${destroot}${prefix}/share/doc/${name}
}

