diff options
author | danfe <danfe@FreeBSD.org> | 2016-09-18 09:33:40 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2016-09-18 09:33:40 +0800 |
commit | 41c9241185437059df01abfcd61b87c2b4a4388e (patch) | |
tree | e2b562eec71c6cdb135af74b4147742aa6581133 /audio | |
parent | 602a93afa9176a7fa35e973c7080cf8ba4f9befa (diff) | |
download | freebsd-ports-gnome-41c9241185437059df01abfcd61b87c2b4a4388e.tar.gz freebsd-ports-gnome-41c9241185437059df01abfcd61b87c2b4a4388e.tar.zst freebsd-ports-gnome-41c9241185437059df01abfcd61b87c2b4a4388e.zip |
- Unbreak fetching by pointing to archived distfile in Google Cloud Storage
despite that their repository has been moved to GitHub: new distfile lacks
pre-generated autotools-related bits and does not bootstrap correctly, and
I'm not in the mood to fight with autotools right now
- Remove no longer accurate explanation of why we cannot enable -Werror yet:
while this particular problem with Clang is no longer an issue, there are
still lots of compiler warnings left
Diffstat (limited to 'audio')
-rw-r--r-- | audio/osd-lyrics/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/audio/osd-lyrics/Makefile b/audio/osd-lyrics/Makefile index e119040c96d7..24dfeeee90ce 100644 --- a/audio/osd-lyrics/Makefile +++ b/audio/osd-lyrics/Makefile @@ -5,16 +5,13 @@ PORTNAME= osdlyrics PORTVERSION= 0.4.3 PORTREVISION= 4 CATEGORIES= audio deskutils -MASTER_SITES= GOOGLE_CODE -PROJECTHOST= osd-lyrics +MASTER_SITES= https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/osd-lyrics/ MAINTAINER= danfe@FreeBSD.org COMMENT= On-screen lyrics display program for various media players LICENSE= GPLv3 -BROKEN= Unfetchable (google code has gone away) - LIB_DEPENDS= libnotify.so:devel/libnotify \ libdbus-glib-1.so:devel/dbus-glib \ libcurl.so:ftp/curl @@ -22,9 +19,6 @@ LIB_DEPENDS= libnotify.so:devel/libnotify \ USES= desktop-file-utils gettext gmake iconv localbase pkgconfig sqlite USE_GNOME= gtk20 intltool GNU_CONFIGURE= yes -# Cannot enable -Werror yet: Clang does not like the code `printf(_("..."))', -# see this bug for details: http://llvm.org/bugs/show_bug.cgi?id=3814 -#CONFIGURE_ARGS= --with-werror INSTALLS_ICONS= yes PORTDOCS= AUTHORS ChangeLog NEWS README |