Compare commits

..

4 Commits

Author SHA1 Message Date
Jef Spaleta
37caf3f584 - Upstream patch to fix deprecated gtk tooltip warning. 2010-05-27 18:07:35 +00:00
Orion Poplawski
5bca33587f - Update to 0.99.1.2 2010-02-22 22:05:35 +00:00
Bill Nottingham
99de6f48d3 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:53:04 +00:00
Jesse Keating
8b3d6bb266 Initialize branch F-12 for python-matplotlib 2009-09-29 06:36:07 +00:00
3 changed files with 22 additions and 0 deletions

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
# Makefile for source rpm: python-matplotlib
# $Id$
NAME := python-matplotlib
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

1
branch Normal file
View File

@@ -0,0 +1 @@
F-12