[Request] GJay -- Need Arch pkgnames for some .debs

I'm having a little trouble building GJay, because on the website it only lists the names of the debian packages needed, and I am not sure what the Arch equivalents are. I am quite fine with making the rest of the PKGBUILD once I know that though... This is what I have so far.
pkgname=gjay
pkgver=0.2.8.3
pkgrel=1
pkgdesc="A tool for analyzing music collections to generating a great-sounding playlist."
arch=(i686)
url="http://gjay.sourceforge.net"
license=('GPL')
groups=()
depends=('mp3info' 'mpg321' 'vorbis-tools' 'xmms')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=($pkgname-$pkgver.tar.gz)
noextract=()
md5sums=() #generate with 'makepkg -g'
build() {
cd "$startdir/src/$pkgname-$pkgver"
./configure --prefix=/usr
make || return 1
make DESTDIR="$startdir/pkg" install
# vim:set ts=2 sw=2 et:

Hm, There are lots of missing break; statements at the end of case statements.  Please test
pkgname=gjay
pkgver=0.2.8.3
pkgrel=1
pkgdesc="A tool for analyzing music collections to generating a great-sounding playlist."
arch=(i686)
url="http://gjay.sourceforge.net"
license=('GPL')
depends=('mp3info' 'mpg123' 'vorbis-tools' 'xmms' 'gsl' 'gtk2')
options=('!makeflags')
install=
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz break.patch)
md5sums=('fd7bdf8505c13aa538fe59ef4366332c' '3542a8f20ba5d18faaa6d30840f4c8a6')
build() {
cd "$startdir/src/$pkgname-$pkgver"
patch -p1 < ../break.patch || return 1
make || return 1
install -d $startdir/pkg/usr/bin || return 1
install -d $startdir/pkg/usr/share/$pkgname/icons || return 1
make PREFIX="$startdir/pkg/usr" install || return 1
together with break.patch
diff -ruN gjay-0.2.8.3.orig/Makefile gjay-0.2.8.3.new/Makefile
--- gjay-0.2.8.3.orig/Makefile 2008-06-14 17:29:56.000000000 +0200
+++ gjay-0.2.8.3.new/Makefile 2008-06-14 17:44:53.000000000 +0200
@@ -1,4 +1,4 @@
-PREFIX = /usr/local
+PREFIX = /usr
CC = gcc
LINK = $(CC)
CFLAGS = -g -Wall `pkg-config --cflags gtk+-2.0`
@@ -39,7 +39,7 @@
mp3.o
-INSTALL = /usr/bin/install -o root -g root -m
+INSTALL = /bin/install -o root -g root -m
all: $(TARGET)
diff -ruN gjay-0.2.8.3.orig/analysis.c gjay-0.2.8.3.new/analysis.c
--- gjay-0.2.8.3.orig/analysis.c 2008-06-14 17:29:56.000000000 +0200
+++ gjay-0.2.8.3.new/analysis.c 2008-06-14 17:42:41.000000000 +0200
@@ -332,6 +332,7 @@
break;
default:
+ break;
// Do nothing
return TRUE;
diff -ruN gjay-0.2.8.3.orig/analysis.h gjay-0.2.8.3.new/analysis.h
--- gjay-0.2.8.3.orig/analysis.h 2008-06-14 17:29:56.000000000 +0200
+++ gjay-0.2.8.3.new/analysis.h 2008-06-14 17:41:34.000000000 +0200
@@ -73,7 +73,7 @@
/* Mutex lock for analysis data */
-extern song * analyze_song;
+static song * analyze_song;
extern int analyze_percent;
/* Analysis.c */
diff -ruN gjay-0.2.8.3.orig/gjay.h gjay-0.2.8.3.new/gjay.h
--- gjay-0.2.8.3.orig/gjay.h 2008-06-14 17:29:56.000000000 +0200
+++ gjay-0.2.8.3.new/gjay.h 2008-06-14 17:40:17.000000000 +0200
@@ -43,7 +43,7 @@
/* State */
extern gjay_mode mode;
-extern gint xmms_session;
+static gint xmms_session;
/* User options */
extern gint verbosity;
diff -ruN gjay-0.2.8.3.orig/prefs.c gjay-0.2.8.3.new/prefs.c
--- gjay-0.2.8.3.orig/prefs.c 2008-06-14 17:29:56.000000000 +0200
+++ gjay-0.2.8.3.new/prefs.c 2008-06-14 17:32:12.000000000 +0200
@@ -336,6 +336,7 @@
prefs.rating_cutoff = TRUE;
break;
default:
+ break;
@@ -422,6 +423,7 @@
prefs.time = atoi(buffer);
break;
default:
+ break;
*element = PE_LAST;
diff -ruN gjay-0.2.8.3.orig/ui.c gjay-0.2.8.3.new/ui.c
--- gjay-0.2.8.3.orig/ui.c 2008-06-14 17:29:56.000000000 +0200
+++ gjay-0.2.8.3.new/ui.c 2008-06-14 17:36:07.000000000 +0200
@@ -260,6 +260,7 @@
explore_animate_stop();
break;
default:
+ break;
// Do nothing
return TRUE;
Last edited by Stefan Husmann (2008-06-14 15:54:24)

Similar Messages

  • [SOLVED] Recommendations needed - Arch + Apache for local development

    Hello,
    I'm a new Arch user, and relatively new with Linux. I'm getting to like Arch very much.
    I do web development, and I do most of my programming in PERL.
    I have already installed perl and some tools, and I'm about to install apache. The Idea is to have the apache server just for local development and testing.
    So the question is: Do you recommend me to install some firewall?
    What security measurements should I take?
    Is there any easy way to enable and disable Internet access to the apache server?
    Thank you!
    Last edited by iopo (2009-10-28 19:24:14)

    Thank you friends.
    Yes, my Internet is via router. I like the Idea to set the server to listen at local address, I will try that.
    Now, as I'm new to Linux and Arch, I will like to know if I should take any extra security measurements. In windows I used anti-virus + firewall all the time, and I blocked apache to access the Internet with the firewall.
    I have set a strong root password, but the "normal user" has sudo. Is that secure enough?
    Is there any "must have" security tools or measurements to set is a box like mine (Desktop usage + local network (3 machines) + apache for local usage and testing only)?
    Is it common to get some malware, worm, trojan, spyware or some kind of phishing just by surfing the web without user "action" to install it?
    I know Linux is much safer because users and permissions. I like that very much, It feels a lot safer.
    Now, I have used Arch for a week or so with no firewall (router firewall is disabled also) and no anti-virus. Absolutely no special security measurements and there seems to be no log-in attempts in logfiles .. and no problems at all. Windows without firewall and anti-virus will die in a few hours just by leaving it connected to Internet....
    I just wanted to ask you all (Arch users) if you normally use Firewall, and if you take some special measurement to stay free of  trojans, spyware, etc...
    I will appreciate your comments.
    Thank you!

  • Need Table name for some fields..

    Dear Friends
    Please help me to find Table names for for the following fields :
    1. Document Currency
    2. Cleared / Open Item Symbol
    3. Transaction
    4. Fixed
    5. Payment Date
    6. Payment Order
    7. Payment Sent
    thanx in advance..

    Hi,
    Press F1 on the screen where you have seen the fileds.You will get techncail information.click on that button.It will show you the table and field names.
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    Sridhar M

  • Need related table for some subject in the primavera contact management

    Please I want to know the related table for the subject contact or contract or cost ... in the primavera application,
    if someone have any idea let me know
    Thanks

    If you are looking for the database relationships (to assist in building forms/reports or using web services) you should look in the Oracke Knowledgbase.  You should find the joins document here:
    https://support.oracle.com/epmos/faces/DocumentDisplay?id=1210307.1&displayIndex=8

  • How to do aging for Net Debit for 0DEB_CRE_LC

    Hi to all,
    i am doing aging for receivables(0FI_AR_4) for Net debit > 0.
    I have created CKF excaption aggregation at query level to get Net debit greater than zero, via ( 0DEB_CRE_LC > 0 ) * 0DEB_CRE_LC for every customer.
    it gives correct result .
    but when i used aging via used of 0NETDUEDATE, for 1-10 and 11-30 bucket and i have restricted bucket with this CKF.
    for some customer i get correct result if both debit and credit come is 1-10 bucket and net debit of this > 0.
    But if customer debit come in 1-10 bucket and credit in 11-30 bucket it gives incorrect result.
    how to do aging for such conditions.
    Please can any one provide me solutions.
    I shall be thankfull to you for this.
    Regards
    Pavneet Rana

    Thanks for reply ,
    my query format is like that
    query rows = region and restricted with region value
    query column = aging bucket 1-10 , 11-20, and every bucket is restricted with CKF 0DEB_CRE_LC > 0 and 0NETDUEDATE and division value
    and drill down by customer and region
    format looks like that
    division1 division1 division1 division2 division2 division 2
    1 - 10 11 - 20 21-30 1 - 10 11 - 20 21 - 30
    Region1
    Region2
    so report purpose is to calculate aging for NET DEBIT VALUE .
    so if i drill down by customer for net debit value, net debit value according to bucket is correct if debit and credit of customer lies in same bucket
    and if customer credit and debit comes under different bucket net debit value is incorrect for bucket wise.
    and if dont use aging bucket net debit value according to customer and region wise is getting correct , but i need aging also for net debit value.
    please can you provide me solutions to get netdebit according to bucket wise for every customer , when drill down.
    I shall be thankfull to you for this.
    Regards
    Pavneet Rana
    Edited by: pavneet rana on Feb 7, 2011 3:02 PM

  • Vendor information for some material's is missing in the report ?

    Hi,
    One of my user has raised a request that the vendor information for some material is not displayed in report where as its available in ECC, now i have checked in BI that information for 20 material numbers is missing even in BI that is the reason not showing in the report. Now what do I do ? Can you please suggest.

    Kindly update the master data table for material and vendor.....

  • Do I need to apply for copyright when I publish a book to the iBook store through iBooks Author?

    I am about to publish a book to the iBook store through iBooks Author. Would I need to apply for some sort of copyright? I have no experience so please correct me if I am wrong. Thank you

    Copyright is an important legal issue and certainly complex. But in general, a good place to start is registering your book with the Library of Congress. You can do it by mail, and they will grant you a Library of Congress control number which you can place on your copyright page. This will register your book as your copyright and is well worth checking out.
    Though, and I'm not sure, but you may have to have an ISBN so some cost is involved.
    Hope this helps.

  • I'm looking for some help setting up a cross platform work station with Mac/Windows

    I've worked with Mac for all CS Suite programs to date, but now need more power for some publishing/editing work - and would like to keep two computers working back and forth for various parts of projects -  and a PC desktop is more affordable for an upgrade to my laptop.  Can I work interchangeably between platforms with the CS subscription?  What are the drawbacks (file integrity) and any device issues that I may need to deal with? 

    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • When I try to do financial transactions I get a warning message "You have requested an encrypted page that contains some unencrypted information. Information that you see or enter on this page could easily be read by a third party." How much do I need to

    When I try to process financial information such as log onto my banking account or my paypal account, or pay for something online I get a warning message "You have requested an encrypted page that contains some unencrypted information. Information that you see or enter on this page could easily be read by a third party." I also never get a padlock to show that I am on a secure site. How much do I need to worry or what should I do?
    == URL of affected sites ==
    http://

    I would not trust that on a banking site. If it were just a forum, no problem, but anything unencrypted during banking is suspicious.

  • Request for some Visual Basic code?

    Hello not sure if I'm posting in the correct area but I have a request for some Visual Basic Code.
    I use a particular document in word quite often to fill out forms for my job. However I would like something that allows me to open a new instance of the same document while closing the current AFTER I print it without any extra mouse clicks, or if after
    I print the document the forms are cleared and I can start over.
    P.S. I would take the time to learn how to do it myself but I currently reside in South Korea and work for the USAF so I don't have much time.

    Hi,
    I suggest you post the request to Word for Developers forum since it needs support for coding:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=worddev
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Melon Chen
    TechNet Community Support

  • AR I Need To Make Group or batch for some of transactions that imported ??

    Hi,
    In Receivables i need make a group or batch for some of invoices that imported from another system (Point of sales)
    what functionality or responsibility make this function like batch but i need to import some invoice fo batch not create batch and create invoices
    Thanks,
    Mohamed Gamal

    I think it's better to start with Ubuntu or another user-friendly distro than try your hand at Arch. A lot of the things you talk about reveal a lack of knowledge about the inner workings of Linux (no offense; that's just how it is). Linux distros are extremely modular, and GUIs are interchangeable. Aesthetics, therefor, are as well. You can install Ubuntu, OpenSuSE, Fedora and Arch and get them to look identical.
    As for creating your custom distro, I am not sure distros would like you to strip logos and stuff (which, for consistency, at some point, might also involve copyrights - you do not want your boot logo to say 'Customix - (c) Ubuntu Canonical' or something).
    If there are projects around that allow you to change the aesthetics (which seems to be mostly what you're after), then by all means use those . Hacking scripts etc. for consistency can be a tedious job, if you are not comfortable with command line tools. It will only be harder to (re)brand Arch since it comes with the minimal amount of branding required upstream.
    The DE menus are ordered by XDG standards. It's fully automatic. If you want to change that, you need to hack the .desktop files.
    Last edited by .:B:. (2012-01-16 19:51:01)

  • I need to make a pdf document, made in photoshop, 'page turn' and then add it to my website. I know I can do this in indesign but indesign will not open pdf files for some inexplicable reason. Any ideas how I can do it without completely starting again?

    I need to make a pdf document, already made in photoshop, 'page turn' and then add it to my website as an e-brochure. I know I can do this in indesign but indesign will not open pdf files for some inexplicable reason. Any ideas how I can do it without completely starting again?

    Hello waitingone,
    please try this (all terms are translated from my German programs to my best knowledge):
    1. Did the creator of the pdf file enable the import options?
    2. See import options: choose an other visibility option for your layer.
    3. Let you show the import options and click into one with a black background and try these out (often a gray is selected).
    4. See trimming: try the different modes there. Often works: "Media".
    5. Is the pdf file (eg from Word) correctly created?
    6. Is the PDF file protected? >>> no import possible.
    7. If that does not help, store the pdf file in Acrobat, repair possible errors, run the PDF Optimizer before placing in InDesign.
    Good luck!
    Hans-Günter

  • I am trying to use a site that i have to do homework on but my security settings keep blobking some applet in needs to run for it to work.

    I am trying to use a site that i have to do homework on but my security settings keep blocking some applet in needs to run for it to work. I have tried to make exceptions in the security settings but it has not worked.

    There are other things that need your attention.
    Your System Details List shows multiple Flash plugins.
    * Shockwave Flash 14.0 r0
    *Shockwave Flash 11.6 r602
    You can find the installation path of all plugins on the <b>about:plugins</b> page.
    *http://kb.mozillazine.org/Issues_related_to_plugins#Identifying_installed_plugins
    You can check the Flash player installation folder for multiple Flash player plugins and remove older version(s) of the plugin (NPSWF32) and possibly (re)install the latest Flash player.
    *(32 bit Windows) C:\Windows\System32\Macromed\Flash\
    *(64 bit Windows) C:\Windows\SysWOW64\Macromed\Flash\

  • How can I get the default value of a particular preference programatically. I know I can see the default value for some of the preferences in about:config but, I need a programatic way to get the default value.

    <blockquote>Locked by Moderator as a duplicate/re-post.
    Please continue the discussion in this thread: [tiki-view_forum_thread.php?comments_parentId=702631&forumId=1]
    Thanks - c</blockquote>
    == Issue
    ==
    I have a problem with my bookmarks, cookies, history or settings
    == Description
    ==
    How can I get the default value of a particular preference in FireFox?.
    I know I can see the default value for some of the preferences in about:config but, I need a programatic way to get the default value.
    I see some that there are values for preferences in firefox.cs but I am not certain that these are being used as the default values for preferences. prefs.js in user's profile only has the updated values and not the default values.
    Any help towards acheiving this programtically is greatly appreciated.
    If the default values are stored in a file, kindly let me know the format in which it is stored for me to parse it programatically.
    == User Agent
    ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)

    Dear Friend,
    Here when you have the callableSattement as ?=proc(?), the first ? is an output parameter. So you should register it as out parameter using registeroutparameter.
    Then you can get the value from the outparameter using callablestatement.getXXX().
    Try that way.
    For free tral versions of JDBC Drivers go to www.Atinav.com

  • I am batch processing in PS 2014 (watermark and saving as jpeg from ps file). I get the message for some but not all 'this file needs to be saved as a copy with this option'. And then I have to save it manually. Does anyone know why this happens? (It is j

    I am batch processing in PS 2014 (watermark and saving as jpeg from ps file). I get the message for some but not all 'this file needs to be saved as a copy with this option'. And then I have to save it manually. Does anyone know why this happens? (It is just a plain photoshop file, a watermark is added, then save as jpeg - the jpeg is saved to a different folder than the original photoshop file.)  It happens for about 10 of 30/40  files approximately . Thank you, Kathryn

    I believe I have figured it out - I need to flatten the image, even though there are no layers except for layer 0, first.

Maybe you are looking for

  • Safari searching but doesn't open

    We have a macbook that is about 1 month old which has an annoying problem with Safari. We can open Safari and search using Google but sometimes the search will go on and on forever with nothing happening except for the "searching with the black clock

  • Commerce Server and Visual Age 3.5

    I tried and was unsuccessful getting the Commerce server (3.11) to run under Visual Age 3.5. I can get it to start up correctly, but if I test a commerce application, Visual Age disappears with no messages. From my experiments, I think it is a proble

  • Issue with adobe reader with firefox.

    i ahve adobe reader most current verison. but it does not work. it will not uninstall. i have been referred to ms unistall tool.but it was recently discontinued. so..i have reader but get these messages. 1) the adobe acrobat/reader that is running ca

  • How to clear BPEL WSDL Cache  from out side  bpel console

    hi , Is it any way to clear wsdl cache other than bpel console option. Please any one can help me. Regards janardhan

  • How to use Pixel Bender Effects in After Effects

    Hello, if I create a filter in Pixel Bender I can save it as .pbk-file. But After Effects uses .aex-files for PlugIns. How can I load .pbk in After Effects or change file-format to .aex or what can I do? Thanks for each help!