Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Brauche Hilfe beim erstellen von eBuild
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
ConiKost
Developer
Developer


Joined: 11 Jan 2005
Posts: 1371

PostPosted: Sat Jun 24, 2006 9:30 pm    Post subject: Brauche Hilfe beim erstellen von eBuild Reply with quote

Hallo!
Ich bin momentan dabei ein eBuild zu erstellen.
Alles funktioniert auch.

Nun habe ich ein Problem.

Ich besitze ein USE Flag "pentium"

Wie mache ich nun folgendes?

Wenn USE Flag "pentium" gesetzt dann lade diesen Source A runter und kompiliere diesen.
Wenn USE Flag "pentium" NICHT gesetzt dann lade diesen Source B runter und kompiliere diesen.

Wie kann ich das mit SRC_URI lösen?

[EDIT]

Das geht leider nicht :(

Code:

if use pentium; then
  SRC_URI="http://files.hamachi.cc/linux/${MY_P}-pentium.tar.gz"
else
  SRC_URI="http://files.hamachi.cc/linux/${MY_P}.tar.gz"
fi
Back to top
View user's profile Send private message
firefly
Watchman
Watchman


Joined: 31 Oct 2002
Posts: 5328

PostPosted: Sat Jun 24, 2006 9:39 pm    Post subject: Reply with quote

schau dir doch mal andere ebuilds an ;) z.b. das von opera
_________________
Ein Ring, sie zu knechten, sie alle zu finden,
Ins Dunkel zu treiben und ewig zu binden
Im Lande Mordor, wo die Schatten drohn.
Back to top
View user's profile Send private message
ConiKost
Developer
Developer


Joined: 11 Jan 2005
Posts: 1371

PostPosted: Sat Jun 24, 2006 9:57 pm    Post subject: Reply with quote

Super!
Danke für den Tipp ;)

Jetzt geht es.

Jetzt habe ich nur noch ein letztes Problem.

Ich habe folgendes gesetzt:

Code:

S=${WORKDIR}/${MY_P}


Ohne gesetzt pentium flag geht alles!

Wenn ich nun pentium setze, wird die andere datei entpackt, aber eben S= stimmt ja nicht.
Wie kann auch dieses einstellen?
Back to top
View user's profile Send private message
ConiKost
Developer
Developer


Joined: 11 Jan 2005
Posts: 1371

PostPosted: Sat Jun 24, 2006 10:04 pm    Post subject: Reply with quote

Ok das geht wieder xD

Code:

# Set Workdir for both Versions
if use pentium; then
  S=${WORKDIR}/${MY_P}-pentium
else
  S=${WORKDIR}/${MY_P}
fi
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum