Xsp, gtk-sharp, libgda, and monodoc

Hi,
using one of the mono-packages from incoming the packages listed in the
subject can be build. All this requires the latest pacman(>2.7.3)
monodoc:
ist a browser for the mono(C#) class library. It build on to of gtk-sharp.
Useful for developer.
# Contributor: Tobias Kieslich <[email protected]>
pkgname=monodoc
pkgver=0.10
pkgrel=1
pkgdesc="The mono documentation"
depends=('gtk-sharp' 'mono')
source=(http://www.go-mono.com/archive/$pkgname-$pkgver.tar.gz)
url="http://www.go-mono.com"
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
libgda:
is a library which provides acces to several databases. It's an data
abstraction layer. I compiled support for sqlite, mysql, postgresql, libxml
and LDAP. Therefore, it does depend on them.
# Contributor: Tobias Kieslich <[email protected]>
pkgname=libgda
pkgver=1.1.0
pkgrel=1
pkgdesc="data abstraction layer to manage stored datas in db's from non-Gnome applications"
depends=('glib2' 'libxslt' 'mysql' 'postgresql' 'sqlite' 'popt' 'openldap')
url="http://www.gnome-db.org"
source=(ftp://ftp.gnome-db.org/pub/gnome-db/sources/v$pkgver/$pkgname-$pkgver.tar.gz)
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --disable-gtk-doc
make || return 1
make DESTDIR=$startdir/pkg install
gtk-sharp:
Is an C# Wrapper for gtk2. It depends on libgda and mono and gtk2.
# Contributor: Tobias Kieslich <[email protected]>
pkgname=gtk-sharp
pkgver=0.15
pkgrel=1
pkgdesc="The C#-bindings for the gtk2"
depends=('mono' 'gtkhtml' 'librsvg' 'libgda')
source=(http://cesnet.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
url="gtk-sharp.sourceforge.net"
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
mod_mono:
is an apache2 module which connects apache to xsp. This package provides a
mono.conf file. To make it work you will have to include it in your
httpd.conf:
Include /etc/httpd/conf/mono.conf
when you wanna use it make sure you run mono AND apache. The mono
daemon is provided by xsp.
# Contributor: Tobias Kieslich <[email protected]>
pkgname=mod_mono
pkgver=0.7
pkgrel=1
pkgdesc="The mono module to make mono running on top of apache"
depends=('glib2' 'apache' 'xsp')
source=(http://www.go-mono.com/archive/$pkgname-$pkgver.tar.gz)
url="http://www.go-mono.com"
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
# lets copy the neccessary httpd.conf tweaks in a file which can
# be easily included in httpd.conf
mkdir -p $startdir/pkg/etc/httpd/conf
cat > $startdir/pkg/etc/httpd/conf/mono.conf << 'MOD_MONO_CONF_FILE'
# Mono Configuration for Apache
AddType application/x-asp-net .aspx .ashx .asmx .ascx .asax .config .ascx
LoadModule mono_module lib/apache/mod_mono.so
MonoUnixSocket /tmp/mod_mono_server
Alias /mono "/home/httpd/html/xsp"
MOD_MONO_CONF_FILE
xsp:
Is a simple Web-Server which provides ASP.NET support. You can use it
standalone or on top of apache2. I added a daemon for mod_mono_server,
which is the interconnection between mod_mono and apache2. The
mod_mono_server executable is also provided by this package, not mod_mono itself which might be assumed.
# Contributor: Tobias Kieslich <[email protected]>
pkgname=xsp
pkgver=0.9
pkgrel=1
pkgdesc="A simple weberver based on mono - provides ASP support"
depends=('mono')
source=(http://www.go-mono.com/archive/$pkgname-$pkgver.tar.gz mono)
url="http://www.go-mono.com"
build() {
cd $startdir/src/$pkgname-$pkgver
#./configure --help
./configure --prefix=/usr --sysconfdir=/etc
make || return 1
make DESTDIR=$startdir/pkg install
# install a deamon
install -D -m755 ../mono $startdir/pkg/etc/rc.d/mono
# also install the testset of aspx files and change the owhnership to apache ones
mkdir -p $startdir/pkg/home/httpd/html
cp -R $startdir/src/$pkgname-$pkgver/test $startdir/pkg/home/httpd/html/$pkgname
cd $startdir/pkg/home/httpd/html
chown -R nobody.nobody $pkgname
the daemon
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
PID=`pidof -o %PPID mono /usr/bin/mod_mono_server`
case "$1" in
start)
stat_busy "Starting Mod_Mono_Server Daemon"
if [ -z "$PID" ]; then
mono /usr/bin/mod-mono-server.exe --nonstop --root /home/httpd/html/xsp --applications /mono:. > /dev/null &
sleep 1
chmod 777 /tmp/mod_mono_server
fi
if [ ! -z "$PID" -o $? -gt 0 ]; then
stat_fail
else
add_daemon mono
stat_done
fi
stop)
stat_busy "Stopping Mod_Mono_Server Daemon"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm -f /tmp/mod_mono_server
rm_daemon mono
stat_done
fi
restart)
$0 stop
sleep 1
$0 start
echo "usage: $0 {start|stop|restart}"
esac
First of all this is modelled to work on archlinux' out of the box apache
configuration. Any modified configuration will result in altered config
files and you also have to change the setting in the daemon.
How to use it?
install the packages, now you will have to include the above mentioned line
to your httpd.conf
then run /etc/rc.d/mono start and /etc/rc.d/httpd start
navigate your browser to http://localhost/mono
Have fun, bye
neri

Cobra wrote:
I get an error compiling the package
error CS0006: Cannot find assembly `NUnit.Framework.dll'
Things have changed a lot in the meantime, since mono is still under heavy
development. First of all, all mono stuff shall be hosted in /opt/mono now.
Additionally, I have some updated PKGBUILDs laying on my mainbox and
wanted them to put them into extra. I will try to do so within the next two
weeks I hope.
Also, I saw another xsp in TUR but didn't tested it so far. Maybe you have
more luck with that, since it might be newer (currently version is 1.0.2 iirc)
-neri

Similar Messages

  • 16-35 L USM lens and struggling with sharp focus and depth of field.

    I just purchased the 16-35 L lens after reading all the reviews. I was previoulsy using the 24-70mm and was happy with the results. I am new to the Canon Mark 5D III and the new wide angle lens. I took pictures yesterday for over two hours and came back with no sharp images and no depth of field even when shooting at F/22. I zoomed in or moved close to my subjects expecting the images to be tack sharp but I am extremely disappointed. Not ONE of my pictures were tack sharp. What am I doing wrong? Are there correct settings for close-ups, landscapes and portraits with this lens? At F/22 I shoot 1/3 of the way into the picture expecting that everything in front and behind will be sharp. Not so. I am very frustrated as a newcomer to this camera. Please advise or guide me to a great source to learn.
    thank you
    Solved!
    Go to Solution.

    It'd really help to see an example, it's hard to guess without seeing it.
    You shouldn't have to stop down to f/22 to get a large DoF at 16mm.  In fact, part of what you might be seeing is softness from diffraction at that aperture.  Try f/8, the DoF is actually quite wide at that aperture.
    What shutter speeds are you at?  Yes, you can get away with much slower speeds with UWA, but it can still soften images.
    Lastly, I've never been able to get results out of an UWA like I can with longer lenses or a prime.  I can get good results, and they clean up quite nicely in post, but viewing untouched photos at 100% it's never sharp like a good prime, or even a good tele really.  So I don't know what you're expecting out of it.  It usually doesn't matter since UWA are used for larger subject matter than the other lenses... but that has been my experience.

  • I have an Apple tv and an iPad. When watching films on my iPad, I switch to apple tv.  Thereafter I only get sound on my 'HD ready Sharp' tv and the visuals remain on the iPad.  Can anyone help resolve this problem.

    I have an just recently bought sn apple tv.  When watching a film on my iPad, I switch to watching the programme via my apple tv on my connected 'sharp hd ready' tv.  Once connected, onmy tv I only get sound and the visuals remains on my iPad.  I have checked my airplay which is on but I have not set a password. Checked all other settings on my tv and I'm unable to determine what to do next.
    Please someone help.
    Courtleah

    Welcome to the Apple community.
    Websites and third party Apps need enabling before they will allow AirPlay of Video content. Some Website/App developers have not enabled their products, some simply haven't got around to it yet, others have stated that they won't be enabling AirPlay (likely as a result of licensing issues).
    If you have an iPad 2 or better, you may be able to mirror these videos.

  • IGS / WAD Charts: blurred fonts, sharp edges and lower quality images

    BW Version: 3.5
    The WAD´s charts has the poor visualization with blurred fonts, sharp edges graphics and lower quality images.
    Any way to change it on IGS?
    tnks

    Hi
    Please check these two notes
    Note 454042
    Note 514841 - Troubleshooting when a problem occurs with the IGS

  • Shots are all imported with sharpness +25% and brightness +50% :(

    Hi!
    That's boring, really, a have to remember to reduce brightness every time I import photos, for example in lightroom. Is there any way to get rid of that? Maybe someone knows where these settings are coming from? Is it possible that my camera (I got lumix DMC-FZ100 - no changable lens) writes them into its raw files?
    Thanks in advance for any help!

    The good news: Adobe allows defaults to be based on specific ISO values.
    The bad news: Defaults can not be based on ISO ranges, so those defaults don't work if you use Auto-ISO (without defining a default for every possible auto-ISO setting your camera can come up with...).
    I use CollectionPreseter to assign sharpness and noise settings based on ISO ranges (among other things). J.Friedl also has a plugin that can assign settings based on ISO ranges.
    This is all personal stuff. I'm "hyper-sensitive" to the sharpness masking/detail artefacts, and so almost never use it, but some people love it.
    I typically down-throttle sharpness detail to control noise amplification, instead of down-throttling sharpness amount or up-throttling masking - but it really depends on the photo... (and my mood ).
    Note: noise reduction is adaptive, and so it doesn't need as much variation based on ISO as you might think.
    My defaults - in general:
    - the higher the ISO, the less sharpening detail, and more lum. NR; and higher sharpen radius plus increased sharpening amount.
    Hot tip: 1st crank up the lum. NR detail slider to restore detail lost due to lum. NR before resorting to other means (at higher ISOs anyway). lum.NR contrast has an order of magnitude less impact than the lum. NR detail.
    Another hot tip: a local with -50 sharpness masks all sharpening effects without blurring - its the closest thing Lightroom has to local noise reduction.
    My default sharpening amount ranges from 35 to 50, but yours may be zero - again, personal style/taste (and also depends on lens quality and shooting skill / conditions...).
    Sorry, I talk too much...
    R

  • Qt integration in gtk : icon themes and fonts

    Hi guys,
    I'm trying to get a better integration of qt (not kde) applications in gtk environment (xfce4). While theme is easily configured to qtgtksyle using qtconfig the fonts and icons are not.
    In qtconfig there is a tab named fonts, but no changes can be saved
    As for icon theme, there is no information at all.
    Any advice.

    Some QT4 apps (like Arora) will use your GTK icons while others (Picard) use their own icons.

  • Rounding sharp corners and minimum path size

    I'm in sign business. We use illustrator to prepare files to cut vinyl stickers (foil) on a cutting plotter.
    I suspect there is dedicated sign software that handles the problem below, but i'm stuck with illustrator to do this.
    There are 2 requirements for cutting vinyl:
    1. Corners can not be too sharp, or they will easily come loose.
    A combination of positive and negative offset effects with "round" selected, stacked on top of eachother, does the job.
    The negative offset does remove some parts however.
    2. Minimum area: lines can't bee to small. En general rule of thumb is no to go below 1mm.
    A function would be desired that, let's say, removes parts that are extremely small (for example 1 squared mm). Other small parts should be made somewhat thicker.
    So instead manually checking and preparing every file, i want illustrator to do this for me!
    Using effects, actions, scripts, plugins, whatever.
    See the following image:
    https://dl.dropboxusercontent.com/u/8911045/example.png
    (the insert image button doesn't seem to work with me at this moment, i'll try again later)

    No special filter that does all the magic, unfortunately
    It's not that you have to draw every path point-by-point. You can use commands like outline stroke, boolean operations, etc., etc. and get paths not fully optimized, but clean enough for vinyl cutting.
    And it's not that related portions of what you need to do frequently cannot be scripted. It's that scripts are very literal; very explicit. If you expect any kind of one-size-fits-all solution, you have to very specifically nail down the requirements that would work for all situations.
    You would be better off just carefully thinking through the steps that you find yourself doing repeatedly, and then consider the portions of them that can be at least semi-automated by recording a macro (so-called "Actions" in Illustrator).
    Most of the functions you need to automate are commands in the standard interface. That's the domain of macros, not scripts. And macros are much simpler to tweak on-the-fly than scripts.
    For example, although I can and do write my own scripts, I frequently use an Action to create "halos" around individual parts in exploded assembly illustrations that are imported DXFs. It basically :
    Runs the Simplify command
    Sets stroke attributes
    Outlines strokes
    Unions the resulting fills
    Names the selection
    Duplicates
    Releases compound path
    Unions
    Offsets path
    Changes fill to white
    Sends to back
    Groups
    That yields a single offset path around the drawing of the part which creates the "halo" that visually separates it from other parts in the assembly order which it partially overlaps. (Think of a stack of washers, nuts, grommets, seals, etc. closely spaced along a single thrust line.)
    That macro is run with a single click dozens of times in the course of processing a single drawing. The first step (Simplify) often needs different settings for DXFs from different sources. It's a simple thing to do a couple of tests and tweak the parameters of that one step in a given session.
    Scripts may feel more "exotic" but in Illustrator scripting is more for things that the standard interface can't do. (One should be able to invoke a macro with a script and vice-versa, and that, like everything else that falls into the Adobe feature request black hole, has been requested since AI first acquired scripting.)
    JET

  • [SOLVED] Alternatives to gtk-window-decorator and emerald?

    I want to setup compiz as a standalone window manager, but was pretty disappointed when I found out that gtk-window-decorator requires metacity and gnome-control-center (which brings in way too many gnome dependencies that I definitely don't want). From what I understand, emerald is unsupported and maybe a little more resource intensive than need be? Are there any alternatives for window decoration? All I need is something that can use GTK themes, nothing fancy. Thanks in advance!
    Last edited by luxade (2011-09-06 06:55:10)

    Cilph wrote:
    There's a version of gtk-window-decorator (compiz-decorator-gtk-no-gnome) on AUR that removes the gnome-control-center dependency. You will need metacity though. I use it with XFCE.
    You should know that GTK does not deal with window themes. There is no 'standard', and you can use whatever floats your boat.
    Perfect, this is exactly what I was looking for. Hopefully it'll work without problems. Thanks

  • How can I create clearer, sharper images and buttons in Muse?

    How can I create buttons and images that have a vector like clarity? When I upload images (buttons, jpegs and pngs) a lot of the time they seem to have a slightly fuzzy quality to them. I have read previous posts on this matter and none have helped. Any feedback on this will be greatly appreciated. Thanks

    When you place your images in exactly the size you saved them in Photoshop or whatever, Muse doesn’t touch it.
    The quality in this case is the quality you saved the image.
    The best way is, to examine in Muse the available pixel size of the image and then use Photoshop to obtain this size
    A helpful widget to examine the potential size of an image in advance, is the "lore ipsum"-Muse-widget, that you find in the free widget collection "Andrew’s Prototypes":
    Andrew Prototypes | Exchange | Adobe Muse CC

  • Photosmart 8750 won't print sharp black and white photos

    I am trying to print some black and white photographs using my photosmart 8750 printer.  Up until now, I have just done color photographs.  After printing my first black and white photograph, I'm very disappointed.  While it is definitely gray scale, the dark black colors in the photo aren't coming out black at all...just a shade of gray.  I have the gray photo cartridge installed.  Is that my problem?  Everywhere I read, it says that is what should be used.

    Try the troubleshooting steps in this page. Does the diagnostic page print properly?
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Lenovo Y50-70 has sharp edges and is cutting fingers

    I recently purchased a Y50-70 for my daughter and the sides of the notebook has severly cut her fingers on serveral occasions and taken chunks of flesh from just brusshing up against the side or reaching into her bag to get the notebook.  This is a safety issue and I would like to lodge a complaint and get a remedy for poor design.
    Who do I contact in Lenovo?

    Dmastersusa,
    Thank you for your post. Lenovo takes reports like yours seriously. As a result, I am opening an investigation. 
    I've sent you a private message, as I would like to work with you to understand the situation and assist you with a resolution.
    Thank you,
    Amy Tupper
    Technical Resolution Lead, Pervasive Issues
    Lenovo US
    ThinkPad T431s, S3 Yoga 14, Helix, Edge 11 & 14, E431, IdeaTab A1107, IdeaPad A1-07, IdeaCentre Horizon, Yoga Tablet 2 10 1051
    First computer was a 1980 Commodore 64 from Radio Shack/ GEnie SFRT member from 1993-1996

  • Muine 0.8.2

    Here you go.  I based it off the old pkgbuild, so it should work ok.  You'll need to get gtk-sharp-2 and mono 1.1 from testing....
    PKGBUILD:
    #Maintainer: Ben <[email protected]>
    pkgname=muine
    pkgver=0.8.2
    pkgrel=1
    pkgdesc="a music app written in C#"
    url="http://muine.gooeylinux.org"
    depends=('mono>=1.1' 'perlxml' 'gtk-sharp-2' 'gstreamer' 'libid3tag' 'flac' 'libogg' 'gst-plugins' 'gdbm' 'libgnome')
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=muine.install
    source=(http://muine.gooeylinux.org/$pkgname-$pkgver.tar.gz)
    md5sums=('7b6e8cf76cf35fe54eeb51d875f4e09f')
    build() {
    [ -f /etc/profile.d/gnome.sh ] && . /etc/profile.d/gnome.sh
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/opt/gnome --enable-gstreamer --disable-schemas-install
    make || return 1
    make prefix=$startdir/pkg/opt/gnome install
    muine.install:
    schemas=(
    'opt/gnome/etc/gconf/schemas/muine.schemas'
    post_install() {
    for schema in "${schemas[@]}" ; do
    GCONF_CONFIG_SOURCE=`opt/gnome/bin/gconftool-2 --get-default-source` opt/gnome/bin/gconftool-2 --makefile-install-rule "$schema" > /dev/null 2>&1
    done
    post_upgrade() {
    post_install $2
    pre_remove() {
    /bin/true
    op=$1
    shift
    $op $*

    Works well, thanks  8)

  • Selectively Install Testing Repo Pkgs

    Is there any way to selectively install and update packages from the testing repo? For example I wanted to get gtk-sharp-2 and keep that up to date with whats in testing, but don't want to get gcc 4 everytime I run a system update.

    yeah, put testing last (so and -Syu won't grab package from it) and then do "pacman -S testing/gcc"

  • Problem with firefox and gtk applications in KDE!

    Hi there, i have my arch installed and it's great, i use kdemod that is quite perfect but i have a problem: all the gtk applications like firefox, eclipse, emesene and so on are terrible looking expecially the fonts. Here what I've done:
    1) installed kdemod-gtk-qt-engine and configured to use qt theme and it's better
    2) enabled fonts with antialiasing and hinting
    3) installed fonts for lcd like cairo-lcd
    4) installed microsoft fonts
    But stille it's ugly and it's impossible to use the apps, here's a screenshot:
    The point is that i can't use konqueror because i need some plugins like googlebrowsersync that doesn't exist for konqueror. And in other distros like n00buntu it works.
    Thanks for your help!

    pelle.k wrote:
    I can relate to what borzo is saying, because i have exactly the same problem.
    See, i have installed libxft-lcd and enabled antialiasing and sub-pixel hinting in kde font properties. All kde fonts look great. Now, i usually the exactly the same in gnome "Appearance" font settings (when i use gnome).
    The thing is when you have KDE installed you can't set antialiasing and sub-pixel hinting for *GTK* apps, even if you can set a theme and font size with gtk-chtheme/.gtkrc
    This has nothing to do with how firefox renders fonts, really, but how GTK fonts a drawn in KDE since gnome-settings-manager isn't running, and thus GTK apps get crappy fonts (including firefox html rendering).
    So, how can i enable antialiasing and sub-pixel rendering specifically for GTK apps in KDE without running gnome-settings-manager?
    I know this is an old thread, but I'm still having exactly the same problem. I've been fiddling with fonts for a whole week now. Fonts in KDE apps look great, but crappy in GTK-apps like Thunderbird and Firefox. Like Pelle asked: how can I set aintialiasing and sub-pixel redndering for GTK apps? When running Gnome the fonts in GTK-apps look so much better. I wanna use my shiny new KDE 4 desktop, though.

  • Macbook Pro and 80 inch Sharp TV.

    Has anyone connected a Macbook Pro to an 80 inch Sharp TV?
    I am planning on getting that TV. It's the new 80LC875U.
    I tried connecting to a new Sony TV but the TV supposedly has a low resolution pc input. The image was not clear and it was very pixilated.
    I asked a Sharp representative and he said that their TVs can handle a 1080i/1080p input.
    Is there any way or any confirmed TVs that can reproduce the exact picture you see on your macbook pro???
    What are the secrets????
    Thanx.

    I think the secret is to not display the "exact picture you see on your mackbook pro". Displaying the exact picture, mirror mode, displays the picture and the computer's resolution. What you want to do is connect the computer to the TV using an HDMI cable for 1080 resolution on the TV using the TV's native resolution. Try using extended display mode.

Maybe you are looking for

  • Login-signon script is not working....what could be the reason

    I am attaching the relvant portion of the script which is not working. login.php calls this script logincheck.php I have created a table and passed values into the table (in oracle). However echo shows no values being passed. <? $v1 = $_REQUEST[user_

  • Adding Third Party system in PI SLD

    Hello Experts, I new to PI and would like to know, how to add any Third part system in the SLD, and scenario where sender is ABAP Proxy and receiver is Third party system, via SOAP Adapter. Regards, Abhishek

  • Using paths in UI

    I tried to follow the scripting guide on how to make and fill a path in a UI, but I get an error on the fillPath line.  Anyone know what I'm doing wrong? #target photoshop var dlg = new Window('dialog', 'Draw Test') dlg.pan1 = dlg.add('panel') dlg.pa

  • Safari keeps opening old pages

    Safari keeps opeing old pages even though I have closed them.  It seems like I have several versions of safari open, but I don't think I do.  I just did the latest software update and the problem continues.

  • WHY is there no fix for the dreaded black box installer for me?

    I have searched this forum for days and see my issue with either no replies, or the ones with replies do not work. I have a new PC win7.  I am running IE11 and FF34.0.5.  So far I hate my new PC. Anyway, I have tried in both browsers all diff ways of