diff options
author | ahze <ahze@FreeBSD.org> | 2007-06-02 04:43:43 +0800 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2007-06-02 04:43:43 +0800 |
commit | eea2c7c763c2bc8d665973fac731751b9b8cd2b0 (patch) | |
tree | 4a78a6baa90d2f72994c6507c31782e36b793a47 /games | |
parent | f37e04a357adde6698c329acd3c4dd7fdcc2b815 (diff) | |
download | freebsd-ports-gnome-eea2c7c763c2bc8d665973fac731751b9b8cd2b0.tar.gz freebsd-ports-gnome-eea2c7c763c2bc8d665973fac731751b9b8cd2b0.tar.zst freebsd-ports-gnome-eea2c7c763c2bc8d665973fac731751b9b8cd2b0.zip |
- Retire gstreamer 0.8.0
Diffstat (limited to 'games')
-rw-r--r-- | games/Makefile | 1 | ||||
-rw-r--r-- | games/gnome-music-quiz/Makefile | 36 | ||||
-rw-r--r-- | games/gnome-music-quiz/distinfo | 3 | ||||
-rw-r--r-- | games/gnome-music-quiz/files/patch-src::mq.c | 40 | ||||
-rw-r--r-- | games/gnome-music-quiz/pkg-descr | 10 | ||||
-rw-r--r-- | games/gnome-music-quiz/pkg-plist | 3 |
6 files changed, 0 insertions, 93 deletions
diff --git a/games/Makefile b/games/Makefile index 8426466cd1b4..99435faf66d7 100644 --- a/games/Makefile +++ b/games/Makefile @@ -278,7 +278,6 @@ SUBDIR += gno3dtet SUBDIR += gnome-games SUBDIR += gnome-games-extra-data - SUBDIR += gnome-music-quiz SUBDIR += gnomeattacks SUBDIR += gnomebreakout SUBDIR += gnomechess diff --git a/games/gnome-music-quiz/Makefile b/games/gnome-music-quiz/Makefile deleted file mode 100644 index 9666d0ebb8bc..000000000000 --- a/games/gnome-music-quiz/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# New ports collection makefile for: GNOME Music Quiz -# Date created: 20 Jun 2004 -# Whom: Jean-Yves Lefort <jylefort@brutele.be> -# -# $FreeBSD$ -# - -PORTNAME= gnome-music-quiz -PORTVERSION= 0.1 -PORTREVISION= 8 -CATEGORIES= games audio -MASTER_SITES= http://ishamael.inactivex.net/software/tarballs/ -DISTNAME= mq-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= A game similar to the television show 'Name That Tune' - -RUN_DEPENDS= rhythmbox:${PORTSDIR}/audio/rhythmbox - -USE_X_PREFIX= yes -USE_GNOME= gnomeprefix libgnomeui -USE_GSTREAMER80= gconf -GNU_CONFIGURE= yes - -pre-configure: - @${RM} -f \ - ${WRKSRC}/intltool-extract.in \ - ${WRKSRC}/intltool-merge.in \ - ${WRKSRC}/intltool-update.in - @${CP} -f \ - ${LOCALBASE}/share/intltool/intltool-extract.in \ - ${LOCALBASE}/share/intltool/intltool-merge.in \ - ${LOCALBASE}/share/intltool/intltool-update.in \ - ${WRKSRC} - -.include <bsd.port.mk> diff --git a/games/gnome-music-quiz/distinfo b/games/gnome-music-quiz/distinfo deleted file mode 100644 index 8e109054d91f..000000000000 --- a/games/gnome-music-quiz/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (mq-0.1.tar.gz) = 8f2051612c0a1dcecbd6cd0b2f30d397 -SHA256 (mq-0.1.tar.gz) = f9932d6bd380b7d4ba0c3bc8d5812ba2ff8f6e31e160611cb4ca778a2ccbaaef -SIZE (mq-0.1.tar.gz) = 817333 diff --git a/games/gnome-music-quiz/files/patch-src::mq.c b/games/gnome-music-quiz/files/patch-src::mq.c deleted file mode 100644 index d51d81fe8205..000000000000 --- a/games/gnome-music-quiz/files/patch-src::mq.c +++ /dev/null @@ -1,40 +0,0 @@ ---- src/mq.c.orig Sun Jun 20 20:21:26 2004 -+++ src/mq.c Sun Jun 20 21:58:03 2004 -@@ -440,15 +440,30 @@ - - static gboolean round_entries_desensitize_timeout(gpointer data) - { -- gint32 i = 0; -+ int i; -+ int entries_left = 0; -+ int n; -+ int j = 0; - -- do { -- i = g_random_int_range(0,5); -- } while (round_entries_sensitive[i] == FALSE || i == round_answer); -- -- round_entries_sensitive[i] = FALSE; -- gtk_widget_set_sensitive(GTK_WIDGET(game_buttons[i]),FALSE); -+ for (i = 0; i < 5; i++) -+ if (round_entries_sensitive[i] && i != round_answer) -+ entries_left++; - -+ if (entries_left == 0) { -+ round_entries_desensitize_timeout_id = -1; -+ return FALSE; -+ } -+ -+ n = g_random_int_range(0, entries_left); -+ for (i = 0; i < 5; i++) -+ if (round_entries_sensitive[i] && i != round_answer) { -+ if (j++ == n) { -+ round_entries_sensitive[i] = FALSE; -+ gtk_widget_set_sensitive(GTK_WIDGET(game_buttons[i]), FALSE); -+ break; -+ } -+ } -+ - return TRUE; - } - diff --git a/games/gnome-music-quiz/pkg-descr b/games/gnome-music-quiz/pkg-descr deleted file mode 100644 index aa73d976021e..000000000000 --- a/games/gnome-music-quiz/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -GNOME Music Quiz is a game similar to the television show 'Name That -Tune'. Players are quizzed on songs from their Rhythmbox music -library. The faster a player identifies a song the more points he or -she receives. Great for parties or to learn your music and impress -your friends. - -WWW: http://ishamael.inactivex.net/software/mq.html - -- Jean-Yves Lefort -jylefort@FreeBSD.org diff --git a/games/gnome-music-quiz/pkg-plist b/games/gnome-music-quiz/pkg-plist deleted file mode 100644 index f99a923fd853..000000000000 --- a/games/gnome-music-quiz/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -bin/mq -share/gnome/applications/mq.desktop -share/gnome/pixmaps/gnome-mq.png |