summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>1999-01-31 19:08:55 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>1999-01-31 19:08:55 +0000
commit57159c433be01f76e26edb00b35e5b5bd056c84f (patch)
tree97c63a8b7323a864463b9e60775e90178d54c35a /audio
parentAdd 4.0current support. (diff)
Upgrade to 0.99.4.
PR: ports/9814 Submitted by: Jeremy Lea <reg@shale.csir.co.za>
Notes
Notes: svn path=/head/; revision=16449
Diffstat (limited to 'audio')
-rw-r--r--audio/gnome-audio/Makefile16
-rw-r--r--audio/gnome-audio/distinfo2
-rw-r--r--audio/gnome-audio/files/patch-aa15
-rw-r--r--audio/gnome-audio/pkg-plist1
-rw-r--r--audio/gnomeaudio/Makefile16
-rw-r--r--audio/gnomeaudio/distinfo2
-rw-r--r--audio/gnomeaudio/files/patch-aa15
-rw-r--r--audio/gnomeaudio/pkg-plist1
-rw-r--r--audio/gnomeaudio2/Makefile16
-rw-r--r--audio/gnomeaudio2/distinfo2
-rw-r--r--audio/gnomeaudio2/files/patch-aa15
-rw-r--r--audio/gnomeaudio2/pkg-plist1
12 files changed, 60 insertions, 42 deletions
diff --git a/audio/gnome-audio/Makefile b/audio/gnome-audio/Makefile
index eca394406cf3..7642a14f3cb8 100644
--- a/audio/gnome-audio/Makefile
+++ b/audio/gnome-audio/Makefile
@@ -1,24 +1,26 @@
# New ports collection makefile for: gnomeaudio
-# Version required: 0.1
+# Version required: 0.99.4
# Date created: 29 Dec 1998
# Whom: Vanilla I. Shu <vanilla@FreeBSD.ORG>
#
-# $Id: Makefile,v 1.2 1999/01/05 12:37:45 vanilla Exp $
+# $Id: Makefile,v 1.3 1999/01/27 08:31:48 fenner Exp $
#
-DISTNAME= gnome-audio-0.1
-PKGNAME= gnomeaudio-0.1
-CATEGORIES= audio
+DISTNAME= gnome-audio-0.99.4
+PKGNAME= gnomeaudio-0.99.4
+CATEGORIES= audio gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= gnome-audio
MAINTAINER= vanilla@FreeBSD.ORG
-RUN_DEPEND= gnome-config:${PORTSDIR}/x11/gnomelibs
+BUILD_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
+RUN_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
USE_X_PREFIX= yes
USE_GMAKE= yes
-WRKSRC= ${WRKDIR}/gnome-audio/sounds
NO_BUILD= yes
+INSTALL_TARGET= INSTALL_DATA="${INSTALL_DATA}" install
+
.include <bsd.port.mk>
diff --git a/audio/gnome-audio/distinfo b/audio/gnome-audio/distinfo
index 2e270fa9fe0d..7209386d46c5 100644
--- a/audio/gnome-audio/distinfo
+++ b/audio/gnome-audio/distinfo
@@ -1 +1 @@
-MD5 (gnome-audio-0.1.tar.gz) = d2b6b5a520c6c5c8931f379e1a224919
+MD5 (gnome-audio-0.99.4.tar.gz) = 560b5da003e53df08a53492856510771
diff --git a/audio/gnome-audio/files/patch-aa b/audio/gnome-audio/files/patch-aa
index ee90087e72da..af6fa3fade6a 100644
--- a/audio/gnome-audio/files/patch-aa
+++ b/audio/gnome-audio/files/patch-aa
@@ -1,12 +1,15 @@
---- Makefile.orig Tue Dec 29 08:10:44 1998
-+++ Makefile Tue Dec 29 08:11:02 1998
-@@ -4,7 +4,7 @@
+--- sounds/Makefile.orig Tue Jan 26 23:56:12 1999
++++ sounds/Makefile Fri Jan 29 14:28:41 1999
+@@ -6,9 +6,9 @@
- install:
+ install-files:
for I in $(shell find . -name '*.wav'); do \
- install -d $(prefix)/share/sounds/`dirname $$I`; \
- install -m444 $$I $(prefix)/share/sounds/$$I; \
-+ install -d $(prefix)/share/gnome/sounds/`dirname $$I`; \
-+ install -m444 $$I $(prefix)/share/gnome/sounds/$$I; \
++ mkdir -p $(prefix)/share/gnome/sounds/`dirname $$I`; \
++ ${INSTALL_DATA} $$I $(prefix)/share/gnome/sounds/$$I; \
done
+ install-default-links:
+- ln -sf startup1.wav $(prefix)/share/sounds/startup.wav
++ ln -sf startup1.wav $(prefix)/share/gnome/sounds/startup.wav
diff --git a/audio/gnome-audio/pkg-plist b/audio/gnome-audio/pkg-plist
index 7ab26ba32ca3..2e958b1d3578 100644
--- a/audio/gnome-audio/pkg-plist
+++ b/audio/gnome-audio/pkg-plist
@@ -10,6 +10,7 @@ share/gnome/sounds/impact-streak.wav
share/gnome/sounds/panel/slide.wav
share/gnome/sounds/phone.wav
share/gnome/sounds/ricochet.wav
+share/gnome/sounds/startup.wav
share/gnome/sounds/startup1.wav
share/gnome/sounds/startup2.wav
@dirrm share/gnome/sounds/gnothello
diff --git a/audio/gnomeaudio/Makefile b/audio/gnomeaudio/Makefile
index eca394406cf3..7642a14f3cb8 100644
--- a/audio/gnomeaudio/Makefile
+++ b/audio/gnomeaudio/Makefile
@@ -1,24 +1,26 @@
# New ports collection makefile for: gnomeaudio
-# Version required: 0.1
+# Version required: 0.99.4
# Date created: 29 Dec 1998
# Whom: Vanilla I. Shu <vanilla@FreeBSD.ORG>
#
-# $Id: Makefile,v 1.2 1999/01/05 12:37:45 vanilla Exp $
+# $Id: Makefile,v 1.3 1999/01/27 08:31:48 fenner Exp $
#
-DISTNAME= gnome-audio-0.1
-PKGNAME= gnomeaudio-0.1
-CATEGORIES= audio
+DISTNAME= gnome-audio-0.99.4
+PKGNAME= gnomeaudio-0.99.4
+CATEGORIES= audio gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= gnome-audio
MAINTAINER= vanilla@FreeBSD.ORG
-RUN_DEPEND= gnome-config:${PORTSDIR}/x11/gnomelibs
+BUILD_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
+RUN_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
USE_X_PREFIX= yes
USE_GMAKE= yes
-WRKSRC= ${WRKDIR}/gnome-audio/sounds
NO_BUILD= yes
+INSTALL_TARGET= INSTALL_DATA="${INSTALL_DATA}" install
+
.include <bsd.port.mk>
diff --git a/audio/gnomeaudio/distinfo b/audio/gnomeaudio/distinfo
index 2e270fa9fe0d..7209386d46c5 100644
--- a/audio/gnomeaudio/distinfo
+++ b/audio/gnomeaudio/distinfo
@@ -1 +1 @@
-MD5 (gnome-audio-0.1.tar.gz) = d2b6b5a520c6c5c8931f379e1a224919
+MD5 (gnome-audio-0.99.4.tar.gz) = 560b5da003e53df08a53492856510771
diff --git a/audio/gnomeaudio/files/patch-aa b/audio/gnomeaudio/files/patch-aa
index ee90087e72da..af6fa3fade6a 100644
--- a/audio/gnomeaudio/files/patch-aa
+++ b/audio/gnomeaudio/files/patch-aa
@@ -1,12 +1,15 @@
---- Makefile.orig Tue Dec 29 08:10:44 1998
-+++ Makefile Tue Dec 29 08:11:02 1998
-@@ -4,7 +4,7 @@
+--- sounds/Makefile.orig Tue Jan 26 23:56:12 1999
++++ sounds/Makefile Fri Jan 29 14:28:41 1999
+@@ -6,9 +6,9 @@
- install:
+ install-files:
for I in $(shell find . -name '*.wav'); do \
- install -d $(prefix)/share/sounds/`dirname $$I`; \
- install -m444 $$I $(prefix)/share/sounds/$$I; \
-+ install -d $(prefix)/share/gnome/sounds/`dirname $$I`; \
-+ install -m444 $$I $(prefix)/share/gnome/sounds/$$I; \
++ mkdir -p $(prefix)/share/gnome/sounds/`dirname $$I`; \
++ ${INSTALL_DATA} $$I $(prefix)/share/gnome/sounds/$$I; \
done
+ install-default-links:
+- ln -sf startup1.wav $(prefix)/share/sounds/startup.wav
++ ln -sf startup1.wav $(prefix)/share/gnome/sounds/startup.wav
diff --git a/audio/gnomeaudio/pkg-plist b/audio/gnomeaudio/pkg-plist
index 7ab26ba32ca3..2e958b1d3578 100644
--- a/audio/gnomeaudio/pkg-plist
+++ b/audio/gnomeaudio/pkg-plist
@@ -10,6 +10,7 @@ share/gnome/sounds/impact-streak.wav
share/gnome/sounds/panel/slide.wav
share/gnome/sounds/phone.wav
share/gnome/sounds/ricochet.wav
+share/gnome/sounds/startup.wav
share/gnome/sounds/startup1.wav
share/gnome/sounds/startup2.wav
@dirrm share/gnome/sounds/gnothello
diff --git a/audio/gnomeaudio2/Makefile b/audio/gnomeaudio2/Makefile
index eca394406cf3..7642a14f3cb8 100644
--- a/audio/gnomeaudio2/Makefile
+++ b/audio/gnomeaudio2/Makefile
@@ -1,24 +1,26 @@
# New ports collection makefile for: gnomeaudio
-# Version required: 0.1
+# Version required: 0.99.4
# Date created: 29 Dec 1998
# Whom: Vanilla I. Shu <vanilla@FreeBSD.ORG>
#
-# $Id: Makefile,v 1.2 1999/01/05 12:37:45 vanilla Exp $
+# $Id: Makefile,v 1.3 1999/01/27 08:31:48 fenner Exp $
#
-DISTNAME= gnome-audio-0.1
-PKGNAME= gnomeaudio-0.1
-CATEGORIES= audio
+DISTNAME= gnome-audio-0.99.4
+PKGNAME= gnomeaudio-0.99.4
+CATEGORIES= audio gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= gnome-audio
MAINTAINER= vanilla@FreeBSD.ORG
-RUN_DEPEND= gnome-config:${PORTSDIR}/x11/gnomelibs
+BUILD_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
+RUN_DEPENDS= gnome-config:${PORTSDIR}/x11/gnomelibs
USE_X_PREFIX= yes
USE_GMAKE= yes
-WRKSRC= ${WRKDIR}/gnome-audio/sounds
NO_BUILD= yes
+INSTALL_TARGET= INSTALL_DATA="${INSTALL_DATA}" install
+
.include <bsd.port.mk>
diff --git a/audio/gnomeaudio2/distinfo b/audio/gnomeaudio2/distinfo
index 2e270fa9fe0d..7209386d46c5 100644
--- a/audio/gnomeaudio2/distinfo
+++ b/audio/gnomeaudio2/distinfo
@@ -1 +1 @@
-MD5 (gnome-audio-0.1.tar.gz) = d2b6b5a520c6c5c8931f379e1a224919
+MD5 (gnome-audio-0.99.4.tar.gz) = 560b5da003e53df08a53492856510771
diff --git a/audio/gnomeaudio2/files/patch-aa b/audio/gnomeaudio2/files/patch-aa
index ee90087e72da..af6fa3fade6a 100644
--- a/audio/gnomeaudio2/files/patch-aa
+++ b/audio/gnomeaudio2/files/patch-aa
@@ -1,12 +1,15 @@
---- Makefile.orig Tue Dec 29 08:10:44 1998
-+++ Makefile Tue Dec 29 08:11:02 1998
-@@ -4,7 +4,7 @@
+--- sounds/Makefile.orig Tue Jan 26 23:56:12 1999
++++ sounds/Makefile Fri Jan 29 14:28:41 1999
+@@ -6,9 +6,9 @@
- install:
+ install-files:
for I in $(shell find . -name '*.wav'); do \
- install -d $(prefix)/share/sounds/`dirname $$I`; \
- install -m444 $$I $(prefix)/share/sounds/$$I; \
-+ install -d $(prefix)/share/gnome/sounds/`dirname $$I`; \
-+ install -m444 $$I $(prefix)/share/gnome/sounds/$$I; \
++ mkdir -p $(prefix)/share/gnome/sounds/`dirname $$I`; \
++ ${INSTALL_DATA} $$I $(prefix)/share/gnome/sounds/$$I; \
done
+ install-default-links:
+- ln -sf startup1.wav $(prefix)/share/sounds/startup.wav
++ ln -sf startup1.wav $(prefix)/share/gnome/sounds/startup.wav
diff --git a/audio/gnomeaudio2/pkg-plist b/audio/gnomeaudio2/pkg-plist
index 7ab26ba32ca3..2e958b1d3578 100644
--- a/audio/gnomeaudio2/pkg-plist
+++ b/audio/gnomeaudio2/pkg-plist
@@ -10,6 +10,7 @@ share/gnome/sounds/impact-streak.wav
share/gnome/sounds/panel/slide.wav
share/gnome/sounds/phone.wav
share/gnome/sounds/ricochet.wav
+share/gnome/sounds/startup.wav
share/gnome/sounds/startup1.wav
share/gnome/sounds/startup2.wav
@dirrm share/gnome/sounds/gnothello