Index: portage/dev-util/autotools/autotools-1.0.13.py
===================================================================
--- portage/dev-util/autotools/autotools-1.0.13.py	(revision 0)
+++ portage/dev-util/autotools/autotools-1.0.13.py	(revision 0)
@@ -0,0 +1,31 @@
+import info
+
+class subinfo(info.infoclass):
+    def setTargets( self ):
+        self.targets['1.0.13'] = self.getPackageList('http://downloads.sourceforge.net/sourceforge/mingw',
+                                                 ['automake-1.11.1-1-msys-1.0.13-bin.tar.lzma',
+                                                 'autoconf-2.65-1-msys-1.0.13-bin.tar.lzma',
+                                                 'libtool-2.2.7a-2-msys-1.0.13-bin.tar.lzma'])
+        
+	self.defaultTarget = '1.0.13'
+        # This attribute is in prelimary state
+        ## \todo move to dev-utils/msys
+        self.targetMergePath['1.0.13'] = "msys";
+    
+    def setDependencies( self ):
+        self.hardDependencies['gnuwin32/wget'] = 'default'
+        
+    def setBuildOptions( self ):
+        self.disableHostBuild = False
+        self.disableTargetBuild = True
+
+from Package.BinaryPackageBase import *
+
+class Package(BinaryPackageBase):
+    def __init__( self):
+        self.subinfo = subinfo()
+        self.subinfo.options.merge.ignoreBuildType = True
+        BinaryPackageBase.__init__(self)
+
+if __name__ == '__main__':
+    Package().execute()

Property changes on: portage/dev-util/autotools/autotools-1.0.13.py
___________________________________________________________________
Added: svn:executable
   + *

