summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris White <chriswhite@gentoo.org>2005-01-06 05:20:22 +0000
committerChris White <chriswhite@gentoo.org>2005-01-06 05:20:22 +0000
commit7b6b33a63f295de8dc564bfe3a3887ef3a84df6a (patch)
treec3624e85e756f122486817e34bca6f150dc7f0b3 /media-sound/potamus/files
parentBump, bug #76748 (Manifest recommit) (diff)
downloadgentoo-2-7b6b33a63f295de8dc564bfe3a3887ef3a84df6a.tar.gz
gentoo-2-7b6b33a63f295de8dc564bfe3a3887ef3a84df6a.tar.bz2
gentoo-2-7b6b33a63f295de8dc564bfe3a3887ef3a84df6a.zip
Initial import into the tree. Fixes bug #49149.
Diffstat (limited to 'media-sound/potamus/files')
-rw-r--r--media-sound/potamus/files/digest-potamus-200404141
-rw-r--r--media-sound/potamus/files/potamus-Makefile.patch25
2 files changed, 26 insertions, 0 deletions
diff --git a/media-sound/potamus/files/digest-potamus-20040414 b/media-sound/potamus/files/digest-potamus-20040414
new file mode 100644
index 000000000000..de65b8d0f693
--- /dev/null
+++ b/media-sound/potamus/files/digest-potamus-20040414
@@ -0,0 +1 @@
+MD5 f41246ad98db6de6eae94de8715b7df9 potamus-CVS-20040414.tar.bz2 11474
diff --git a/media-sound/potamus/files/potamus-Makefile.patch b/media-sound/potamus/files/potamus-Makefile.patch
new file mode 100644
index 000000000000..9e9e20efed98
--- /dev/null
+++ b/media-sound/potamus/files/potamus-Makefile.patch
@@ -0,0 +1,25 @@
+--- Makefile.old 2004-01-16 11:25:11.000000000 +0900
++++ Makefile 2005-01-06 14:03:06.640334056 +0900
+@@ -3,11 +3,11 @@
+ CPPFLAGS = -std=gnu99 -Wall -g `pkg-config --cflags $(PKGS)` -DDATADIR=\"$(datadir)\"
+ LIBS = `pkg-config --libs $(PKGS)`
+
+-prefix = /home/azz/src/potamus
++prefix = /usr
+ exec_prefix = $(prefix)
+ bindir = $(exec_prefix)/bin
+ datadir = $(prefix)/share
+-DESTDIR =
++
+
+ potamus: $(OBJS)
+ $(CC) $(CPPFLAGS) -o potamus $(OBJS) $(LIBS)
+@@ -21,7 +21,7 @@
+ rm -f $(OBJS) potamus *~ *.bak depend share/potamus/*.bak
+
+ depend:
+- @for x in *.c ; do $(CXX) -MM $$x ; done >depend
++ @for x in *.c ; do $(CXX) `pkg-config --cflags $(PKGS)` -DDATADIR=\"$(datadir)\" -MM $$x ; done >depend
+ .PHONY: depend
+
+ include depend