Bug 129852 - [UPDATE] www/qdecoder
Summary: [UPDATE] www/qdecoder
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: CHOI Junho
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-22 12:30 UTC by Seungyoung Kim
Modified: 2009-09-20 00:10 UTC (History)
0 users

See Also:


Attachments
file.shar (7.28 KB, text/plain)
2008-12-22 12:30 UTC, Seungyoung Kim
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Seungyoung Kim 2008-12-22 12:30:01 UTC
NOTE : This is the replacement of www/129851 (I choosen wrong category)

o added -fPIC compilation option to fix problem on FreeBSD AMD 64 Machine.
o upgraded ports to fit with lastest 9.0.2 version of qDecoder.
o changed OPTIONS on Makefile

Fix: 

--- qdecoder.shar.txt ends here -----G9jVR0vLw6wscJePhjTYrpdnVPMCgAropp3P5xJiMUPIowOh
Content-Type: text/plain; name="qdecoder.diff.txt"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="qdecoder.diff.txt"

diff -u qdecoder/Makefile qdecoder902/Makefile
--- qdecoder/Makefile	2008-12-20 03:21:59.000000000 +0900
+++ qdecoder902/Makefile	2008-12-22 20:04:26.000000000 +0900
@@ -2,11 +2,11 @@
 # Date created:         Sep 10 1999
 # Whom:                 CHOI Junho <cjh@FreeBSD.org>
 #
-# $FreeBSD: ports/www/qdecoder/Makefile,v 1.13 2008/12/19 18:21:59 pav Exp $
+# $FreeBSD: ports/www/qdecoder/Makefile,v 1.12 2008/11/28 11:16:47 cjh Exp $
 #
 
 PORTNAME=	qdecoder
-PORTVERSION=	9.0.1
+PORTVERSION=	9.0.2
 CATEGORIES=	www
 MASTER_SITES=	ftp://ftp.qdecoder.org/pub/qDecoder/
 DISTNAME=	qDecoder-${PORTVERSION}
@@ -19,27 +19,23 @@
 HAS_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 
-OPTIONS=	Q_DEBUG "Debug printout" off
-OPTIONS+=	Q_64BIT "64bit support" off
-OPTIONS+=	Q_SENDFILE "Use sendfile()" off
-OPTIONS+=	Q_MYSQL "Use MySQL" off
-OPTIONS+=	Q_CGISUPPORT "CGI API support" on
-OPTIONS+=	Q_SOCKET "Socket API support" on
-OPTIONS+=	Q_IPC "IPC API support" on
-OPTIONS+=	Q_DATASTRUCTURE "Datastructure API support" on
+OPTIONS=	Q_DEBUG "enable debuging output" off
+OPTIONS+=	Q_CGI "enable CGI APIs" on
+OPTIONS+=	Q_SOCKET "enable socket APIs" on
+OPTIONS+=	Q_IPC "enable IPC APIs" on
+OPTIONS+=	Q_DATASTRUCTURE "enable data-structure APIs" on
+OPTIONS+=	Q_MYSQL "enable MySQL database supports" off
+OPTIONS+=	Q_LFS "enable large-file supports" off
+OPTIONS+=	Q_SENDFILE "use sendfile() if possible" off
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} != "i386"
-BROKEN=		does not compile
-.endif
-
 .if defined(WITH_Q_DEBUG)
 CONFIGURE_ARGS+="--enable-debug"
 .endif
 
-.if defined(WITH_Q_64BIT)
-CONFIGURE_ARGS+="--enable-64bit"
+.if defined(WITH_Q_LFS)
+CONFIGURE_ARGS+="--enable-lfs"
 .endif
 
 .if defined(WITH_Q_SENDFILE)
@@ -51,8 +47,8 @@
 USE_MYSQL=yes
 .endif
 
-.if defined(WITHOUT_Q_CGISUPPORT)
-CONFIGURE_ARGS+="--disable-cgisupport"
+.if defined(WITHOUT_Q_CGI)
+CONFIGURE_ARGS+="--disable-cgi"
 .endif
 
 .if defined(WITHOUT_Q_SOCKET)
diff -u qdecoder/distinfo qdecoder902/distinfo
--- qdecoder/distinfo	2008-11-28 20:16:47.000000000 +0900
+++ qdecoder902/distinfo	2008-12-22 19:40:53.000000000 +0900
@@ -1,3 +1,3 @@
-MD5 (qDecoder-9.0.1.tar.gz) = 8f99c97e029066a35020bb45ab33f545
-SHA256 (qDecoder-9.0.1.tar.gz) = b48e4c6e9a7ef26062fe79c5fcb81593059cb9d207c8e4c3cbfc41225c58e3fc
-SIZE (qDecoder-9.0.1.tar.gz) = 266821
+MD5 (qDecoder-9.0.2.tar.gz) = 6dcf76654d07082f9e83b621eb9acb64
+SHA256 (qDecoder-9.0.2.tar.gz) = a371f32309d1934a8866eb11a6a87f3859f97f67992c12a995ebcf819d2dcc4c
+SIZE (qDecoder-9.0.2.tar.gz) = 266676
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2008-12-22 12:30:11 UTC
Responsible Changed
From-To: freebsd-ports-bugs->cjh

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2009-09-20 00:01:36 UTC
miwi        2009-09-19 23:01:22 UTC

  FreeBSD ports repository

  Modified files:
    www/qdecoder         Makefile distinfo 
  Log:
  - Update to 9.0.2
  
  PR:             129852
  Submitted by:   Seungyoung Kim <wolkykim@ziom.co.kr>
  Approved by:    maintainer timeout
  Feature safe:   yes
  
  Revision  Changes    Path
  1.14      +13 -17    ports/www/qdecoder/Makefile
  1.9       +3 -3      ports/www/qdecoder/distinfo
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Martin Wilke freebsd_committer freebsd_triage 2009-09-20 00:02:11 UTC
State Changed
From-To: open->closed

Committed. Thanks!