mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
Remove a broken for long and not working with any modern compiler port
This commit is contained in:
parent
4b2a51b2c6
commit
527fbcedf0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=352518
1
MOVED
1
MOVED
@ -6051,3 +6051,4 @@ x11/emu||2014-04-24|Has expired: Broken, not staged
|
||||
lang/ruby-doc-stdlib||2014-04-24|Has expired: Upstream rerolls frequently, online docs work well
|
||||
emulators/mupen64-rice|emulators/mupen64-video-rice|2014-04-24|Removed, part of removed mupen64
|
||||
devel/otrs|www/otrs|2014-04-28|OTRS is actually web based ticket system and it has nothing with development
|
||||
audio/cantus_3||2014-04-28|Broken for a while, does not build with modern compilers
|
||||
|
@ -58,7 +58,6 @@
|
||||
SUBDIR += btc
|
||||
SUBDIR += calf
|
||||
SUBDIR += cam
|
||||
SUBDIR += cantus_3
|
||||
SUBDIR += caps-plugins
|
||||
SUBDIR += ccaudio2
|
||||
SUBDIR += cd-console
|
||||
|
@ -1,53 +0,0 @@
|
||||
# Created by: asa@gascom.ru
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cantus
|
||||
PORTVERSION= 3.0.2
|
||||
PORTREVISION= 9
|
||||
DISTVERSIONSUFFIX= -testing.src
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/${PORTNAME}/Testing%20%28unstable%29/${PORTVERSION}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Tool for tagging and renaming MP3 and OGG/Vorbis files
|
||||
|
||||
LIB_DEPENDS= libgtkmm-2.4.so:${PORTSDIR}/x11-toolkits/gtkmm24 \
|
||||
libglademm-2.4.so:${PORTSDIR}/devel/libglademm24 \
|
||||
libogg.so:${PORTSDIR}/audio/libogg \
|
||||
libsigc-2.0.so:${PORTSDIR}/devel/libsigc++20 \
|
||||
libvorbis.so:${PORTSDIR}/audio/libvorbis
|
||||
|
||||
CONFLICTS= cantus-1*
|
||||
|
||||
LATEST_LINK= ${PORTNAME}3
|
||||
|
||||
NO_STAGE= yes
|
||||
USES= gmake pathfix gettext pkgconfig
|
||||
USE_GNOME= gnomeprefix libglade2 glib20
|
||||
USE_LDCONFIG= yes
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --program-transform-name="" --disable-static
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME:S/.src//}
|
||||
|
||||
NO_PACKAGE= hangs on pointyhat
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -Ee 's|-ldld||g;s|-ldl||g;/ALL_LINGUAS=/s|=(.*)|="\1"|;\
|
||||
/LIBS=/s|-lgthr|${PTHREAD_LIBS} &|' ${WRKSRC}/configure
|
||||
@${REINPLACE_CMD} -e 's|-ldl||;s|-lrt||' ${WRKSRC}/source/cantus/Makefile.in
|
||||
@${REINPLACE_CMD} -e 's|PACKAGE_LIB_DIR "cantus-3.glade"|PACKAGE_DATA_DIR "/cantus/glade/cantus.glade"|'\
|
||||
${WRKSRC}/source/cantus/gui_controller.cc
|
||||
@${FIND} ${WRKSRC} -name "*.h" -o -name "*.cc" | ${XARGS} \
|
||||
${REINPLACE_CMD} -e 's|SigC::Slot3|sigc::slot3|g ; \
|
||||
s|SigC::Signal|sigc::signal|g ; \
|
||||
s|SigC::Object|sigc::trackable|g'
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${ARCH} == "sparc64"
|
||||
IGNORE= includes i386 asm
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (cantus-3.0.2-testing.src.tar.gz) = 0ea294dfd684142400fe179c5da9bd9ffc8716c01f60216cd55be5731d663c16
|
||||
SIZE (cantus-3.0.2-testing.src.tar.gz) = 511104
|
@ -1,11 +0,0 @@
|
||||
--- src/libs/lib_charset.c.orig Tue May 18 14:25:50 2004
|
||||
+++ source/cantus/charset.c Tue May 18 14:25:59 2004
|
||||
@@ -207,7 +207,7 @@
|
||||
outptr = out;
|
||||
|
||||
retry:
|
||||
- if (iconv(cd, (char**)&input, &length, &outptr, &outleft) == -1) {
|
||||
+ if (iconv(cd, (const char**)&input, &length, &outptr, &outleft) == -1) {
|
||||
int used;
|
||||
switch (errno) {
|
||||
case E2BIG:
|
@ -1,29 +0,0 @@
|
||||
--- src/plugins/cantushashvalue.c.orig 2007-08-03 14:31:22.000000000 +0200
|
||||
+++ source/cantus/cantushashvalue.c 2007-08-03 14:35:10.000000000 +0200
|
||||
@@ -81,7 +81,7 @@
|
||||
g_assert(hvalue != NULL);
|
||||
switch (type) {
|
||||
case G_TYPE_INT:
|
||||
- value_set_int(hvalue, (gint)value);
|
||||
+ value_set_int(hvalue, (gint64)value);
|
||||
break;
|
||||
|
||||
case G_TYPE_CHAR:
|
||||
@@ -90,7 +90,7 @@
|
||||
break;
|
||||
|
||||
case G_TYPE_BOOLEAN:
|
||||
- value_set_bool(hvalue, (gboolean)value);
|
||||
+ value_set_bool(hvalue, (gint64)value);
|
||||
break;
|
||||
|
||||
case G_TYPE_POINTER:
|
||||
@@ -157,7 +157,7 @@
|
||||
if (hvalue->type != G_TYPE_BOOLEAN)
|
||||
g_warning("G_TYPE_BOOLEAN value requested from non-G_TYPE_BOOLEAN"
|
||||
" container.\n");
|
||||
- return (gboolean)hvalue->value;
|
||||
+ return (gint64) hvalue->value;
|
||||
}
|
||||
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- src/ui-gtk2/gui_preferences.cc.orig 2007-08-12 19:50:46.000000000 +0200
|
||||
+++ source/cantus/gui_preferences.cc 2007-08-12 19:51:17.000000000 +0200
|
||||
@@ -81,7 +81,7 @@
|
||||
}
|
||||
Gtk::CheckButton *check = dynamic_cast<Gtk::CheckButton*>(widget);
|
||||
if (check) {
|
||||
- check->set_active((gboolean)value);
|
||||
+ check->set_active(value);
|
||||
return TRUE;
|
||||
}
|
||||
return TRUE;
|
@ -1,7 +0,0 @@
|
||||
Cantus is an easy to use tool for tagging and renaming MP3 and OGG/Vorbis files.
|
||||
It has many features including mass tagging and renaming of MP3s, the ability to
|
||||
generate a tag out of the filename, filter definitions for renaming, recursive
|
||||
actions, CDDB (Freedb) lookup (no CD needed), copy between ID3V1 and ID3V2 tags,
|
||||
and a lot more.
|
||||
|
||||
WWW: http://cantus.sourceforge.net/
|
@ -1,36 +0,0 @@
|
||||
bin/cantus
|
||||
lib/libcantusplugin_id3copier.la
|
||||
lib/libcantusplugin_id3copier.so
|
||||
lib/libcantusplugin_id3copier.so.3
|
||||
lib/libcantusplugin_id3v1.la
|
||||
lib/libcantusplugin_id3v1.so
|
||||
lib/libcantusplugin_id3v1.so.3
|
||||
lib/libcantusplugin_id3v2.la
|
||||
lib/libcantusplugin_id3v2.so
|
||||
lib/libcantusplugin_id3v2.so.3
|
||||
lib/libcantusplugin_mpegheader.la
|
||||
lib/libcantusplugin_mpegheader.so
|
||||
lib/libcantusplugin_mpegheader.so.3
|
||||
lib/libcantusplugin_tag2filename.la
|
||||
lib/libcantusplugin_tag2filename.so
|
||||
lib/libcantusplugin_tag2filename.so.3
|
||||
lib/libcantusplugin_vorbis.la
|
||||
lib/libcantusplugin_vorbis.so
|
||||
lib/libcantusplugin_vorbis.so.3
|
||||
share/cantus/glade/cantus.glade
|
||||
share/cantus/glade/cantus.gladep
|
||||
share/cantus/glade/strings.c
|
||||
share/pixmaps/cantus/general/general.png
|
||||
share/pixmaps/cantus/logo/cantus.svg
|
||||
share/pixmaps/cantus/logo/cantus_tag.png
|
||||
share/locale/de/LC_MESSAGES/cantus.mo
|
||||
share/locale/es/LC_MESSAGES/cantus.mo
|
||||
share/locale/fr/LC_MESSAGES/cantus.mo
|
||||
share/locale/it/LC_MESSAGES/cantus.mo
|
||||
share/locale/nl/LC_MESSAGES/cantus.mo
|
||||
share/locale/pl/LC_MESSAGES/cantus.mo
|
||||
@dirrm share/cantus/glade
|
||||
@dirrm share/cantus
|
||||
@dirrm share/pixmaps/cantus/general
|
||||
@dirrm share/pixmaps/cantus/logo
|
||||
@dirrm share/pixmaps/cantus
|
Loading…
Reference in New Issue
Block a user