[csw-devel] SF.net SVN: gar:[10379] csw/mgar/pkg
theferret at users.sourceforge.net
theferret at users.sourceforge.net
Tue Jun 29 00:06:42 CEST 2010
Revision: 10379
http://gar.svn.sourceforge.net/gar/?rev=10379&view=rev
Author: theferret
Date: 2010-06-28 22:06:42 +0000 (Mon, 28 Jun 2010)
Log Message:
-----------
gimp_extras: 'new' package
Added Paths:
-----------
csw/mgar/pkg/gimp_extras/
csw/mgar/pkg/gimp_extras/Makefile
csw/mgar/pkg/gimp_extras/trunk/
csw/mgar/pkg/gimp_extras/trunk/Makefile
csw/mgar/pkg/gimp_extras/trunk/README
csw/mgar/pkg/gimp_extras/trunk/copyright
csw/mgar/pkg/gimp_extras/trunk/pkginfo
csw/mgar/pkg/gimp_extras/trunk/prototype
Added: csw/mgar/pkg/gimp_extras/Makefile
===================================================================
--- csw/mgar/pkg/gimp_extras/Makefile (rev 0)
+++ csw/mgar/pkg/gimp_extras/Makefile 2010-06-28 22:06:42 UTC (rev 10379)
@@ -0,0 +1,15 @@
+
+# This is somewhat of a "stub" Makefile, for
+# directories managed by the "createpkg" TEMPLATES.
+#
+# Not all of targets listed here may actualy be supported by
+# the subdir in question. But they are a goal
+
+DEFAULT_DIR=trunk
+
+
+# The -C means you must use gmake, unfortunately.
+
+all package build garchive extract configure clean distclean reallyclean :
+ @echo Going to make $@ in $(DEFAULT_DIR)
+ $(MAKE) -C $(DEFAULT_DIR) $@
Property changes on: csw/mgar/pkg/gimp_extras/trunk
___________________________________________________________________
Added: svn:ignore
+ cookies
download
work
cswstage
build
Added: csw/mgar/pkg/gimp_extras/trunk/Makefile
===================================================================
--- csw/mgar/pkg/gimp_extras/trunk/Makefile (rev 0)
+++ csw/mgar/pkg/gimp_extras/trunk/Makefile 2010-06-28 22:06:42 UTC (rev 10379)
@@ -0,0 +1,75 @@
+# This file loosely based Makefiles in TEMPLATES/createpkg
+# But highly customized.
+# You MUST build this with gnu make, unfortunately.
+# Mainly just because of the ARCH expansion, but also for "?="
+
+# Customize your prototype file(s) as needed
+
+# Organization: variable defintions up top,
+# targets in second half.
+# Note that assignments with "?=" mean "assign if not already assigned.
+
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= gimp-data-extras-2.0.2.tar.bz2
+EXTRACTPROG ?= /usr/sfw/bin/gtar jfx
+
+# Only use ONE here. The name is used for compat with 'gar'.
+MASTER_SITES ?= ftp://ftp.gimp.org/pub/gimp/extras
+SRCDIR= build/*
+
+
+CREATEPKG=createpkg -b `pwd`/build/*
+
+all: build/.extract.done package
+
+
+extract: build/.extract.done
+
+build/.extract.done:
+ test -d build || mkdir build
+ @if test -f $(ARCHIVEDIR)/$(ARCHIVENAME) ; then \
+ echo Extracting $(ARCHIVENAME) under build dir... ;\
+ ( cd build && $(EXTRACTPROG) $(ARCHIVEDIR)/$(ARCHIVENAME) ) ; \
+ else echo Cannot extract - $(ARCHIVEDIR)/$(ARCHIVENAME) does not exist ;\
+ exit 1; \
+ fi
+ touch build/.extract.done
+
+
+clean distclean:
+
+
+reallyclean: distclean
+ @echo Removing any milestone files in build as well...
+ @rm -f build/.??*
+ @echo '(However, leaving src tree intact, with any patches in it)'
+ @echo '(If you want, you could rm -r build, then make extract once more)'
+
+garchive:
+ @echo Call the fetch target instead: it does the same thing.
+
+
+# Downloads the source code to the common ARCHIVEDIR
+fetch: $(ARCHIVEDIR)/$(ARCHIVENAME)
+ @echo fetch done
+
+$(ARCHIVEDIR)/$(ARCHIVENAME):
+ wget -P $(ARCHIVEDIR) $(MASTER_SITES)/$(ARCHIVENAME)
+
+patch:
+ @echo patch: patching is handled automatically as part of the configure phase.
+
+
+package:
+ $(CREATEPKG)
+
+
+configure build stage:
+ @echo no $@ needed
+
+
+pkgproto:
+ (echo "i pkginfo";echo "i copyright") >prototype
+ (cd $(SRCDIR); pkgproto brushes patterns) |sed "s/ $$USER .*/ root bin/">>prototype
+ echo "f none COPYING 0644 root bin" >>prototype
Added: csw/mgar/pkg/gimp_extras/trunk/README
===================================================================
--- csw/mgar/pkg/gimp_extras/trunk/README (rev 0)
+++ csw/mgar/pkg/gimp_extras/trunk/README 2010-06-28 22:06:42 UTC (rev 10379)
@@ -0,0 +1,4 @@
+If I were nicer, I might attempt to rewrite the Makefile to fetch and
+package up all the help for other non-"en" locales.
+But I'm rather worn out
+
Added: csw/mgar/pkg/gimp_extras/trunk/copyright
===================================================================
--- csw/mgar/pkg/gimp_extras/trunk/copyright (rev 0)
+++ csw/mgar/pkg/gimp_extras/trunk/copyright 2010-06-28 22:06:42 UTC (rev 10379)
@@ -0,0 +1,2 @@
+Please see the included COPYING file for full license text.
+(GPL)
Added: csw/mgar/pkg/gimp_extras/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/gimp_extras/trunk/pkginfo (rev 0)
+++ csw/mgar/pkg/gimp_extras/trunk/pkginfo 2010-06-28 22:06:42 UTC (rev 10379)
@@ -0,0 +1,10 @@
+PKG=CSWgimpextras
+NAME=gimp_extras - Extra brushes, palettes, and gradients for the gimp
+ARCH=all
+BASEDIR=/opt/csw/share/gimp/2.0
+VERSION=2.0.2,REV=2010.06.12
+CATEGORY=application
+VENDOR=http://www.gimp.org/ packaged for CSW by Philip Brown
+HOTLINE=http://www.opencsw.org/bugtrack/
+EMAIL=phil at opencsw.org
+OPENCSW_REPOSITORY=https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/pkg/gimp/branch-c
Added: csw/mgar/pkg/gimp_extras/trunk/prototype
===================================================================
--- csw/mgar/pkg/gimp_extras/trunk/prototype (rev 0)
+++ csw/mgar/pkg/gimp_extras/trunk/prototype 2010-06-28 22:06:42 UTC (rev 10379)
@@ -0,0 +1,156 @@
+i pkginfo
+i copyright
+d none brushes 0755 root bin
+f none brushes/star5.gbr 0644 root bin
+f none brushes/star2.gbr 0644 root bin
+f none brushes/nova.gbr 0644 root bin
+f none brushes/text2.gbr 0644 root bin
+f none brushes/tulip.gbr 0644 root bin
+f none brushes/50x50squareBlur.gbr 0644 root bin
+f none brushes/guitar.gbr 0644 root bin
+f none brushes/wave.gbr 0644 root bin
+f none brushes/star3.gbr 0644 root bin
+f none brushes/sphere47.gbr 0644 root bin
+f none brushes/star4.gbr 0644 root bin
+f none brushes/flower.gbr 0644 root bin
+f none brushes/qbert3Blur.gbr 0644 root bin
+f none brushes/gecko.gbr 0644 root bin
+f none brushes/grid2.gbr 0644 root bin
+f none brushes/text3.gbr 0644 root bin
+f none brushes/text4.gbr 0644 root bin
+f none brushes/50x50cone.gbr 0644 root bin
+f none brushes/Makefile.in 0644 root bin
+f none brushes/sphere55.gbr 0644 root bin
+f none brushes/sphere29.gbr 0644 root bin
+f none brushes/grid.gbr 0644 root bin
+f none brushes/50x50square.gbr 0644 root bin
+f none brushes/swirl2.gbr 0644 root bin
+f none brushes/bigcircle3.gbr 0644 root bin
+f none brushes/bigcircle4.gbr 0644 root bin
+f none brushes/sphere36.gbr 0644 root bin
+f none brushes/bigcircle.gbr 0644 root bin
+f none brushes/bird.gbr 0644 root bin
+f none brushes/bigcircle2.gbr 0644 root bin
+f none brushes/text1.gbr 0644 root bin
+f none brushes/Makefile.am 0644 root bin
+f none brushes/flower_large.gbr 0644 root bin
+f none brushes/swirl.gbr 0644 root bin
+f none brushes/star1.gbr 0644 root bin
+f none brushes/cloth.gbr 0644 root bin
+f none brushes/50x50squareBlur2.gbr 0644 root bin
+f none brushes/qbert2.gbr 0644 root bin
+f none brushes/sphere79.gbr 0644 root bin
+d none patterns 0755 root bin
+f none patterns/connestoga.pat 0644 root bin
+f none patterns/deepswirl.pat 0644 root bin
+f none patterns/orange_eek.pat 0644 root bin
+f none patterns/granite2.pat 0644 root bin
+f none patterns/canyons2.pat 0644 root bin
+f none patterns/crash1.pat 0644 root bin
+f none patterns/crystals.pat 0644 root bin
+f none patterns/orangebrown.pat 0644 root bin
+f none patterns/green_curtains.pat 0644 root bin
+f none patterns/icechex.pat 0644 root bin
+f none patterns/purple-ribbons.pat 0644 root bin
+f none patterns/pj.pat 0644 root bin
+f none patterns/bluebar.pat 0644 root bin
+f none patterns/ice2.pat 0644 root bin
+f none patterns/sandytext.pat 0644 root bin
+f none patterns/dunemaze.pat 0644 root bin
+f none patterns/green_eek.pat 0644 root bin
+f none patterns/bluespikes.pat 0644 root bin
+f none patterns/redmess.pat 0644 root bin
+f none patterns/spectbar.pat 0644 root bin
+f none patterns/paint-explosion.pat 0644 root bin
+f none patterns/blackoil.pat 0644 root bin
+f none patterns/orangecheese.pat 0644 root bin
+f none patterns/blackwhitefloor.pat 0644 root bin
+f none patterns/money.pat 0644 root bin
+f none patterns/worn_metal_chex.pat 0644 root bin
+f none patterns/pixeled1.pat 0644 root bin
+f none patterns/pastel2.pat 0644 root bin
+f none patterns/contrawhirl.pat 0644 root bin
+f none patterns/etbf.pat 0644 root bin
+f none patterns/weird2.pat 0644 root bin
+f none patterns/colorwhirl.pat 0644 root bin
+f none patterns/crazytile.pat 0644 root bin
+f none patterns/meltedcolors.pat 0644 root bin
+f none patterns/blob2.pat 0644 root bin
+f none patterns/greyweave.pat 0644 root bin
+f none patterns/water3.pat 0644 root bin
+f none patterns/gridwhirltile.pat 0644 root bin
+f none patterns/gold.pat 0644 root bin
+f none patterns/metallica.pat 0644 root bin
+f none patterns/rust.pat 0644 root bin
+f none patterns/cashew.pat 0644 root bin
+f none patterns/circuit.pat 0644 root bin
+f none patterns/leaves3.pat 0644 root bin
+f none patterns/oooh3.pat 0644 root bin
+f none patterns/krinkle.pat 0644 root bin
+f none patterns/bluemetal.pat 0644 root bin
+f none patterns/leaves4.pat 0644 root bin
+f none patterns/dirt.pat 0644 root bin
+f none patterns/purple.pat 0644 root bin
+f none patterns/psycho1.pat 0644 root bin
+f none patterns/curvedledge.pat 0644 root bin
+f none patterns/redrings.pat 0644 root bin
+f none patterns/eggcarton.pat 0644 root bin
+f none patterns/send1.pat 0644 root bin
+f none patterns/clouds.pat 0644 root bin
+f none patterns/cow.pat 0644 root bin
+f none patterns/bluemars.pat 0644 root bin
+f none patterns/swirl2.pat 0644 root bin
+f none patterns/diffpat.pat 0644 root bin
+f none patterns/land2.pat 0644 root bin
+f none patterns/coins.pat 0644 root bin
+f none patterns/electric-blue-ribbons.pat 0644 root bin
+f none patterns/novaugh.pat 0644 root bin
+f none patterns/bluecanyons.pat 0644 root bin
+f none patterns/redishstuff.pat 0644 root bin
+f none patterns/woodblind.pat 0644 root bin
+f none patterns/grid.pat 0644 root bin
+f none patterns/land1.pat 0644 root bin
+f none patterns/3dweave.pat 0644 root bin
+f none patterns/dunes.pat 0644 root bin
+f none patterns/disco.pat 0644 root bin
+f none patterns/purple_glow.pat 0644 root bin
+f none patterns/blob1.pat 0644 root bin
+f none patterns/whirledstuff.pat 0644 root bin
+f none patterns/metalpaths.pat 0644 root bin
+f none patterns/colored_rock.pat 0644 root bin
+f none patterns/inlay.pat 0644 root bin
+f none patterns/bwcubes.pat 0644 root bin
+f none patterns/colorblob.pat 0644 root bin
+f none patterns/lathe.pat 0644 root bin
+f none patterns/Makefile.am 0644 root bin
+f none patterns/startile.pat 0644 root bin
+f none patterns/unsharpswirl.pat 0644 root bin
+f none patterns/clovers.pat 0644 root bin
+f none patterns/greyweave2.pat 0644 root bin
+f none patterns/slice1.pat 0644 root bin
+f none patterns/wax.pat 0644 root bin
+f none patterns/abstract_flowers.pat 0644 root bin
+f none patterns/oooh.pat 0644 root bin
+f none patterns/swirl.pat 0644 root bin
+f none patterns/funnymess.pat 0644 root bin
+f none patterns/chroma.pat 0644 root bin
+f none patterns/mhuerock.pat 0644 root bin
+f none patterns/brownie.pat 0644 root bin
+f none patterns/drymud.pat 0644 root bin
+f none patterns/leaves6.pat 0644 root bin
+f none patterns/Makefile.in 0644 root bin
+f none patterns/silver.pat 0644 root bin
+f none patterns/funnymess2.pat 0644 root bin
+f none patterns/lumps.pat 0644 root bin
+f none patterns/floor_tile.pat 0644 root bin
+f none patterns/fuzzy-colors.pat 0644 root bin
+f none patterns/headache.pat 0644 root bin
+f none patterns/tube.pat 0644 root bin
+f none patterns/goldcloth.pat 0644 root bin
+f none patterns/funnyblobs.pat 0644 root bin
+f none patterns/pebbles.pat 0644 root bin
+f none patterns/torrents.pat 0644 root bin
+f none patterns/neurons.pat 0644 root bin
+f none patterns/waves.pat 0644 root bin
+f none patterns/chains.pat 0644 root bin
+f none COPYING 0644 root bin
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list