View | Details | Raw Unified | Return to bug 42593
Collapse All | Expand All

(-)openag/Makefile (-1 / +7 lines)
Lines 6-11 Link Here
6
6
7
PORTNAME=	openag
7
PORTNAME=	openag
8
PORTVERSION=	1.1.1
8
PORTVERSION=	1.1.1
9
PORTREVISION=	1
9
CATEGORIES=	audio net
10
CATEGORIES=	audio net
10
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITE_SUBDIR=	openags
12
MASTER_SITE_SUBDIR=	openags
Lines 13-22 Link Here
13
14
14
MAINTAINER=	janos.mohacsi@bsd.hu
15
MAINTAINER=	janos.mohacsi@bsd.hu
15
16
16
GNU_CONFIGURE=	yes
17
BUILD_DEPENDS=	autoconf:${PORTSDIR}/devel/autoconf
18
19
USE_AUTOCONF=	yes
20
AUTOCONF=	${LOCALBASE}/bin/autoconf
17
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}
21
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}
18
22
19
DOC_FILES=	AUTHORS COPYING ChangeLog INSTALL README
23
DOC_FILES=	AUTHORS COPYING ChangeLog INSTALL README
24
25
BROKEN=		"The Central AudioGalaxy Search Server shutdown in June 2002.  See more: http://homepage.mac.com/macdomeeu/dev/current/openag/email.html This client will be marked broken until AudioGalaxy Search server clone has not set up."
20
26
21
post-install:
27
post-install:
22
.ifndef(NOPORTDOCS)
28
.ifndef(NOPORTDOCS)
(-)openag/files/patch-configure.in (+40 lines)
Line 0 Link Here
1
--- configure.in.orig	Mon Apr 22 22:45:05 2002
2
+++ configure.in	Mon Sep  9 15:48:12 2002
3
@@ -22,15 +22,23 @@
4
 AC_PROG_LIBTOOL
5
 
6
 # Extra libtool stuff.  This SHOULDN'T be needed!
7
-Xsed="sed -e s/^X//"
8
-LTLIBOBJS=`echo X"$LIBOBJS"|\
9
-           [$Xsed -e "s,\.[^.]* ,.lo ,g;s,\.[^.]*$,.lo,"]`
10
+#Xsed="sed -e s/^X//"
11
+#LTLIBOBJS=`echo X"$LIBOBJS"|\
12
+#           [$Xsed -e "s,\.[^.]* ,.lo ,g;s,\.[^.]*$,.lo,"]`
13
+#AC_SUBST(LTLIBOBJS)
14
+# This is necessary so that .o files in LIBOBJS are also built via
15
+# the ANSI2KNR-filtering rules.
16
+LIB@&t@OBJS=`echo "$LIB@&t@OBJS" |
17
+             sed 's,\.[[^.]]* ,$U&,g;s,\.[[^.]]*$,$U&,'`
18
+LTLIBOBJS=`echo "$LIB@&t@OBJS" |
19
+           sed 's,\.[[^.]]* ,.lo ,g;s,\.[[^.]]*$,.lo,'`
20
 AC_SUBST(LTLIBOBJS)
21
 
22
 
23
+
24
 #Checks for the presence of wget or curl on the user's system.
25
 #Neccessary for fechting libmp3info source.
26
-AC_CHECK_PROGS(WGET, wget curl)
27
+AC_CHECK_PROGS(WGET, fetch wget curl)
28
 AC_ARG_VAR(WGET, [a wget-like URL http file comandline file \
29
 retreaver is necessary to automatically retrieve libmp3info source])
30
 AC_ARG_VAR(WGET_FLAGS, [the flags required by the wget-like \
31
@@ -41,6 +49,9 @@
32
 	AC_SUBST(WGET_FLAGS,[-O])
33
 	;;
34
 curl)
35
+	AC_SUBST(WGET_FLAGS,[-o])
36
+	;;
37
+fetch)
38
 	AC_SUBST(WGET_FLAGS,[-o])
39
 	;;
40
 *)

Return to bug 42593