Elvis with X11 support - PKGBUILD

Building the other 2 elvis PKGBUILDs in the AUR is broken, and they are without X11 support.
I'm wondering if I should submit this PKGBUILD, which compiles and works fine, and includes X11 and x86_64 support and the help documentation, to the AUR.
# Maintainer: Robert Kieffer <rek2w @ A L U M N I DOT V I R G I N I A DOT E D U>
# Based on pkgbuild by Rudy Matela <[email protected]>
# Date: 2010-1-18
#compile options
_ELVISVERSION=2.2_0 # valid options are 2.2_0 and 2.2_1 which are stable and beta, respectively
_COMPILEWX11=true # X11 support built by default
_SLACKWARECOLORS=false # elvis colorscheme from slackware not installed by default - it's boring
_GENERALCOMPILEOPTS="" # place for you you to define your own configure options
if [ $_ELVISVERSION = "2.2_0" ]; then
_ELVISSRC="ftp://ftp.cs.pdx.edu/pub/elvis/elvis-2.2_0.tar.gz"
_ELVISMD5="6831b8df3e4a530395e66c2889783752"
pkgver="2.2_0"
fi
if [ $_ELVISVERSION = "2.2_1" ]; then
_ELVISSRC="ftp://ftp.cs.pdx.edu/pub/elvis/unreleased/almost-2.2_1.tar.gz"
_ELVISMD5="6959f2f156920db47e4c6324f187e632"
pkgver="2.2_1"
fi
pkgname=elvis_patched-withx
pkgver=$pkgver
pkgrel=1
url="http://elvis.the-little-red-haired-girl.org/"
alt_url="http://elvis.vi-editor.org/"
pkgdesc="A vi clone - with X support (if you wish) - stable or beta version"
depends=('glibc' 'libx11' 'ncurses' 'fontconfig' 'expat' 'freetype2' 'zlib')
source=("$_ELVISSRC"
"http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/pkgsrc/editors/elvis/patches/patch-ref.c"
"http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/pkgsrc/editors/elvis/patches/patch-ae"
"ftp://ftp.slackware.com/pub/slackware/slackware-13.0/source/a/elvis/elvis.clr")
md5sums=("$_ELVISMD5"
'8d9df9aa5edcf8e0b8a2f5d59d1c30c7'
'2bec41d9f09542e2ef41de1e6b41727e'
'c47a70cb176ebf2eb99b055c4048a560')
arch=('i686' 'x86_64')
license=('PerlArtistic')
conflicts=('elvis' 'elvis_slack')
replaces=('elvis' 'elvis_slack')
_DESKTOPFILE="[Desktop Entry]\\nType=Application\\nVersion=1.0\\nName=Elvis\\nComment=A simple text editor\\nExec=elvis\\nIcon=$pkgname\\nTerminal=true\\nCategories=Editors;Programming;Accessories"
build() {
cd $srcdir/elvis-$pkgver
if [ $_COMPILEWX11 = "true" ]
then
_GENERALCOMPILEOPTS="$_GENERALCOMPILEOPTS --with-x"
_COMPILEWX11=1
else
_GENERALCOMPILEOPTS="$_GENERALCOMPILEOPTS --with-x=no"
_COMPILEWX11=0
fi
if [ $_SLACKWARECOLORS = "true" ]
then cp $srcdir/elvis.clr ./data
fi
cat $srcdir/patch-* > patches
patch -p0 <patches
echo -e $_DESKTOPFILE > $pkgname.desktop
./configure --prefix=/usr --verbose $_GENERALCOMPILEOPTS
sed 's/\<CTAGS\>/ELVTAGS/g; s/ctags\>/elvtags/g; s/ant" elvtags/ant" ctags/' doc/ctags.man >doc/elvtags.man
/usr/bin/make || return 1
install -d $pkgdir/usr/bin $pkgdir/usr/share/elvis/ $pkgdir/usr/share/man/man1/
for i in elvis ref elvtags elvfmt; do
install -D -s -m755 $i $pkgdir/usr/bin/
done
cd $srcdir/elvis-$pkgver/data/
cp -r * $pkgdir/usr/share/elvis/
cd $srcdir/elvis-$pkgver/doc/
install -D -m644 *.html bugs.txt $pkgdir/usr/share/elvis/
for i in elvis ref elvtags elvfmt; do
mv $i.man $i.1
gzip $i.1
install -D -m644 $i.1.gz $pkgdir/usr/share/man/man1/
done
if (( $_COMPILEWX11 ))
then
install -D -m644 $srcdir/elvis-$pkgver/$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop
install -D -m644 $srcdir/elvis-$pkgver/data/icons/elvis3.xpm $pkgdir/usr/share/pixmaps/$pkgname.xpm
fi
Last edited by theapodan (2010-01-20 01:15:08)

While I didn't actually read your PKGBUILD here, in general, there's no reason not to submit such things to AUR.

Similar Messages

  • Building mesa with OpenCl support [Solved]

    Hi,
    I am trying to use OpenCl with the current mesa drivers as it is explained in this post from freedesktop: GalliumCompute, but when I try to install my own build of mesa with OpenCl it fails due to some conflicting files.
    If we follow the post, we can see that we need:
    - LLVM with '--enable-experimental-targets=R600', but the stable repo already provides this so we are fine.
    - Libclc can be found in AUR: libclc-svn
    - Mesa with '--enable-opencl'. This has to be built manually with ABS adding the flag to the PKGBUILD.
    But when I try to install the generated packages I get an error because there are conflicting files:
    error: failed to commit transaction (conflicting files)
    mesa: /usr/include/CL/cl.h exists in filesystem
    mesa: /usr/include/CL/cl.hpp exists in filesystem
    mesa: /usr/include/CL/cl_ext.h exists in filesystem
    mesa: /usr/include/CL/cl_gl.h exists in filesystem
    mesa: /usr/include/CL/cl_gl_ext.h exists in filesystem
    mesa: /usr/include/CL/cl_platform.h exists in filesystem
    mesa: /usr/include/CL/opencl.h exists in filesystem
    mesa: /usr/lib/libOpenCL.so exists in filesystem
    mesa: /usr/lib/libOpenCL.so.1 exists in filesystem
    mesa: /usr/lib/libOpenCL.so.1.0.0 exists in filesystem
    Errors occurred, no packages were upgraded.
    Checking with 'pacman -Qo' I have found that the headers come from 'opencl-headers' and the shared objects from 'libcl'.
    So, is there a way to install mesa with OpenCl support?
    Thanks in advance.
    Last edited by Noxbru (2013-09-30 16:13:18)

    Lordheavy's git packages are setup to make switching between mesa-git and mesa easy, so include provides/conflicts/replaces lines in the PKGBUILDs to ease substiution.
    No need to uninstall mesa.
    Mesa is a split package, and you should replace all parts of it.
    If you run pacman -S mesa-git , there should be errors because all parts need to have been build against the same source,
    but i don't know if pacman handles that correctly.
    To be on the safe side, you should tell pacman to install ati-dri-git instead as that will pull the other necessary mesa-git subpackages.
    about the files from opencl-headers & libcl :
    mesa-git incudes opencl-mesa-git which does provide those files, but libclc-git doesn't have opencl-mesa-git as dependency.
    I think the full command you should use is : pacman -S ati-dri-git opencl-mesa-git libclc-git .
    That should pull in all needed pacakges and not give any conflicts.
    Edit :
    The PKGBUILD for LH's mesa-git are in http://pkgbuild.com/~lcarlier/mesa-git/sources/ .
    I looked directly into the sources to verify what i posted above.
    Last edited by Lone_Wolf (2013-09-30 11:57:12)

  • [SOLVED] haskell - citeproc-hs was not compiled with bibutils support

    Hi all,
    since I have not yet been able to get help in arch-haskell's IRC channel, I am posting here, maybe someone has an idea:
    I am using pandoc which I have retrieved along with all its dependencies from the haskell binary repository. But when I try to process a bibliography, I get an error message from citeproc-hs:
    pandoc: citeproc: Bibliography format not supported.
    citeproc-hs was not compiled with bibutils support.
    Supposing that the error message is not misleading, I wonder how do I recompile with bibutils support then?
    Googling gave some results concerned with haskell-hs-bibutils, which seems to have been on the haskell repo earlier but is there no longer, so I installed it from AUR (modifying the PKGBUILD to accept haskell-syb>=0.3 instead of =0.3).
    Reinstalling haskell-citeproc-hs did not help.
    Next I tried with cloning habs the haskell repo (as is described here). Since I could not find any switch in haskell-citeproc-hs's PKGBUILD that would disable bibutils support I directly issued
    ./makeahpkg -- haskell-citeproc-hs
    but the resulting package gives the same error as the one from the repo.
    Should I have taken extra steps to build/install haskell-hs-bibutils also in the habs chroot? Or anything else?
    TIA,
    Andreas
    Last edited by awagner (2012-08-01 08:36:06)

    awagner wrote:Should I have taken extra steps to build/install haskell-hs-bibutils also in the habs chroot? Or anything else?
    Yes, it seems this was the problem. Besides cloning habs, I now went on to manually copy the necessary files of bibutils-dynamic and haskell-hs-bibutils from AUR into the local HABS tree, modify dependencies in haskell-hs-bibutils, haskell-citeproc-hs and haskell-pandoc (an additional dependency on haskell-hs-bibutils in haskell-citeproc-hs, in the other cases only change of version numbers).
    Then
    ./makeahpkg -c -- bibutils-dynamic haskell-hs-bibutils haskell-citeproc-hs haskell-pandoc
    produced four packages which I could install and now the error is gone and I can turn to debugging my document and bibliography files

  • AmaroK 1.4 with moodbar support...

    Just upgraded to amaroK 1.4 and its running fine here
    The only thing i have noticed is that the moodbar is not enabled in the version from the repos because of missing exscalibar... Moodbar shows the "mood" of your music by colorful and configurable sliders, its a nice feature i think...
    This is how moodbar looks like (look at the playlist and slider):
    If you want to recompile amarok with moodbar support, just grab the exscalibar PKGBUILD (thx to snowman again) from AUR and recompile amarok with this PKGBUILD...
    I have noticed the package maintainer about this, maybe he will include this in one of the next package versions, at least i hope so...
    Greetings
    Funkyou
    -EDIT- Beware, this has some stability issues and amaroK uses more of your CPU-power to scan your music. I also had one OGG track until now where the moodbar-subprozess seemed to hang and amaroK raised its CPU-consumption up to 99%. Because of these issues and in arrangement with the package maintainer i will not upload the package to AUR, maybe this will happen later when its running more stable... If you want to test and play with it, you can download the PKGBUILD from this post here, but do not complain if it behaves unexpected...

    I have uploaded a new exscalibar-PKGBUILD to AUR. Please try this one... Maybe you have some missing (but not critical) dependencies and these may not be required for exscalibar itself, but maybe for some functionality in exscalibar which amarok needs to have...
    Also check carefully the first messages of the exscalibar build-process. The message that GIT ist not installed can be safely ignored, but all the other libs should be installed...
    I have tried it again here and it works, even with the old PKGBUILD of exscalibar...

  • Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.

    Can you please put me in touch with the support  for the trial copy of adobe acrobat XI pro which I had tried out on March 15 for 30 days. I have  been trying to cancel since the cost is too much and Acrobat Reader is OK for me. I can't find uninstaller.
    I have had to erase my disk since then with trouble with Apple Store not recognising my machine and the reload from Time Machine has given complications . Can you please cancel my trial and return my Trial money.

    If you paid for what you used then it was not a trial.
    Look thru the following links and use the chat option if required for your situation:
    Cancel your membership or subscription | Creative Cloud
    https://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
    https://forums.adobe.com/thread/1703848
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Dvi to hdmi with sound support

    I was looking for a way to watch movies from my MBP (mid-2011 13") on a HD LCD TV, and I found an HDMI port in the back of the TV. I went to the Apple store and picked up a Kanex "Mini DisplayPort to HDMI Cable (with sound support)." The picture looks great, but there's no sound. Is there a switch I need to activate somewhere that turns on the sound for the DVI port? Do I need to set anything on the TV?

    Try going to System Preferences > Sound and chose your TV as an output source. Also, go into Applications > Utilities > Audio MIDI Setup and in the left side of the window chose the output source. If these don't work then you may have a problem with your TV, it may not support audio from a HDMI cable. In that case you could use a Digital Optical Cable (TOSlink) with a 3.5mm adapter for the headphone jack of your Mac and plug that into your TV (if it has a Optical Output).

  • Hi all, I'm trying to connect my macbook pro to Sony Bravia tv using Kanex Mini DisplayPort to HDMI Cable with Audio Support , when connected to the HDMI on tv I get a picture of the mac screen saver ( the starburst ) no video/audio,thanks, Derek

    Hi all, I'm trying to connect my macbook pro to Sony Bravia tv using Kanex Mini DisplayPort to HDMI Cable with Audio Support , when connected to the HDMI on tv I get a picture of the mac screen saver ( the starburst ) no video/audio,any ideas? thanks, Derek

    Dave I'm glad to say that it works perfectly but I'm embarrassed to say that my 12 year old nephew hooked it up in about 10 minutes.
    If you have the Kanex Mini DisplayPort cable it will work, what confused me was changing the display settings in System Preferences,
    and dragging the mac screen from the mac onto the tv. Sorry I cant be more helpful but you have the right cable now you need a 12 year old nephew.
    Good luck Derek

  • HT3702 Today I bought app call starsports app and now I can open app and email to starsports they say not for Canada I ask my refund but they ask me to go with iTunes support team...please can you refund my money back in my account

    Today I bought app call starsports app and now I can open app and email to starsports they say not for Canada I ask my refund but they ask me to go with iTunes support team...please can you refund my money back in my account

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    Purchases are considered final, but you can try the 'report a problem' link to contact iTunes Support and see if they will refund or credit you : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Today I bought app call starsports app and now I can open app and email to starsports they say not for Canada I ask my refund but they ask me to go with iTunes support team...please can you refund my money back in my account

    Today I bought app call starsports app and now I can open app and email to starsports they say not for Canada I ask my refund but they ask me to go with iTunes support team...please can you refund my money back in my account..

    Welcome to the user to User Technical Support Forum provided by Apple.
    For your issue.. Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Some problems with X11 after upgrading to Leopard - GIMP 2.2

    GIMP 2.2 crashes on start and the details explain some versioning problem of X11 native libraries. It might be issue on GIMP side that expects differen binaries to be installed (and perhaps removed by Apple due to compatibility issue). I just wanted to point this to be expected.
    GIMP 2.4 for Mac OS X is not official release yet. It is only realease candidate and it should come soon hopefully with X11 issue being resolved in Leopard.

    Maciej Samsel wrote:
    GIMP 2.2 crashes on start and the details explain some versioning problem of X11 native libraries. It might be issue on GIMP side that expects differen binaries to be installed (and perhaps removed by Apple due to compatibility issue). I just wanted to point this to be expected.
    GIMP 2.4 for Mac OS X is not official release yet. It is only realease candidate and it should come soon hopefully with X11 issue being resolved in Leopard.
    I believe that there are some known issues with X11 and BSD "under the hood" with Leopard. Fink is also broken and my old Darwin X11 attempts to run but nothing happens.

  • Apple changed my Apple ID to the email address associated with my iTunes account. I now can no longer access my account because the old user name is no longer valid and has no password. I have been on the phone with tech support for hours trying to fix.

    Apple changed my Apple ID to the email address associated with my iTunes account. I now can no longer access my account because the old user name is no longer valid and has no password. I have been on the phone with tech support for hours trying to fix this. I can not update any of the apps associated with that user name.

    Is this itunes on the iPad or on my computer? Thank you for the reply.

  • How can I play music on my macbook pro (OSX Lion) through a Pioneer receiver. I've connected them with a mini display port to HDMI cable with audio support bought at the Apple Store, but there's no sound coming through. thanks

    How can I play music on my macbook pro (OSX Lion) through a Pioneer receiver? I've connected them with a mini display port to HDMI cable with audio support bought at the Apple Store, but there's no sound coming through. There are 4 HDMI-in ports on the receiver - BD, DVD, DVR/BDR and audio. In my system preferences for sound, the receiver doesn't show up as an output option. Can anyone please advise. (ps, this is my first time posting a question, so I hope I can find your answers!) thanks, JP downunder

    For sound, try the audio output port and connecting to the RCA  audio input ports on your Pioneer receiver.  Use something like this:
    http://eshop.macsales.com/item/OWC/PODCONNECTOR/
    Ciao.

  • Cannot purchase apps in app store. Cannot get help with Customer Support

    I receive this message each time I try to purchase an app or book. "Your purchase could not be completed. For assistance, contact iTunes Support at www.apple.com/support/itunes/ww/. I've called Apple Support a total of 6 times and I've been on hold for a total of over 3 hours. They said they fixed it THREE times, and told me to wait 30 minutes then try again. I've talked to 2 different Senior iTunes Advisors who gave me their direct line (which means absolutely NOTHING, because when I call back they won't answer or return messages). Supposedly my issue was going to be fixed by the iTunes "engineers" last night and an email was supposed to be sent me this morning. Of course, neither happened. I'm totally disgusted with iTunes Support and need my issue resolved and have no where to turn. I'm a very patient person, but I'm at the end of my rope. Any suggestions on who to complain to, since I'm getting nowhere?

    IM having the same exact issue!! I've demanded to speak with an engineer personally or someone who knows iTunes inside and out. sr advisor made it seem like it was classified information! She kept saying "they" will fix it and you'll receive email for confirmation. I want to know who they are!! I have a $25 gift card just sitting in my account for nothing. My bank card is good too. Sorry I have no answer, just know there's people who are just as frustrated as you lol. Please reply back if you hear anything thing at all!! I'll do same! Good luck!

  • Frustrated - Multiple issues with Fios TV/DVR - need advice on dealing with tech support

    I have been a Verizon Fios customer since Feb. 20th (all of two and a half weeks).  I signed up for my bundle on-line around 11am on the 20th, and had a technician out for install within a few hours on the SAME day.  I thought that was impressive - and I was looking forward to having a more reliable and fast internet connection than I had been experiencing with Brighthouse.
    The technician who installed was very friendly, and although he had some issues (apparently, there was a Verizon box in this house before us, but someone ripped it off the wall, so they had to run new wire all the way out to the street) the install went pretty quickly and smoothly.
    The first few days went along without a problem, and the internet was great.  Some of the functionality of the DVR was less than I'd hoped for, but some of the other features were great.  I had a glitch trying to set up my online account, but I used the online chat feature to work with tech support and she was able to correct the issue.  We noticed a couple times in the evenings that the TV would pixelate - but it only happened a few times and was very brief.
    On Sunday the 26th, our real issues started.  The live TV started freezing, then having a liquid-like pixelation problem, sometimes no sound.  We tried to watch a recorded show from our DVR list and received error messages stating that we didn't have DVR.  We called Verizon tech support and a very rude person reset the box several times and apparently even reinitialized the box and the result was that the box wouldn't even turn on anymore.  He said that he'd have a new box shipped out to us and that it would arrive by Tuesday or Wednesday.  My husband got on the phone at that point and suggested to him that since we were brand new customers (less than a week) and that since we had service installed on the very same day that we ordered it online, that certainly they could have someone bring us a new box on Monday morning.  The technician told us that he would transfer us to the billing department because we could probably just cancel the service.  We were both dumbfounded.  Especially considering that he had been rude from the minute he took our call, and while we were obviously frustrated, we were never rude.  We were eventually transferred to someone in billing who said she had never heard of such a thing and that she could not help us unless we wanted to cancel.  While this was going on, I had unplugged the box again, let it sit for several minutes, then plugged it back in - and the tv worked.  And the DVR worked. We assumed that maybe something the tech support guy did had worked after all.  Well, it worked until the next morning.  We had error messages saying we had no DVR.  A reboot of the box worked again.  After work, in the evening, it turned out that scheduled shows didn't record.  So, we called tech support again and asked for our new box.  We were told we'd have it by Thursday.
    New box arrived Thursday and we set it up that evening.  Went through trying to get all of our recordings set up again and finally sat down to watch tv.  I switched to Showtime (which we are subscribed to in our package) and received an error that the channel was not available, press B to troubleshoot or call tech support with this code.  Pressed B, went through the steps and the channel came back.  Then, proceeded on to HBO, also part of our subscription - and we received the same error.  We pressed B and this time going through the steps did NOT correct - so we called tech support.  After working with the girl for over an hour, she finally determined that we needed to be switched to billing to have them remove our HBO package and then put it back on and that should correct the problem.  So, while we were waiting for billing to come on the line, we started flipping channels again.  Now, channels that had previously worked were now showing the error that the channel was unavailable - even non HD, non premium channels.  When the billing girl got on the phone, she said there was really nothing she could do with that being the case and that downgrading our package and re-upgrading it would do nothing - that we needed technical support.  She got us on the line with a different tech support person who said that we were obviously having signal related issues and that we needed a tech to come out to look at the wiring.  He scheduled an appointment for us for Friday.  That call took over 2 hours.
    On Friday, the tech came out and spent time checking all of the wires coming in to the house - he said we had multiple splitters on lines that didn't need splitters and that this was likely causing a signal disruption and was probably the cause of the failure on both boxes.  He removed some of the splitters and apparently streamlined some of the wiring.  We still had the original box and the new box.  He hooked up each box and they both worked - all of our premium channels worked, DVR was good, etc. We boxed up the old box to send back, kept the new box and had tv that worked just fine for a few hours... then we started having the channel not available issues again.  And, now - we were also getting messages saying that we weren't subscribed to a channel - and this would range from HBO all the way to a non HD standard tv channel.  A reboot will work and restore function - for a while.  However - scheduled shows aren't recording - or record for 7 seconds and stop.  Or record for a while, then have a 20 minute gap in the middle where it's frozen, etc.  This has been going on since a few hours after the technician left Friday evening.  And, I have to say - when the tech left Friday - everhything seemed fine.  He had tested the signal strength - seemed completely thorough and was very nice.  I don't think he could have known, at that time, that the problem wasn't fixed.
    We have not called back to tech support yet.  We're busy with our work and our lives and we're also frustrated.  I know it will take another several hours and don't have much faith that there is any resolution.  It seems to me that we probably need the whole house completely rewired - brand new - start over.  I'm thinking there's a bad wire in there somewhere.
    This morning with my coffee before work, I tried to watch a tv show in my DVR list that apparently didn't record properly - no surprise (it froze and skipped over half the show).  So, I went to On Demand and found the show. (Without Bay News 9, I'm kind of lost with morning coffee, so I need a show of some kind)  It started to play and was going along just fine, till I received a CableCARD  (tm) Pairing Information is not available message.  I tried the auto fix in the menu, rebooted, etc.  It worked for a few minutes, then stopped again.  At one point, I got an error saying the set top box lost video due to a network connection failure.  Great, does that mean my internet is going bad too?? While looking around in the menu function, I clicked on the self diagnostics feature.  It filled in all the information, as I'd seen it do before - except when it got to the package description.  This time, instead of Ultimate HD, HBO, VOD, etc., etc (like I'd seen before). it told me that my package is: Arabic, Armenian, ART (Arabic), Extreme HD, HBO, Prime & Ultimate HD, Prime HD, RA, RAI (Italian), etc., etc.  Huh???  Really???
    So, I'm not sure now what the deal is - would a signal issue cause my subscription package to change?  Do I get on the phone with someone at tech support for another few hours?  Are they going to send yet another box?  Are they going to come re-wire the whole house?  Is it worth it?  This is really ridiculous.  Do I cancel and go back to Brighthouse with my tail between my legs?  At least with them, I knew that my internet connection would be wicked slow at certain times of the day, but at least I knew it was coming and could expect it - and I could at least count on my tv and dvr recording my shows.
    When I logged into verizon to vent on this forum, my account said that it was unable to access my DVR.  When I clicked on manage my DVR, it just says Bad Gateway.  Not a great start to our relationship, Verizon.
    I really need some advice.  Should I stay or should I go?  And, if I stay - what is the best way for me to explain this to tech support so they will do the right thing and fix this?  And, what is "this" anyway?  Bad box, bad wiring?  
    Any help would be greatly appreciated.

    Replied to private message with all information including name, address, phone number and account number.  Thank you.

  • At the end of my rope with phone support.

    I'm not sure what anyone here can do, but I need somplace to share this with. Its extremely frusturating.
    Less than a month ago, I purchased my first iMac. It was a slightly older model- a 20" Aluminum 2.0ghz machine. It was purchased from a re-seller and had obviously been sitting on the shelf for a while. I know that the warranty date starts from the purchase date of the re-seller; there is a form to fill out if it needs to be changed to your actual purchase date. In a situation like mine, where the computer had been in the store for around a year, this was essential if I wanted any kind of phone support.
    I filled out these forms, faxed a copy of the receipt to the number I was supposed to, and assumed everything would be fine. Within 24 hours, Boot Camp managed to screw up the OS X partition of my hard drive. I needed to make several calls to customer support, where I had to argue with all of them due to the purchase date update taking up to 72 hours to go through. After several phone calls, where I had to explain my situation 15 times and wait on hold for 45 minutes while they found out that it takes 72 hours for the change to go through, and after literally 5 hours of driving to my nearest Apple stores until someone was willing to help me with the problem even though I was "out of warranty" (Reminder- I had purchased this computer 2 days prior. New, off the shelf in the store. It absolutely should've been under warranty.) I was finally able to get the computer fixed.
    Today, I figured I'd check on the status of my purchase date switch, so the next time something goes wrong with my computer I don't have to battle with tech support to get them to listen to my problem. I entered the serial number in the warranty info page, and it tells me:
    *Our records indicate that your product is covered under a custom contract. For more information about your coverage, please contact us.*
    *Your product is not eligible for complimentary phone support.*
    When I click "contact us," the only thing that would be able to potentially help me out is the Apple Customer Service phone number. I don't feel like calling and having someone with a medium-thick accent repeat back to me what they understood my issue to be 5 times until they finally get it right. I would love to write it out so someone can just re-read it if they don't wrap their mind around it the first time.
    I don't see why I should have to argue my case. I went to an Apple Authorized Reseller, swiped my credit card, and walked out with a new iMac. No, it's not the newest model, but its still new. That's money that just went in Apple's pocket, because of my purchase. There is absolutely no reason why it should be this big of a struggle just to get the warranty that I deserve. I don't feel like I'm being unreasonable or out of line in any way.
    Does anyone know who I can EMAIL about this, or am I going to have to put up with the non-help I get on the phone? They're going to tell me that they can't help me out, because I'm supposedly not covered for phone support anymore. Ugh. Please help.

    I'm not sure what anyone here can do
    Nothing. These are user to user forums, of which Apple employees do not take part in.
    Does anyone know who I can EMAIL about this,
    Nobody...Apple does not offer email support/correspondence. Call support and ask immediately to speak to customer relations.

Maybe you are looking for

  • How to print Header and footer in same page

    Hi All, I am using Oracle Report 10g. How can I add header and footer on same page as my body? Right now when a generate a pdf file, it is printing individual pages instead of 1 one page. Please help me. Regards

  • How do I get my bookmarks, passwords, history from Firefox 3.5 on another computer to Firefox 3.6 on this one?

    Problem about bookmarks is solved messily. Problem with importing profile folder from my memory stick (E drive) isn 't. I ,your instructions. so it seems I am not in Firefox 3.6 but 3.5 Firefox and I use the Run in the start menu to locate the file.

  • Illustrator file size reduction

    Illustrator 11.0 Win XP Pro SP2 Adobe Acrobat 6.0 Why are ai files so much larger than the pdf's they generate. For example I cut and pasted an excel spreadsheet into Illustrator. No bitmaps or rasterized data. ai file is 2.5Mb (acrobat compatible, c

  • How to disable role password in Solaris 11

    Roles can only be assumed by logged in users. That is the definition of a role. Therefore role authentication is to some extent double authentication. The user has already authenticated as himself when he logged in and the sysadmin has enough trust i

  • I need to deactivate one of my registered mobile n...

    I need to deactivate one of my registered mobile number, as i do not own it any more. It is shown still in combo under menu "Chat->SMS". How do i do deactivation? Solved! Go to Solution.